From 298bc0d0941b976d5de4c53a7b17a88b500bc8e2 Mon Sep 17 00:00:00 2001 From: eldiadmolinari Date: Tue, 27 May 2025 11:21:00 -0300 Subject: [PATCH] =?UTF-8?q?Continuaci=C3=B3n=20de=20CRUDs=20e=20inicio=20d?= =?UTF-8?q?e=20Reportes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RDLC/ReporteConsumoBobinasMeses.rdlc | 1186 ++++ ...ReporteConsumoBobinasMesesConsolidado.rdlc | 1177 ++++ .../ReporteConsumoBobinasPublicacion.rdlc | 779 +++ .../RDLC/ReporteConsumoBobinasSeccion.rdlc | 1152 ++++ ...porteConsumoBobinasSeccionConsolidado.rdlc | 1143 ++++ .../RDLC/ReporteCtrlDevoluciones.rdlc | 1466 ++++ .../RDLC/ReporteCuentasDistribuidores.rdlc | 3252 +++++++++ .../RDLC/ReporteDistribucionCanillas.rdlc | 5976 +++++++++++++++++ .../ReporteDistribucionCanillasTotales.rdlc | 1668 +++++ .../Reportes/RDLC/ReporteExistenciaPapel.rdlc | 1053 +++ .../ReporteExistenciaPapelConsolidado.rdlc | 1044 +++ .../RDLC/ReporteListadoDistribucion.rdlc | 1841 +++++ .../ReporteListadoDistribucionCanImp.rdlc | 1113 +++ .../ReporteListadoDistribucionCanMensual.rdlc | 1156 ++++ ...eListadoDistribucionCanMensualDiarios.rdlc | 1088 +++ .../ReporteListadoDistribucionCanillas.rdlc | 1846 +++++ .../ReporteListadoDistribucionGeneral.rdlc | 2015 ++++++ .../RDLC/ReporteListadoNovedadesCanillas.rdlc | 1298 ++++ .../RDLC/ReporteMovimientoBobinas.rdlc | 1607 +++++ .../RDLC/ReporteMovimientoBobinasEstado.rdlc | 1099 +++ .../ReporteTiradasPublicacionesSecciones.rdlc | 1003 +++ ...adasPublicacionesSeccionesConsolidado.rdlc | 994 +++ .../ReporteVentaMensualSecretariaElDia.rdlc | 879 +++ .../ReporteVentaMensualSecretariaElPlata.rdlc | 879 +++ .../ReporteVentaMensualSecretariaTirDevo.rdlc | 1776 +++++ .../Reportes/ReportesController.cs | 114 + .../Reportes/IReportesRepository.cs | 13 + .../Reportes/ReportesRepository.cs | 68 + .../GestionIntegral.Api.csproj | 1 + .../Dtos/Reportes/ExistenciaPapelDto.cs | 12 + Backend/GestionIntegral.Api/Program.cs | 6 + .../Services/Reportes/IReportesService.cs | 13 + .../Services/Reportes/ReportesService.cs | 68 + .../net9.0/GestionIntegral.Api.deps.json | 414 ++ .../GestionIntegral.Api.AssemblyInfo.cs | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 8 + ...onIntegral.Api.csproj.FileListAbsolute.txt | 70 + .../Debug/net9.0/rjsmcshtml.dswa.cache.json | 2 +- .../Debug/net9.0/rjsmrazor.dswa.cache.json | 2 +- ...stionIntegral.Api.csproj.nuget.dgspec.json | 4 + .../GestionIntegral.Api.csproj.nuget.g.props | 2 + ...GestionIntegral.Api.csproj.nuget.g.targets | 1 + .../obj/project.assets.json | 1489 ++++ Frontend/package-lock.json | 182 +- Frontend/package.json | 6 +- .../dtos/Reportes/ExistenciaPapelDto.ts | 8 + .../pages/Contables/ContablesIndexPage.tsx | 4 +- .../pages/Contables/GestionarNotasCDPage.tsx | 4 +- .../GestionarPagosDistribuidorPage.tsx | 4 +- .../Distribucion/ControlDevolucionesPage.tsx | 7 - .../Distribucion/GestionarCanillitasPage.tsx | 2 +- .../GestionarControlDevolucionesPage.tsx | 4 +- .../GestionarEntradasSalidasCanillaPage.tsx | 4 +- .../GestionarEntradasSalidasDistPage.tsx | 4 +- .../GestionarSalidasOtrosDestinosPage.tsx | 4 +- .../Reportes/ReporteExistenciaPapelPage.tsx | 260 + .../src/pages/Reportes/ReportesIndexPage.tsx | 91 + .../SeleccionaReporteExistenciaPapel.tsx | 156 + .../GestionarAuditoriaUsuariosPage.tsx | 4 +- Frontend/src/routes/AppRoutes.tsx | 12 +- .../src/services/Reportes/reportesService.ts | 52 + 61 files changed, 41554 insertions(+), 33 deletions(-) create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasMeses.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasMesesConsolidado.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasPublicacion.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasSeccion.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasSeccionConsolidado.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteCtrlDevoluciones.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteCuentasDistribuidores.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteDistribucionCanillas.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteDistribucionCanillasTotales.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteExistenciaPapel.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteExistenciaPapelConsolidado.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucion.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucionCanImp.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucionCanMensual.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucionCanMensualDiarios.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucionCanillas.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoDistribucionGeneral.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteListadoNovedadesCanillas.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteMovimientoBobinas.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteMovimientoBobinasEstado.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteTiradasPublicacionesSecciones.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteTiradasPublicacionesSeccionesConsolidado.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteVentaMensualSecretariaElDia.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteVentaMensualSecretariaElPlata.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteVentaMensualSecretariaTirDevo.rdlc create mode 100644 Backend/GestionIntegral.Api/Controllers/Reportes/ReportesController.cs create mode 100644 Backend/GestionIntegral.Api/Data/Repositories/Reportes/IReportesRepository.cs create mode 100644 Backend/GestionIntegral.Api/Data/Repositories/Reportes/ReportesRepository.cs create mode 100644 Backend/GestionIntegral.Api/Models/Dtos/Reportes/ExistenciaPapelDto.cs create mode 100644 Backend/GestionIntegral.Api/Services/Reportes/IReportesService.cs create mode 100644 Backend/GestionIntegral.Api/Services/Reportes/ReportesService.cs create mode 100644 Frontend/src/models/dtos/Reportes/ExistenciaPapelDto.ts delete mode 100644 Frontend/src/pages/Distribucion/ControlDevolucionesPage.tsx create mode 100644 Frontend/src/pages/Reportes/ReporteExistenciaPapelPage.tsx create mode 100644 Frontend/src/pages/Reportes/ReportesIndexPage.tsx create mode 100644 Frontend/src/pages/Reportes/SeleccionaReporteExistenciaPapel.tsx create mode 100644 Frontend/src/services/Reportes/reportesService.ts diff --git a/Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasMeses.rdlc b/Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasMeses.rdlc new file mode 100644 index 0000000..32a081a --- /dev/null +++ b/Backend/GestionIntegral.Api/Controllers/Reportes/RDLC/ReporteConsumoBobinasMeses.rdlc @@ -0,0 +1,1186 @@ + + + 0 + + + + System.Data.DataSet + /* Local Connection */ + + c3588116-f33e-486f-8e77-9edbd5a767af + + + + + + DSConsumoBobinas + /* Local Query */ + + + + TipoBobina + System.String + + + BobinasUtilizadasMesA + System.Int32 + + + BobinasUtilizadasMesB + System.Int32 + + + DiferenciaBobinasUtilizadas + System.Int32 + + + KilosUtilizadosMesA + System.Int32 + + + KilosUtilizadosMesB + System.Int32 + + + DiferenciaKilosUtilizados + System.Int32 + + + + DSConsumoBobinas + C:\Users\dmolinari\source\repos\Cobol-VBNet\Reportes\DSConsumoBobinas.xsd + SP_CompararConsumoBobinasMeses + Fill + GetData + SP_CompararConsumoBobinasMesesTableAdapter + + + + + + + + + + + + 5.8cm + + + 2.3cm + + + 2.3cm + + + 2cm + + + 2.3cm + + + 2.3cm + + + 2cm + + + + + 0.6cm + + + + + true + true + + + + + Tipo Bobina + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Mes A + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Mes B + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Diferencia + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Mes A + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Mes B + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Diferencia + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasUtilizadasMesA.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasUtilizadasMesB.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiferenciaBobinasUtilizadas.Value + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosUtilizadosMesA.Value + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosUtilizadosMesB.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiferenciaKilosUtilizados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox25 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasUtilizadasMesA.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasUtilizadasMesB.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!DiferenciaBobinasUtilizadas.Value, "DSConsumoBobinasMeses") + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosUtilizadosMesA.Value, "DSConsumoBobinasMeses") + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosUtilizadosMesB.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!DiferenciaKilosUtilizados.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSConsumoBobinasMeses + 0.14111cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.84039in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value + + + + + + + Textbox41 + 1.08874cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80192cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Meses Consultados: + + + + + + + Textbox41 + 1.83727cm + 6.33218cm + 0.64974cm + 3.65333cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!MesA.Value & "(Mes A)" + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Contra + + + + + + + Textbox41 + 1.83727cm + 14.0562cm + 0.64974cm + 1.29584cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!MesB.Value & "(Mes B)" + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Mes A + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Mes B + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Diferencia + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Mes A + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Mes B + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Diferencia + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasUtilizadasMesA.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasUtilizadasMesB.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiferenciaBobinasUtilizadas.Value + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosUtilizadosMesA.Value + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosUtilizadosMesB.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DiferenciaKilosUtilizados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox25 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasUtilizadasMesA.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasUtilizadasMesB.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!DiferenciaBobinasUtilizadas.Value, "DSConsumoBobinasMeses") + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosUtilizadosMesA.Value, "DSConsumoBobinasMeses") + + + + + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosUtilizadosMesB.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!DiferenciaKilosUtilizados.Value, "DSConsumoBobinasMeses") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSConsumoBobinasMeses + 0.14111cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.84039in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Consolidados + + + + + + + Textbox41 + 1.08874cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80192cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Meses Consultados: + + + + + + + Textbox41 + 1.83727cm + 6.33218cm + 0.64974cm + 3.65333cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!MesA.Value & "(Mes A)" + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Contra + + + + + + + Textbox41 + 1.83727cm + 14.0562cm + 0.64974cm + 1.29584cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!MesB.Value & "(Mes B)" + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kilos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant.Bobinas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!NombrePublicacion.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadBobinas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox48 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilos.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadBobinas.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Planta + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + After + + + + + =Fields!NombrePlanta.Value + + + + + =Fields!NombrePlanta.Value + + + + 4cm + + + true + true + + + + + =Fields!NombrePlanta.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + Before + + + + + + DSConsumoBobinasPublicacion + 0.14111cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.80957in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.16692cm + 0.619cm + 0.64974cm + 3.43896cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.17052cm + 6.64968cm + 0.64974cm + 4.5cm + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.17052cm + 13.31184cm + 0.64974cm + 1.13709cm + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Bobinas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kilos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!NombreBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadBobinas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Total + + + + + + + Textbox53 + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadBobinas.Value) + + + + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilos.Value) + + + + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + + Black + + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Total General + + + + + + + Textbox95 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadBobinas.Value, "DSConsumoBobinasSeccion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilos.Value, "DSConsumoBobinasSeccion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Sección + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + After + + + + + =Fields!NombrePublicacion.Value + + + + + =Fields!NombrePublicacion.Value + + + + 4cm + + + true + true + + + + + =Fields!NombrePublicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!NombreSeccion.Value + + + + + =Fields!NombreSeccion.Value + + + + 4cm + + + true + true + + + + + =Fields!NombreSeccion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + Before + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + Before + + + + DSConsumoBobinasSeccion + 0.14111cm + 0.619cm + 2.4cm + 19cm + + + + + + 1.03538in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value + + + + + + + Textbox41 + 1.08874cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80192cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.80552cm + 6.64968cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.80552cm + 13.31184cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Bobinas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kilos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!NombreBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadBobinas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Total + + + + + + + Textbox53 + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadBobinas.Value) + + + + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilos.Value) + + + + + + + Black + + 1.5pt + + + Black + + 1.5pt + + + + + + Black + + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Total General + + + + + + + Textbox95 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadBobinas.Value, "DSConsumoBobinasSeccion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilos.Value, "DSConsumoBobinasSeccion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Sección + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + After + + + + + =Fields!NombrePublicacion.Value + + + + + =Fields!NombrePublicacion.Value + + + + 4cm + + + true + true + + + + + =Fields!NombrePublicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!NombreSeccion.Value + + + + + =Fields!NombreSeccion.Value + + + + 4cm + + + true + true + + + + + =Fields!NombreSeccion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + Before + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + Before + + + + DSConsumoBobinasSeccion + 0.14111cm + 0.619cm + 2.4cm + 19cm + + + + + + 1.03538in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Consolidados + + + + + + + Textbox41 + 1.08874cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80192cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.80552cm + 6.64968cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.80552cm + 13.31184cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Textbox41 + 0.10583cm + 1.12581cm + 0.6cm + 3.47423cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaConsultada.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.23542cm + + + 4.66998cm + + + + + 0.6cm + + + + + true + true + + + + + =First(Fields!Ingresados.Value, "DSCtrlDevoluciones") + + + + + + + Textbox9 + + + + Black + + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + Llevados + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =-Fields!Llevados.Value + + + + + + + Textbox16 + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Devueltos + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Devueltos.Value + + + + + + + Textbox26 + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Total + + + + + + + Black + 2pt + + + Black + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =-Fields!Llevados.Value+Fields!Devueltos.Value + + + + + + + Textbox11 + + + + Black + 2pt + + + Black + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + + Textbox5 + + + + Black + 2pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + Textbox6 + + + + Black + 2pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =First(Fields!Ingresados.Value, "DSCtrlDevoluciones")-Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")+Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones") + + + + + + + Textbox14 + + + + Black + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSCtrlDevolucionesOtrosDias") + + + + + + + Textbox18 + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + =First(Fields!Ingresados.Value, "DSCtrlDevoluciones")-Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")+Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones")+Sum(Fields!Devueltos.Value, "DSCtrlDevolucionesOtrosDias") + + + + + + + Textbox21 + + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + =First(Fields!SinCargo.Value, "DSCtrlDevoluciones") + + + + + + + Textbox53 + + + + Black + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + =- First(Fields!Sobrantes.Value, "DSCtrlDevoluciones") + + + + + + + Textbox44 + + + + 1pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + =First(Fields!Ingresados.Value, "DSCtrlDevoluciones") - Sum(Fields!Llevados.Value, "DSCtrlDevoluciones") + Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones") - First(Fields!Sobrantes.Value, "DSCtrlDevoluciones") - First(Fields!SinCargo.Value, "DSCtrlDevoluciones") + + + + + + + Textbox91 + + + + 1pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + true + + + + + + + + + + + + + + + + + + 5.5946cm + + + true + true + + + + + Ingresados por Remito: + + + + Black + + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + After + + + + + =Fields!Tipo.Value + + + + + =Fields!Tipo.Value + + + + 5.5946cm + + + true + true + + + + + =Fields!Tipo.Value + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + 5.5946cm + + + true + true + + + + + + + + + Black + 2pt + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Total Devolución a la Fecha + + + + Black + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Total Devolución Días Anteriores + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Total Devolución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Sin Cargo + + + + Black + 2pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Sobrantes + + + + 1pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 5.5946cm + + + true + true + + + + + Diferencia + + + + 1pt + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + DSCtrlDevoluciones + 1.63046cm + 1.12581cm + 6.6cm + 12.5cm + 2 + + + + + + true + true + + + + + =Parameters!NomEmp.Value + + + + + + + Textbox67 + 0.9628cm + 1.12581cm + 0.6cm + 12.5cm + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Cantidad Canillas: + + + + + + + Textbox41 + 0.10583cm + 7.7227cm + 0.6cm + 3.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!TotalNoAccionistas.Value, "DSCtrlDevoluciones") + + + + + + + Textbox49 + 0.10583cm + 10.97821cm + 0.6cm + 2.6476cm + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + 3.30989in + + + + + + + Textbox41 + 0.28575cm + 1.13975cm + 0.72912cm + 12.5cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Canillas / Accionistas + + + + + + + Textbox41 + 1.08451cm + 1.13975cm + 0.64975cm + 12.5cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 21cm + 14.8cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Publicacion + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Remito + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cantidad + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Saldo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Publicacion.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Remito.Value + + + + Remito + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Cantidad.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Debe.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Fields!Haber.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =IIF(Variables!SaldoMov.SetValue(Variables!SaldoMov.Value+Fields!Debe.Value-Fields!Haber.Value),Variables!SaldoMov.Value, Variables!SaldoMov.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSDistribuidoresEntradasSalidas + 0.74111cm + 0.635cm + 1.2cm + 19cm + + + + + + + + + 2cm + + + 5cm + + + 4cm + + + 4cm + + + 4cm + + + + + 0.6cm + + + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Referencia + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Saldo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Referencia.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Debe.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Fields!Haber.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =IIF(Variables!SaldoDebCred.SetValue(Variables!SaldoDebCred.Value+Fields!Debe.Value-Fields!Haber.Value),Variables!SaldoDebCred.Value, Variables!SaldoDebCred.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSDistribuidoresDebCred + 7.17049cm + 0.635cm + 1.2cm + 19cm + 1 + + + + + + true + true + + + + + Movimientos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Débitos / Créditos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 3cm + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Haber.Value, "DSDistribuidoresEntradasSalidas") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + 0.6cm + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + 1.46813cm + + + true + true + + + + + Totales + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 3.00001cm + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresEntradasSalidas") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + DSDistribuidoresEntradasSalidas + 2.01167cm + 9.16687cm + 1.2cm + 7.46814cm + 4 + + + + + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 4cm + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Haber.Value, "DSDistribuidoresDebCred") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + 0.6cm + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + 1.60571cm + + + true + true + + + + + Totales + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresDebCred") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + DSDistribuidoresDebCred + 8.44104cm + 6.02929cm + 1.2cm + 9.60571cm + 5 + + + + + + true + true + + + + + =Sum(Fields!Monto.Value, "DSDistribuidoresSaldos") + + + + + + + Textbox69 + 13.75118cm + 8.76751cm + 0.6cm + 10.86749cm + 6 + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + true + true + + + + + Saldo Total del Distribuidor al + + + + + + + Textbox1 + 13.75118cm + 0.635cm + 0.6cm + 5.73313cm + 7 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Pagos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2cm + + + 2.29793cm + + + 2.55825cm + + + 3cm + + + 3cm + + + 3.5cm + + + 2.64382cm + + + + + 0.6cm + + + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Recibo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Tipo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Saldo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Detalle + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Recibo.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Tipo.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Debe.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Fields!Haber.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =IIF(Variables!SaldoPagos.SetValue(Variables!SaldoPagos.Value+Fields!Debe.Value-Fields!Haber.Value),Variables!SaldoPagos.Value, Variables!SaldoPagos.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Fields!Detalle.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSDistribuidoresPagos + 3.8949cm + 0.635cm + 1.2cm + 19cm + 9 + + + + + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Debe + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 3.5cm + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Haber.Value, "DSDistribuidoresPagos") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + 0.6cm + + + true + true + + + + + Haber + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + 1.46813cm + + + true + true + + + + + Totales + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 3.5cm + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresPagos") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + DSDistribuidoresPagos + 5.16546cm + 7.66687cm + 1.2cm + 8.46813cm + 10 + + + + + + true + true + + + + + =Today() + + + + + + + Textbox1 + 13.75118cm + 6.36813cm + 0.6cm + 2.39938cm + 11 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Datos totales del periodo consultado + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + true + true + + + + + Movimientos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 4.01583cm + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresDebCred")-Sum(Fields!Haber.Value, "DSDistribuidoresDebCred") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.6cm + + + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresPagos")-Sum(Fields!Haber.Value, "DSDistribuidoresPagos") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.6cm + + + + + true + true + + + + + =(Sum(Fields!Debe.Value, "DSDistribuidoresEntradasSalidas")-Sum(Fields!Haber.Value, "DSDistribuidoresEntradasSalidas"))+(Sum(Fields!Debe.Value, "DSDistribuidoresDebCred")-Sum(Fields!Haber.Value, "DSDistribuidoresDebCred"))+(Sum(Fields!Debe.Value, "DSDistribuidoresPagos")-Sum(Fields!Haber.Value, "DSDistribuidoresPagos")) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + 0.6cm + + + true + true + + + + + =Sum(Fields!Debe.Value, "DSDistribuidoresEntradasSalidas")-Sum(Fields!Haber.Value, "DSDistribuidoresEntradasSalidas") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + 3.23313cm + + + true + true + + + + + Débitos/Créditos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 3.23313cm + + + true + true + + + + + Pagos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + 3.23313cm + + + true + true + + + + + Total + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + DSDistribuidoresEntradasSalidas + 11.06812cm + 0.635cm + 2.4cm + 7.24896cm + 13 + + + + + + 5.69174in + + + + + + + Textbox41 + 0.254cm + 0.635cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!Distribuidor.Value, "DSDistribuidoresEntradasSalidas") + + + + + + + Textbox41 + 1.06419cm + 0.635cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.80912cm + 0.635cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.80559cm + 7.52646cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.80559cm + 14.18862cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value-Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value)-Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value)-Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 6cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + After + + + + + =Fields!Canilla.Value + + + + + =Fields!Canilla.Value + + + + + + 4cm + + + true + true + + + + + =Fields!Canilla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!Publicacion.Value + + + + 6cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 6cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 6cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + Before + + + + DSListadoDistribucionCan + 1.28263cm + 0.61899cm + 1.8cm + 19cm + + + + + + true + true + + + + + Canillas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.0635cm + + + 1.9365cm + + + 2cm + + + 3cm + + + + + 0.45cm + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value - Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 6cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + After + + + + + =Fields!Canilla.Value + + + + + =Fields!Canilla.Value + + + + + + 4cm + + + true + true + + + + + =Fields!Canilla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!Publicacion.Value + + + + 6cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 6cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + Before + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox64 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 6cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + Before + + + + DSListadoDistribucionCanAcc + 6.14855cm + 0.61899cm + 1.8cm + 19cm + 2 + + + + + + true + true + + + + + Accionistas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Recuento de Publicaciones + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2cm + + + 2cm + + + 2cm + + + 3cm + + + + + 0.45cm + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value - Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 2cm + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + After + + + + + =Fields!Canilla.Value + + + + + =Fields!Canilla.Value + + + + + + 4cm + + + true + true + + + + + =Fields!Canilla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Fecha.Value + + + + + =Fields!Fecha.Value + + + + 2cm + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!Publicacion.Value + + + + 4cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + 2cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 2cm + + + true + true + + + + + + + + + + + + Textbox83 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + Before + + + + DSListadoDistribucionCanFechaLiq + 3.76805cm + 0.61899cm + 1.8cm + 19cm + 5 + + + + + + true + true + + + + + Liquidación de movimientos de otras fechas canillas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2cm + + + 2cm + + + 2cm + + + 3cm + + + + + 0.45cm + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value - Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 2cm + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + After + + + + + =Fields!Canilla.Value + + + + + =Fields!Canilla.Value + + + + + + 4cm + + + true + true + + + + + =Fields!Canilla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Fecha.Value + + + + + =Fields!Fecha.Value + + + + 2cm + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!Publicacion.Value + + + + 4cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + 2cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + 4cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 2cm + + + true + true + + + + + + + + + + + + Textbox83 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 4cm + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + Before + + + + DSListadoDistribucionCanAccFechaLiq + 8.63274cm + 0.61899cm + 1.8cm + 19cm + 7 + + + + + + true + true + + + + + Liquidación de movimientos de otras fechas accionistas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 1.5cm + + + 4cm + + + 2.04354cm + + + 4cm + + + 1.25646cm + + + 4cm + + + + + 0.54708cm + + + + + true + true + + + + + Remito: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Remito.Value + + + + + + + Remito + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devolución: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Remito.Value, "DSObtenerCtrlDevoluciones")-(Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")-Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones")) + + + + + + + Textbox102 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Venta: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")-Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones") + + + + + + + Textbox107 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + DSObtenerCtrlDevoluciones + 12.88277cm + 0.61899cm + 0.54708cm + 16.8cm + 9 + + + + + + true + true + + + + + Fecha de Generación del Reporte + + + + + + + Textbox41 + 0.11465cm + 0.619cm + 0.55802cm + 5.97081cm + 10 + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Empresa + + + + + + + Textbox41 + 0.07408cm + 10.29986cm + 0.7cm + 2.38263cm + 12 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!Empresa.Value + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.0635cm + + + 1.9365cm + + + 2cm + + + 3cm + + + + + 0.45cm + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value - Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4.5cm + + + true + true + + + + + Tipo Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 5.5cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + =Fields!TipoVendedor.Value + + + + + =Fields!Publicacion.Value + + + + 4.5cm + + + true + true + + + + + =Fields!TipoVendedor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!TipoVendedor.Value + Descending + + + + 5.5cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + true + + + + + + + + + 5.5cm + + + true + true + + + + + Totales + + + + + + + + + + + Textbox35 + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + + + 4.5cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 5.5cm + + + true + true + + + + + + + + + + + + Textbox3 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + Before + + + + DSListadoDistribucionCanALL + 11.04749cm + 0.61899cm + 1.8cm + 19cm + 14 + + + + + + 5.31859in + + + + + + + Textbox41 + 0.60325cm + 0.619cm + 0.6cm + 9.53541cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada + + + + + + + Textbox41 + 0.6cm + 10.29552cm + 0.7cm + 4.26974cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaConsultada.Value).ToString("dd/MM/yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 2.16049in + 21cm + 0cm + 0cm + 0.2cm + 0.2cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 1.5cm + + + 4cm + + + 2.04354cm + + + 4cm + + + 1.25646cm + + + 4cm + + + + + 0.54708cm + + + + + true + true + + + + + Remito: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Remito.Value + + + + + + + Remito + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devolución: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Remito.Value, "DSObtenerCtrlDevoluciones")-(Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")-Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones")) + + + + + + + Textbox102 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Venta: + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSCtrlDevoluciones")-Sum(Fields!Devueltos.Value, "DSCtrlDevoluciones") + + + + + + + Textbox107 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + DSObtenerCtrlDevoluciones + 3.45302cm + 0.61899cm + 0.54708cm + 16.8cm + 1 + + + + + + true + true + + + + + Fecha de Generación del Reporte + + + + + + + Textbox41 + 0.11465cm + 0.619cm + 0.55802cm + 5.97081cm + 2 + + + Bottom + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Empresa + + + + + + + Textbox41 + 0.07408cm + 10.29986cm + 0.7cm + 2.38263cm + 4 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!Empresa.Value + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.0635cm + + + 1.9365cm + + + 2cm + + + 3cm + + + + + 0.45cm + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.45cm + + + + + true + true + + + + + =Fields!TotalCantSalida.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCantSalida.Value - Fields!TotalCantEntrada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendir.Value + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.45cm + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) - Sum(Fields!TotalCantEntrada.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + 4.5cm + + + true + true + + + + + Tipo Vendedor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 5.5cm + + + true + true + + + + + Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + =Fields!TipoVendedor.Value + + + + + =Fields!Publicacion.Value + + + + 4.5cm + + + true + true + + + + + =Fields!TipoVendedor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + =Fields!TipoVendedor.Value + Descending + + + + 5.5cm + + + true + true + + + + + =Fields!Publicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 5.5cm + + + true + true + + + + + Totales + + + + + + + + + + + Textbox35 + + + + Black + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + + + 4.5cm + + + true + true + + + + + Totales + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 5.5cm + + + true + true + + + + + + + + + + + + Textbox3 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + Before + + + + DSListadoDistribucionCanALL + 1.56143cm + 0.61899cm + 1.8cm + 19cm + 6 + + + + + + 1.67455in + + + + + + + Textbox41 + 0.60325cm + 0.619cm + 0.6cm + 9.53541cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada + + + + + + + Textbox41 + 0.6cm + 10.29552cm + 0.7cm + 4.26974cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaConsultada.Value).ToString("dd/MM/yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 2.16049in + 21cm + 0cm + 0cm + 0.2cm + 0.2cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg. Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Consumo Acumulado + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Días Disponibles + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Fin Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasEnStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilosEnStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ConsumoAcumulado.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioDiasDisponibles.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!FechaEstimacionFinStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox23 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasEnStock.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilosEnStock.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ConsumoAcumulado.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSConsumoBobinas + 0.17788cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.82997in + + + + + + + Textbox41 + 0.29178cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value + + + + + + + Textbox41 + 1.09054cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80372cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.80732cm + 6.64968cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.80732cm + 13.31184cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg. Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Consumo Acumulado + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Días Disponibles + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Fin Stock + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasEnStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilosEnStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ConsumoAcumulado.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioDiasDisponibles.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!FechaEstimacionFinStock.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox23 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasEnStock.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalKilosEnStock.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ConsumoAcumulado.Value, "DSConsumoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSConsumoBobinas + 0.17788cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.82997in + + + + + + + Textbox41 + 0.29178cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Consolidados + + + + + + + Textbox41 + 1.09054cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80372cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.80732cm + 6.64968cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.80732cm + 13.31184cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Venta Neta + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + % Devolución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Dia.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value-Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF(Variables!VentNeta.SetValue(Variables!VentNeta.Value+(Sum(Fields!Llevados.Value)-Sum(Fields!Devueltos.Value))),IIF(Variables!ConteoProm.SetValue(Variables!ConteoProm.Value+1),(Variables!VentNeta.Value/Variables!ConteoProm.Value),(Variables!VentNeta.Value/Variables!ConteoProm.Value)),Variables!VentNeta.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Fields!Devueltos.Value*100)/Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSListadoDistribucion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSListadoDistribucion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value)-Sum(Fields!Devueltos.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Variables!VentNeta.Value/Variables!ConteoProm.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Sum(Fields!Devueltos.Value)*100)/(Sum(Fields!Llevados.Value)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucion + 0.77639cm + 0.619cm + 1.8cm + 19.0475cm + + + + + + true + true + + + + + Distribución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!NomPubli.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Promedios + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.5cm + + + 2cm + + + 3.8cm + + + 3.8cm + + + 3.8cm + + + 3.1475cm + + + + + 0.6cm + + + + + true + true + + + + + Dia + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Días + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Ventas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + % Devolución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Dia.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Cant.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Ventas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Fields!Devueltos.Value*100)/Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + General + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Cant.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Llevados.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Llevados.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Devueltos.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Devueltos.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Ventas.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Ventas.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Sum(Fields!Devueltos.Value)*100)/(Sum(Fields!Llevados.Value)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucionAgDias + 3.42333cm + 0.619cm + 1.8cm + 19.0475cm + 4 + + + + + + 2.16049in + + + + + + + Textbox41 + 0.28575cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!NomDist.Value + + + + + + + Textbox41 + 1.03244cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.74562cm + 0.619cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.71034cm + 7.54574cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.71034cm + 14.2079cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Distribución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2cm + + + 3cm + + + 3cm + + + 3cm + + + 4cm + + + 4cm + + + + + 0.6cm + + + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Importe Publicación + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + A Rendir + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Fecha.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Vendidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendirPublicacion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalRendirGeneral.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSListadoDistribucionCan") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSListadoDistribucionCan") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Vendidos.Value, "DSListadoDistribucionCan") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendirPublicacion.Value, "DSListadoDistribucionCan") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendirGeneral.Value, "DSListadoDistribucionCan") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucionCan + 0.85047cm + 0.63223cm + 1.8cm + 19cm + 2 + + + + + + 1.07716in + + + + + + + Textbox41 + 0.26606cm + 0.63223cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =IIF(Parameters!CanAcc.Value = 1,"Accionistas","Canillitas") + + + + + + + Textbox41 + 0.94163cm + 0.63223cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.68656cm + 0.63223cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.68656cm + 7.55897cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.68656cm + 14.22113cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Importe + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Publicacion.Value + + + + Black + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value) + + + + + + + Black + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value) + + + + + + + Black + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + + Black + + + Black + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + + Black + + + Black + 1.5pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + Black + + + Black + 1.5pt + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value) + + + + + + + Textbox75 + + + + Black + + + Black + 1.5pt + + + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.6cm + + + + + true + true + + + + + TOTALES + + + + + + + Textbox71 + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantSalida.Value, "DSListadoDistribucionCanMensual") + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalCantEntrada.Value, "DSListadoDistribucionCanMensual") + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value, "DSListadoDistribucionCanMensual") + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + 5cm + + + true + true + + + + + Canilla + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + After + + + + + =Fields!Canilla.Value + + + + + =Fields!Canilla.Value + + + + 5cm + + + true + true + + + + + =Fields!Canilla.Value + + + + Black + + + Black + 1.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Publicacion.Value + + + + + + + + Before + + + + + + 5cm + + + true + true + + + + + + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + Before + + + + DSListadoDistribucionCanMensual + 0.14111cm + 0.63223cm + 2.4cm + 19cm + + + + + + 1.04591in + + + + + + + Textbox41 + 0.26606cm + 0.63223cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =IIF(Parameters!CanAcc.Value = 1,"Accionistas","Canillitas") + + + + + + + Textbox41 + 0.94163cm + 0.63223cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.68656cm + 0.63223cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.68656cm + 7.55897cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.68656cm + 14.22113cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + El Día + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + El Plata + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Imp. El Día + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Imp. El Plata + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Importe Total + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Canilla.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ElDia.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ElPlata.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Vendidos.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ImporteElDia.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Fields!ImporteElPlata.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ImporteTotal.Value + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ElDia.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ElPlata.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Vendidos.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ImporteElDia.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + true + true + + + + + =Sum(Fields!ImporteElPlata.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!ImporteTotal.Value) + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucionCanMensualDiarios + 0.17639cm + 0.89147cm + 1.8cm + 18.9cm + + + + + + + + + + + + + + + + + + 0.81674in + + + + + + + Textbox41 + 0.09525cm + 0.89147cm + 0.64974cm + 18.9cm + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Venta Neta + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + % Devolución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.55cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value-Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF(Variables!VentNeta.SetValue(Variables!VentNeta.Value+(Sum(Fields!Llevados.Value)-Sum(Fields!Devueltos.Value))),IIF(Variables!ConteoProm.SetValue(Variables!ConteoProm.Value+1),(Variables!VentNeta.Value/Variables!ConteoProm.Value),(Variables!VentNeta.Value/Variables!ConteoProm.Value)),Variables!VentNeta.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Fields!Devueltos.Value*100)/Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSListadoDistribucion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSListadoDistribucion") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value)-Sum(Fields!Devueltos.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Variables!VentNeta.Value/Variables!ConteoProm.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Sum(Fields!Devueltos.Value)*100)/(Sum(Fields!Llevados.Value)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucion + 0.77992cm + 0.619cm + 1.75cm + 19.0475cm + + + + + + true + true + + + + + Distribución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!NomPubli.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Promedios + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.5cm + + + 2cm + + + 3.8cm + + + 3.8cm + + + 3.8cm + + + 3.1475cm + + + + + 0.6cm + + + + + true + true + + + + + Dia + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Días + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Promedio Ventas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + % Devolución + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.55cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Cant.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Promedio_Ventas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Fields!Devueltos.Value*100)/Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + General + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Cant.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Llevados.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Llevados.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Devueltos.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Devueltos.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Promedio_Ventas.Value, "DSListadoDistribucionAgDias")/Count(Fields!Promedio_Ventas.Value, "DSListadoDistribucionAgDias") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =(Sum(Fields!Devueltos.Value)*100)/(Sum(Fields!Llevados.Value)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSListadoDistribucionAgDias + 3.42686cm + 0.619cm + 1.75cm + 19.0475cm + 4 + + + + + + 2.16049in + + + + + + + Textbox41 + 0.28575cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Canillitas + + + + + + + Textbox41 + 0.96132cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.70625cm + 0.619cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.70625cm + 7.54574cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.70625cm + 14.2079cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 1cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Tirada + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Sin Cargo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Perdidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Day(Fields!Fecha.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadTirada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!SinCargo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Perdidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Llevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Devueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Vendidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadTirada.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!SinCargo.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Perdidos.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Vendidos.Value, "DSResumenMensual") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSResumenMensual + 0.05616cm + 0.619cm + 1.8cm + 19cm + + + + + + + + + 2.6cm + + + 2cm + + + 2.4cm + + + 2.4cm + + + 2.4cm + + + 2.4cm + + + 2.4cm + + + 2.4cm + + + + + 0.6cm + + + + + true + true + + + + + Promedios Diarios de Distribución + + + + + + + Textbox70 + + + 2pt + 2pt + 2pt + 2pt + + + 8 + + + + + + + + + + + + + 0.6cm + + + + + true + true + + + + + Día + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Días + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Tirada + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Sin Cargo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Perdidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Llevados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Devueltos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioTirada.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioSinCargo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioPerdidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioLlevados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioDevueltos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioVendidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + General + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadTirada.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + true + + + + + + true + true + + + + + =Sum(Fields!SinCargo.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Perdidos.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Llevados.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Devueltos.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Vendidos.Value, "DSResumenMensual")/SUM(IIF(Fields!PromedioTirada.Value > 0,Fields!CantidadDias.Value,0)) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + After + + + After + + + + + + Before + + + + DSResumenMensualPorDiaSemana + 1.96116cm + 0.619cm + 2.4cm + 19cm + 1 + + + + + + 1.75032in + + + + + + + Textbox41 + 0.27813cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!NomPubli.Value + + + + + + + Textbox41 + 1.02482cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Reporte + + + + + + + Textbox41 + 1.738cm + 0.619cm + 0.64974cm + 3.28021cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Mes Consultado: + + + + + + + Textbox41 + 1.70272cm + 8.81574cm + 0.64974cm + 3.20354cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!FechaDesde.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Textbox41 + 0.14111cm + 0.619cm + 0.64974cm + 4.5cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 0.14111cm + 7.28116cm + 0.64974cm + 1.13709cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 6.64813cm + + + 3.35187cm + + + 2.5cm + + + 2.5cm + + + 4cm + + + + + 0.6cm + + + + + true + true + + + + + Canilla + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Legajo + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Faltas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Francos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Comisiones + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Canilla.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Legajo.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Faltas.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Francos.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF(IsNothing(Fields!TotalRendir.Value), 0, Fields!TotalRendir.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + 0.6cm + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total + + + + + + + Textbox3 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalRendir.Value, "DSNovedadesCanillas") + + + + + + 2pt + 2pt + 2pt + 2pt + es-AR + + + + + + + + + + + + + + + + + + + + + After + + + + + + =Fields!Canilla.Value + + + + + + + + Before + + + + DSNovedadesCanillas + 1.61282cm + 0.619cm + 1.8cm + 19cm + 4 + + + + + + true + true + + + + + =Parameters!NomEmp.Value + + + + + + + Textbox18 + 0.924cm + 0.619cm + 0.6cm + 19cm + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Otras novedades + + + + + + + Textbox41 + 3.57185cm + 0.619cm + 0.54391cm + 4.5cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.45172cm + + + 9.90015cm + + + + + 0.6cm + + + + + true + true + + + + + Fecha + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Detalle + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!Fecha.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + true + + + + + + true + true + + + + + =Fields!Detalle.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + 6.64813cm + + + true + true + + + + + Nom Ape + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + After + + + + + =Fields!NomApe.Value + + + + + =Fields!NomApe.Value + + + + 6.64813cm + + + true + true + + + + + =Fields!NomApe.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Fecha.Value + + + + + =Fields!NomApe.Value + + + =Fields!Fecha.Value + + + + + + + + DSNovedadesCanillasDetalles + 4.22159cm + 0.619cm + 1.2cm + 19cm + 7 + + + + + + 2.19455in + + + + + + + Textbox41 + 0.28575cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Canillas + + + + + + + Textbox41 + 1.01911cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha de Generación del Reporte + + + + + + + Textbox41 + 1.73229cm + 0.619cm + 0.64974cm + 5.9525cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Inicial + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Iniciales + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Compradas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Comprados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Consumidas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Consumidos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Dañadas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Dañados + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cant. Final + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kg Final + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasIniciales.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosIniciales.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasCompradas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosComprados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasConsumidas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosConsumidos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasDaniadas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosDaniados.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BobinasFinales.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!KilosFinales.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox31 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasIniciales.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosIniciales.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasCompradas.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosComprados.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasConsumidas.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosConsumidos.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasDaniadas.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosDaniados.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!BobinasFinales.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!KilosFinales.Value, "DSMovimientoBobinas") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSMovimientoBobinas + 0.14464cm + 0.619cm + 1.8cm + 27.7cm + + + + + + 0.88206in + + + + + + + Textbox41 + 0.31697cm + 0.619cm + 0.72912cm + 27.7cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value + + + + + + + Textbox41 + 1.03897cm + 0.619cm + 0.64975cm + 27.7cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.79455cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.79815cm + 6.64968cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.79815cm + 13.31184cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 21cm + 29.7cm + 0.5cm + 0.5cm + 0cm + 0cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Numero de Remito + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Fecha Movimiento + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Cantidad + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Tipo de Movimiento + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoBobina.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!NumeroRemito.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!FechaMovimiento.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Cantidad.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TipoMovimiento.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSMovimientoBobinasEstado + 0.14111cm + 0.619cm + 1.2cm + 19cm + + + + + + + + + 3.5cm + + + 3.5cm + + + 3.5cm + + + + + 0.6cm + + + + + true + true + + + + + Tipo Movimiento + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Bobinas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Kilos + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!TipoMovimiento.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalBobinas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalKilos.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + After + + + + + + + DSMovimientoBobinasEstadoTotales + 2.08818cm + 0.619cm + 1.2cm + 10.5cm + 1 + + + + + + true + true + + + + + Totales + + + + + + + Textbox41 + 1.42962cm + 0.619cm + 0.62328cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + 1.38206in + + + + + + + Textbox41 + 0.28998cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value + + + + + + + Textbox41 + 1.08874cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.80192cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.83444cm + 6.60123cm + 0.64974cm + 4.5cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.83444cm + 13.26339cm + 0.64974cm + 1.13709cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Páginas Impresas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Ediciones + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Pág. Por Edición (Promedio) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Ejemplares + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Pág. Ejemplar (Promedio) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!NombreSeccion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalPaginasImpresas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadTiradas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalPaginasEjemplares.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalEjemplares.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioPaginasPorEjemplar.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox21 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalPaginasImpresas.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadTiradas.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalPaginasEjemplares.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalEjemplares.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!PromedioPaginasPorEjemplar.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSTiradasPublicacionesSecciones + 0.14111cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.84039in + + + + + + + Textbox41 + 0.27552cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Planta: " & Parameters!NomPlanta.Value & " - Publicación: " & Parameters!NomPubli.Value + + + + + + + Textbox41 + 1.07428cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.78746cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Mes Consultado: + + + + + + + Textbox41 + 1.81998cm + 6.60123cm + 0.64974cm + 3.25646cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!Mes.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Páginas Impresas + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Ediciones + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Pág. Por Edición (Promedio) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Total Ejemplares + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Pág. Ejemplar (Promedio) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!NombreSeccion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalPaginasImpresas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadTiradas.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalPaginasEjemplares.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalEjemplares.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PromedioPaginasPorEjemplar.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + Totales + + + + + + + Textbox21 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalPaginasImpresas.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!CantidadTiradas.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalPaginasEjemplares.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!TotalEjemplares.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!PromedioPaginasPorEjemplar.Value, "DSTiradasPublicacionesSecciones") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + + DSTiradasPublicacionesSecciones + 0.14111cm + 0.619cm + 1.8cm + 19cm + + + + + + 0.84039in + + + + + + + Textbox41 + 0.27552cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + ="Consolidados - Publicación: " & Parameters!NomPubli.Value + + + + + + + Textbox41 + 1.07428cm + 0.619cm + 0.64975cm + 19cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha del Reporte + + + + + + + Textbox41 + 1.78746cm + 0.619cm + 0.64974cm + 3.43896cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Globals!ExecutionTime).ToString("dd/MM/yyyy") + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Mes Consultado: + + + + + + + Textbox41 + 1.81998cm + 6.60123cm + 0.64974cm + 3.25646cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!Mes.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Textbox5 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + CANILLAS + + + + + + + Textbox7 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRAJES + + + + + + + Textbox9 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTAS + + + + + + + Textbox1 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ACCIONISTAS + + + + + + + Textbox3 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TOTAL COOPERATIVA + + + + + + + Textbox6 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TOTAL + + + + + + + Textbox10 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.75875cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + + Dia + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CantidadCanillas.Value + + + + + + + Llevados + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Tirajes.Value + + + + + + + Devueltos + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Ventas.Value + + + + + + + Ventas + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Accionistas.Value + + + + + + + Accionistas + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalCooperativa.Value + + + + + + + TotalCooperativa + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalGeneral.Value + + + + + + + TotalGeneral + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSListadoDistribucion + 0.14139cm + 0.619cm + 1.96729cm + 19cm + + + + + + 0.88228in + + + + + + + Textbox41 + 0.15522cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.07181cm + 0.619cm + 0.78267cm + 7.14583cm + 1 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.07181cm + 10.13866cm + 0.78267cm + 1.56784cm + 3 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Textbox2 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRADA + + + + + + + Textbox7 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DEVOLUCIÓN COOP. + + + + + + + Textbox9 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTA COOP. + + + + + + + Textbox1 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRADA CANILLAS + + + + + + + Textbox3 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTA CANILLAS (TOTAL) + + + + + + + Textbox6 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TOTAL + + + + + + + Textbox10 + + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.75875cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + + Dia1 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaCoop.Value + + + + + + + TiradaCoop + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DevolucionCoop.Value + + + + + + + DevolucionCoop + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaCoop.Value + + + + + + + VentaCoop + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaCan.Value + + + + + + + TiradaCan + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaCan.Value + + + + + + + VentaCan + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Total.Value + + + + + + + Total + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DSListadoDistribucion + 0.14139cm + 0.619cm + 2.39062cm + 19cm + + + + + + 1.03853in + + + + + + + Textbox41 + 0.15875cm + 0.619cm + 0.72912cm + 19cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.07534cm + 0.619cm + 0.78267cm + 7.14583cm + 1 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.07534cm + 10.13866cm + 0.78267cm + 1.56784cm + 3 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 29.7cm + 21cm + 0cm + 0cm + 0.5cm + 0.5cm + 0.13cm + + + + + + + Textbox4 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + EL DÍA + + + + + + + Textbox5 + + 1.5pt + + + White + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + 5 + + + + + + + + + + true + true + + + + + POPULAR + + + + + + + Textbox34 + + 1.5pt + + + White + + + White + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + CLARÍN + + + + + + + Textbox68 + + 1.5pt + + + White + + + White + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + true + true + + + + + LA NACIÓN + + + + + + + Textbox77 + + 1.5pt + + + White + + Black + Middle + 2pt + 2pt + 2pt + 2pt + + + 3 + + + + + + + + 0.6cm + + + + + true + true + + + + + DÍA + + + + + + + Textbox27 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIR COOP + + + + + + + Textbox22 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DEV COOP + + + + + + + Textbox28 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VTA COOP + + + + + + + Textbox30 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VTA CANI + + + + + + + Textbox31 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TOTAL + + + + + + + Textbox32 + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRADA + + + + + + + Textbox33 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DEVOLUC + + + + + + + Textbox36 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTA + + + + + + + Textbox39 + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRADA + + + + + + + Textbox33 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DEVOLUC + + + + + + + Textbox36 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTA + + + + + + + Textbox39 + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TIRADA + + + + + + + Textbox33 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DEVOLUC + + + + + + + Textbox36 + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VENTA + + + + + + + Textbox39 + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.75875cm + + + + + true + true + + + + + =Fields!Dia.Value + + + + + + + Dia + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaCoop.Value + + + + + + + TiradaCoop + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DevolucionCoop.Value + + + + + + + DevolucionCoop + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaCoop.Value + + + + + + + VentaCoop + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaCan.Value + + + + + + + VentaCan + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaCoop.Value+Fields!VentaCan.Value + + + + + + + Textbox25 + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaPopular.Value + + + + + + + TiradaPopular + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DevolucionPopular.Value + + + + + + + DevolucionPopular + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaPopular.Value + + + + + + + VentaPopular + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaClarin.Value + + + + + + + TiradaClarin + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DevolucionClarin.Value + + + + + + + DevolucionClarin + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaClarin.Value + + + + + + + VentaClarin + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TiradaNacion.Value + + + + + + + TiradaNacion + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DevolucionNacion.Value + + + + + + + DevolucionNacion + + 1.5pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VentaNacion.Value + + + + + + + VentaNacion + + 1.5pt + + #f2efef + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After + + + After + + + + + + + + + + DSListadoDistribucion + 0.14139cm + 0.619cm + 1.95875cm + 28.53896cm + + + + + + 0.86849in + + + + + + + Textbox41 + 1.5875cm + 1.55796cm + 1.01212cm + 10.93083cm + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Fecha Consultada: Desde + + + + + + + Textbox41 + 1.61572cm + 12.68796cm + 0.91334cm + 8.43833cm + 1 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaDesde.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Hasta + + + + + + + Textbox41 + 1.61572cm + 23.15512cm + 0.91334cm + 2.83888cm + 3 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =CDate(Parameters!FechaHasta.Value).ToString("dd/MM/yyyy") + + + + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + 21cm + 29.7cm + 0cm + 0cm + 0cm + 0.5cm + 0.13cm +