]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Marco.php
Agrego XLS a MECONLIB
[mecon/meconlib.git] / lib / MECON / PDF / Marco.php
index 7eccdd7aab29cf4444eb64de73a01736b7c7b1ea..5f9ae555deb0c733c789109737d379914a386f5b 100644 (file)
@@ -168,6 +168,7 @@ class MECON_PDF_Marco extends MECON_PDF {
             null)
     {   
         parent::newPage($pagina, $orientacion);
             null)
     {   
         parent::newPage($pagina, $orientacion);
+        $this->_resetConf();
         if ($encabezado) {
             $this->espacioDisponible = $this->_config['encabezado']['Yi'] - 27;
             if ($this->countPages() === 1) {
         if ($encabezado) {
             $this->espacioDisponible = $this->_config['encabezado']['Yi'] - 27;
             if ($this->countPages() === 1) {
@@ -176,15 +177,15 @@ class MECON_PDF_Marco extends MECON_PDF {
                 }
             }
             if (!is_null($seccion)) {
                 }
             }
             if (!is_null($seccion)) {
-                $this->excepciones[$this->countPages()]['seccion'] = $seccion;
+                $this->_excepciones[$this->numPage()]['seccion'] = $seccion;
             }
             if (!is_null($subseccion)) {
             }
             if (!is_null($subseccion)) {
-                $this->excepciones[$this->countPages()]['subseccion'] = $subseccion;
+                $this->_excepciones[$this->numPage()]['subseccion'] = $subseccion;
             }
         }
         else {
             $this->espacioDisponible = $this->_config['encabezado']['Yf'];
             }
         }
         else {
             $this->espacioDisponible = $this->_config['encabezado']['Yf'];
-            $this->excepciones[$this->countPages()]['nova'] = true;
+            $this->_excepciones[$this->countPages()]['nova'] = true;
             
         }
     }
             
         }
     }
@@ -411,7 +412,6 @@ class MECON_PDF_Marco extends MECON_PDF {
      * @access public
      */
     function toPDF() {
      * @access public
      */
     function toPDF() {
-//        $this->newPage($this->tamanio);
         $this->_buildContent();
         if ($this->getPages()) {
             $t = true;
         $this->_buildContent();
         if ($this->getPages()) {
             $t = true;
@@ -455,7 +455,7 @@ class MECON_PDF_Marco extends MECON_PDF {
     function addContent($contenido, $separador = true) {
         //Me aseguro de poner el separador siempre y cuando no sea el primer
         //objeto de la primer pagina.
     function addContent($contenido, $separador = true) {
         //Me aseguro de poner el separador siempre y cuando no sea el primer
         //objeto de la primer pagina.
-        if ($separador) {
+        if ($separador && $this->_contenido) {
             $this->_contenido[] = $this->_separador_defecto;
         }
         $this->_contenido[] = $contenido;
             $this->_contenido[] = $this->_separador_defecto;
         }
         $this->_contenido[] = $contenido;