diff --git a/ci4/app/Commands/CatalogoLibroAsignarIskn.php b/ci4/app/Commands/CatalogoLibroAsignarIskn.php
new file mode 100644
index 00000000..75a7b9a2
--- /dev/null
+++ b/ci4/app/Commands/CatalogoLibroAsignarIskn.php
@@ -0,0 +1,55 @@
+table('catalogo_libros')
+ ->select('id')
+ ->where('iskn IS NULL')
+ ->where('deleted_at IS NULL')
+ ->get()
+ ->getResultArray();
+
+ if (empty($libros)) {
+ CLI::write('No hay libros sin ISKN por asignar.', 'green');
+ return;
+ }
+
+ CLI::write('Asignando ISKN a ' . count($libros) . ' libros...', 'yellow');
+
+ $i = 1;
+ foreach ($libros as $libro) {
+ $iskn = $modelISKN->newIskn();
+
+ if ($iskn !== null) {
+ $db->table('catalogo_libros')
+ ->where('id', $libro['id'])
+ ->update(['iskn' => $iskn]);
+
+ CLI::write("[{$i}] ISKN '{$iskn}' asignado a libro ID {$libro['id']}", 'cyan');
+ } else {
+ CLI::error("[{$i}] No se pudo generar ISKN para libro ID {$libro['id']}");
+ }
+
+ $i++;
+ }
+
+ CLI::write('Proceso finalizado.', 'green');
+ }
+}
diff --git a/ci4/app/Commands/CatalogoLibroImportar.php b/ci4/app/Commands/CatalogoLibroImportar.php
new file mode 100644
index 00000000..e6beb331
--- /dev/null
+++ b/ci4/app/Commands/CatalogoLibroImportar.php
@@ -0,0 +1,204 @@
+table('lg_papel_generico')
+ ->select('id, code')
+ ->where('is_deleted', 0)
+ ->get()
+ ->getResultArray();
+
+ // Mapa code => id
+ $papelMap = [];
+ foreach ($papeles as $p) {
+ if (!empty($p['code'])) {
+ $papelMap[trim($p['code'])] = $p['id'];
+ }
+ }
+
+ // Mapa de acabados => id
+ $acabadosMap = [
+ 'plastificado_brillo' => 1,
+ 'plastificado_mate' => 5,
+ ];
+
+ // Mapa de encuadernaciones => id
+ $encuadernacionMap = [
+ 'RCHV' => 4, // cosido tapa blanda
+ 'RCHVS' => 20, // cosido tapa blanda solapas
+ 'RDF' => 1, // fresado tapa dura
+ 'RF' => 2, // fresado tapa blanda
+ 'RFS' => 2, // fresado tapa blanda solapas
+ 'TDC' => 3, // cosido tapa dura
+ ];
+
+
+ if (empty($params[0]) || !is_numeric($params[0])) {
+ CLI::error('Debes proporcionar un customer_id válido como parámetro.');
+ return;
+ }
+
+ $customerId = (int) $params[0];
+ CLI::write("Iniciando importación para customer_id = $customerId ...", 'yellow');
+
+ $libros = $db->table('catalogo_libro_antiguo_erp')
+ ->where('customer_id', $customerId)
+ ->where('deleted_at', null)
+ ->get()
+ ->getResultArray();
+
+ if (empty($libros)) {
+ CLI::write('No se encontraron registros para importar.', 'red');
+ return;
+ }
+
+ foreach ($libros as $libro) {
+ $nuevoLibro = [
+ 'id' => $libro['id'],
+ 'cliente_id' => $libro['customer_id'],
+ 'proveedor_id' => null,
+ 'user_created_id' => 1,
+ 'user_update_id' => 1,
+ 'cubierta_archivo' => $libro['cover_file'],
+ 'cubierta_url' => $libro['cover_url'],
+ 'ancho' => $libro['ancho'],
+ 'alto' => $libro['alto'],
+ 'peso' => $libro['peso'],
+ 'titulo' => $libro['titulo'],
+ 'autor' => $libro['autor'] ?? null,
+ 'autor_entidad' => $libro['autor_entidad'],
+ 'traductor' => $libro['traductor'],
+ 'ilustrador' => $libro['ilustrador'],
+ 'idioma' => $libro['idioma'],
+ 'num_edic' => $libro['num_edic'],
+ 'fecha_disponibilidad' => $libro['fecha_disponibilidad'],
+ 'fecha_public' => $libro['fecha_public'],
+ 'num_fotos' => $libro['num_fotos'],
+ 'num_ilustr' => $libro['num_ilustr'],
+ 'num_ilustr_color' => $libro['num_ilustr_color'],
+ 'num_ilustr_bn' => $libro['num_ilustr_bn'],
+ 'coleccion' => $libro['coleccion'] ?? null,
+ 'isbn' => $libro['isbn'],
+ 'ean' => $this->generarEAN($libro['isbn']),
+ 'editorial' => $libro['editorial'],
+ 'resumen' => $libro['resumen'],
+ 'resumen_breve' => $libro['resumen_breve'],
+ 'sello' => $libro['sello'],
+ 'paginas' => $libro['paginas'],
+ 'tipo_impresion' => $this->mapTipoImpresion($libro['tipo_impresion']),
+ 'comentarios' => $libro['comentarios'],
+
+ 'negro_paginas' => $libro['negro_paginas'],
+ 'negro_papel_id' => $this->getPapelId($libro['negro_papel'], $papelMap),
+ 'negro_gramaje' => $libro['negro_gramaje'],
+ 'negro_pod_papel_id' => $this->getPapelId($libro['negro_papel'], $papelMap),
+ 'negro_pod_gramaje' => $libro['negro_gramaje'],
+
+ 'color_paginas' => $libro['color_paginas'],
+ 'color_papel_id' => $this->getPapelId($libro['color_papel'], $papelMap),
+ 'color_gramaje' => $libro['color_gramaje'],
+ 'color_pod_papel_id' => $this->getPapelId($libro['color_papel'], $papelMap),
+ 'color_pod_gramaje' => $libro['color_gramaje'],
+
+ 'cubierta_paginas' => $libro['portada_paginas'],
+ 'cubierta_papel_id' => $this->getPapelId($libro['portada_papel'], $papelMap),
+ 'cubierta_gramaje' => $libro['portada_gramaje'],
+ 'cubierta_pod_papel_id' => $this->getPapelId($libro['portada_papel'], $papelMap),
+ 'cubierta_pod_gramaje' => $libro['portada_gramaje'],
+ 'cubierta_acabado_id' => $this->getAcabadoId($libro['portada_acabado'], $acabadosMap),
+ 'cubierta_ancho_solapas' => $libro['solapas_ancho'],
+
+ 'sobrecubierta_paginas' => $libro['cubierta_paginas'],
+ 'sobrecubierta_papel_id' => $this->getPapelId($libro['cubierta_papel'], $papelMap),
+ 'sobrecubierta_gramaje' => $libro['cubierta_gramaje'],
+ 'sobrecubierta_pod_papel_id' => $this->getPapelId($libro['cubierta_papel'], $papelMap),
+ 'sobrecubierta_pod_gramaje' => $libro['cubierta_gramaje'],
+ 'sobrecubierta_acabado_id' => $this->getAcabadoId($libro['cubierta_acabado'], $acabadosMap),
+ 'sobrecubierta_ancho_solapas' => 0,
+
+ 'encuadernacion_id' => $this->getEncuadernacionId($libro['encuardenacion'], $encuadernacionMap),
+
+ 'ubicacion' => $libro['ubicacion'],
+ 'created_at' => date('Y-m-d H:i:s'),
+ 'updated_at' => date('Y-m-d H:i:s'),
+ 'deleted_at' => $libro['deleted_at'],
+ 'iskn' => null,
+ ];
+
+ $exists = $db->table('catalogo_libros')
+ ->where('id', $libro['id'])
+ ->countAllResults();
+
+ if ($exists == 0) {
+ $db->table('catalogo_libros')->insert($nuevoLibro);
+ $totalImportados++;
+ }else{
+ CLI::write("El libro con ISBN " . $libro['isbn'] . " ya existe para el cliente con id " . $customerId . ".", 'yellow');
+ }
+ }
+
+ CLI::write("Importación finalizada. Se insertaron " . $totalImportados . " registros.", 'green');
+ }
+
+ private function mapTipoImpresion($tipo)
+ {
+ switch ($tipo) {
+ case 'bn':
+ return 'negro';
+ case 'color':
+ return 'color';
+ case 'colorfoto':
+ return 'colorhq';
+ case 'bicolor':
+ return 'color';
+ default:
+ return null;
+ }
+ }
+
+ private function getPapelId(?string $code, array $map): ?int
+ {
+ if ($code === null)
+ return null;
+ $code = trim($code);
+ return $map[$code] ?? null;
+ }
+
+ private function getAcabadoId(?string $nombre, array $map): ?int
+ {
+ if ($nombre === null)
+ return null;
+ $nombre = trim($nombre);
+ return $map[$nombre] ?? null;
+ }
+ private function getEncuadernacionId(?string $codigo, array $map): ?int
+ {
+ if ($codigo === null)
+ return null;
+ $codigo = trim($codigo);
+ return $map[$codigo] ?? null;
+ }
+
+ private function generarEAN(?string $isbn): ?string
+ {
+ if ($isbn === null)
+ return null;
+ return str_replace('-', '', $isbn);
+ }
+
+}
diff --git a/ci4/app/Controllers/Test.php b/ci4/app/Controllers/Test.php
index 09357adb..9a5c3c05 100755
--- a/ci4/app/Controllers/Test.php
+++ b/ci4/app/Controllers/Test.php
@@ -12,7 +12,7 @@ use App\Models\Presupuestos\ImportadorModel;
use App\Models\Presupuestos\PresupuestoModel;
use App\Models\Usuarios\GroupModel;
use App\Models\Catalogo\CatalogoLibroModel;
-use App\Models\Catalogo\IdentificadorIskModel;
+use App\Models\Catalogo\IdentificadorIsknModel;
use App\Services\PresupuestoService;
use CodeIgniter\Shield\Entities\User;
@@ -34,25 +34,19 @@ class Test extends BaseController
{
- $this->emailService = service('emailService');
-
- $a= $this->emailService->send('prueba', 'Esto es una prueba', ['imnavajas@coit.es','imnavajas@gmail.com']);
-
- echo var_dump($a);
-
/*$modelCL = new CatalogoLibroModel();
- $modelISK = new IdentificadorIskModel();
+ $modelISKN = new IdentificadorIsknModel();
- // Obtener todos los registros sin isk
- $registros = $modelCL->where('isk', null)->findAll();
+ // Obtener todos los registros sin iskn
+ $registros = $modelCL->where('iskn', null)->findAll();
$i = 0;
foreach ($registros as $registro) {
- $isk = $modelISK->newIsk();
+ $iskn = $modelISKN->newIskn();
- $modelCL->update($registro->id, ['isk' => $isk]);
+ $modelCL->update($registro->id, ['iskn' => $iskn]);
- echo "[" . $i++ . "]Asignado ISK {$isk} a ID {$registro->id}
";
+ echo "[" . $i++ . "]Asignado ISKN {$iskn} a ID {$registro->id}
";
}*/
diff --git a/ci4/app/Database/Migrations/2025-06-02-093000_RenameIskToIskn.php b/ci4/app/Database/Migrations/2025-06-02-093000_RenameIskToIskn.php
new file mode 100644
index 00000000..a01d4f0b
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-06-02-093000_RenameIskToIskn.php
@@ -0,0 +1,38 @@
+forge->modifyColumn('catalogo_libros', [
+ 'isk' => [
+ 'name' => 'iskn',
+ 'type' => 'VARCHAR',
+ 'constraint' => 64,
+ 'null' => true,
+ 'default' => null,
+ 'collation' => 'utf8_unicode_ci',
+ ],
+ ]);
+ }
+
+ public function down()
+ {
+ // Revertir el nombre de iskn a isk
+ $this->forge->modifyColumn('catalogo_libros', [
+ 'iskn' => [
+ 'name' => 'isk',
+ 'type' => 'VARCHAR',
+ 'constraint' => 64,
+ 'null' => true,
+ 'default' => null,
+ 'collation' => 'utf8_unicode_ci',
+ ],
+ ]);
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-06-02-103200_RenameIdentificadoresIskToIskn.php b/ci4/app/Database/Migrations/2025-06-02-103200_RenameIdentificadoresIskToIskn.php
new file mode 100644
index 00000000..93619375
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-06-02-103200_RenameIdentificadoresIskToIskn.php
@@ -0,0 +1,54 @@
+db->query('RENAME TABLE identificadores_isk TO identificadores_iskn');
+
+ // Eliminar el índice único existente sobre 'isk'
+ $this->db->query('ALTER TABLE identificadores_iskn DROP INDEX isk');
+
+ // Renombrar la columna 'isk' a 'iskn'
+ $this->forge->modifyColumn('identificadores_iskn', [
+ 'isk' => [
+ 'name' => 'iskn',
+ 'type' => 'VARCHAR',
+ 'constraint' => 64,
+ 'null' => false,
+ 'collation' => 'utf8_general_ci',
+ ],
+ ]);
+
+ // Crear nuevo índice único sobre 'iskn'
+ $this->db->query('ALTER TABLE identificadores_iskn ADD UNIQUE INDEX iskn (iskn)');
+ }
+
+ public function down()
+ {
+ // Eliminar índice único sobre 'iskn'
+ $this->db->query('ALTER TABLE identificadores_iskn DROP INDEX iskn');
+
+ // Renombrar la columna 'iskn' de nuevo a 'isk'
+ $this->forge->modifyColumn('identificadores_iskn', [
+ 'iskn' => [
+ 'name' => 'isk',
+ 'type' => 'VARCHAR',
+ 'constraint' => 64,
+ 'null' => false,
+ 'collation' => 'utf8_general_ci',
+ ],
+ ]);
+
+ // Restaurar índice único sobre 'isk'
+ $this->db->query('ALTER TABLE identificadores_iskn ADD UNIQUE INDEX isk (isk)');
+
+ // Renombrar la tabla de nuevo a su nombre original
+ $this->db->query('RENAME TABLE identificadores_iskn TO identificadores_isk');
+ }
+}
diff --git a/ci4/app/Database/Seeds/CatalogoLibrosSeeder.php b/ci4/app/Database/Seeds/CatalogoLibrosSeeder.php
deleted file mode 100644
index cb68d49f..00000000
--- a/ci4/app/Database/Seeds/CatalogoLibrosSeeder.php
+++ /dev/null
@@ -1,1813 +0,0 @@
- 1, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545700.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Herramientas para la Calidad Total', 'autor' => 'VALDERREY, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7r2gn', 'isbn' => '978-84-15457-00-8', 'ean' => '9788415457008', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 2, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545702.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Práctica de Nóminas y Seguros Sociales. 3ª Edición', 'autor' => 'DE PRADO MORANTE, Sandra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7gpvz', 'isbn' => '978-84-15457-02-2', 'ean' => '9788415457022', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 3, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545703.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Impuesto sobre el Valor Añadido. 3ª edición', 'autor' => 'CENICEROS, Á.Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v8kj5', 'isbn' => '978-84-15457-03-9', 'ean' => '9788415457039', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 4, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545705.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Predicción Económica y Empresarial', 'autor' => 'VALDERREY, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7zbuy', 'isbn' => '978-84-15457-05-3', 'ean' => '9788415457053', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 5, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545707.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Eventos corporativos y protocolo empresarial', 'autor' => 'MORUECO GOMEZ, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => null, 'isk' => 'isk_libro_20250420_8sgr6', 'isbn' => '978-84-15457-07-7', 'ean' => '9788415457077', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => 0, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-22 22:02:48', 'deleted_at' => null],
- ['id' => 6, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545708.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración Básica de Sistemas Operativos', 'autor' => 'GOMEZ LOPEZ, Sr. Julio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8tsb2', 'isbn' => '978-84-15457-08-4', 'ean' => '9788415457084', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 142, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 142, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 7, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545709.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual de Derecho Mercantil', 'autor' => 'CUADRADO RAMOS, Sr. Daniel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0k9sh', 'isbn' => '978-84-15457-09-1', 'ean' => '9788415457091', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 8, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545710.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ContaPlus 2012. Básico', 'autor' => 'DE PRADO MORANTE, Sandra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2g7vy', 'isbn' => '978-84-15457-10-7', 'ean' => '9788415457107', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 160, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 160, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 9, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545711.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Crear una web desde cero. Paso a paso con Joomla!', 'autor' => 'RODRÍGUEZ DIÉGUEZ, Sr. Fernando', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e7avl', 'isbn' => '978-84-15457-11-4', 'ean' => '9788415457114', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 10, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545712.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Auditoría (MF0232_3'],
- ['id' => 11, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545714.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Mantenimiento del subsistema lógico de sistemas informáticos (MF0958_2'],
- ['id' => 12, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545715.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Implantación de los elementos de la red local (MF0220_2'],
- ['id' => 13, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545716.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Operaciones auxiliares con tecnologías de la información y la comunicación (MF1209_1'],
- ['id' => 14, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545718.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ofimática para el empleo. Las herramientas necesarias para la búsqueda de trabajo', 'autor' => 'IVAN PARRO FERNÁNDEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e8mup', 'isbn' => '978-84-15457-18-3', 'ean' => '9788415457183', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 15, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545719.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ofimática para el hogar. Herramientas imprescindibles para la gestión doméstica', 'autor' => 'CRUZ HERRADÓN, Ana M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nyfo2', 'isbn' => '978-84-15457-19-0', 'ean' => '9788415457190', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 16, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545720.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Inserción laboral, sensibilización medioambiental y en la igualdad de género', 'autor' => 'Mª EUGENIA PÉREZ MONTERO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_73w9z', 'isbn' => '978-84-15457-20-6', 'ean' => '9788415457206', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 68, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 68, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 17, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545721.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La empresa concursada. Guía para la toma de decisiones (tiempos', 'autor' => 'formas y modalidades'],
- ['id' => 18, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545722.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Administración de servicios de mensajería electrónica (MF0496_3'],
- ['id' => 19, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545723.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2012 Práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fbdhr', 'isbn' => '978-84-15457-23-7', 'ean' => '9788415457237', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 20, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545724.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estrategias empresariales. 2ª Edición', 'autor' => 'LÓPEZ NAVAZA, Sr. Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pqdvk', 'isbn' => '978-84-15457-24-4', 'ean' => '9788415457244', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 21, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545725.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Electricidad Básica. Problemas resueltos', 'autor' => 'BRÉGAINS RODRÍGUEZ, Sr. Julio C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_czh1b', 'isbn' => '978-84-15457-25-1', 'ean' => '9788415457251', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 22, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545726.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Coaching Samurai', 'autor' => 'NALDA GIMENO, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_15qkg', 'isbn' => '978-84-15457-26-8', 'ean' => '9788415457268', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 158, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 158, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 23, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545727.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Instalación de sistemas de riego en parques y jardines', 'autor' => 'DE LA FUENTE MAGADÁN, Sr. Iván', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w9y3f', 'isbn' => '978-84-15457-27-5', 'ean' => '9788415457275', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 24, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545728.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Informática e Internet prácticas para novatos. El método del botón derecho', 'autor' => 'MANERO BERNAO, Sr. Daniel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_32tce', 'isbn' => '978-84-15457-28-2', 'ean' => '9788415457282', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 25, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545730.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Quiero que mi empresa salga en Google. 3ª Edición actualizada', 'autor' => 'ANDRÉS PÉREZ, Andrés Luis ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jk6q5', 'isbn' => '978-84-15457-30-5', 'ean' => '9788415457305', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 26, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Auditoria de Seguridad Informática. Manual Práctico', 'autor' => 'GOMEZ VIEITES, Sr. Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ucrek', 'isbn' => '978-84-15457-31-2', 'ean' => '9788415457312', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 27, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Seguridad en Equipos Informáticos. Manual Práctico', 'autor' => 'GOMEZ VIEITES, Sr. Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gw7xf', 'isbn' => '978-84-15457-32-9', 'ean' => '9788415457329', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 28, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Administración de Sistemas Gestores de Bases de Datos. Manual Práctico', 'autor' => 'PEREZ LOPEZ, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1bj8n', 'isbn' => '978-84-15457-33-6', 'ean' => '9788415457336', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 252, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 252, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 29, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Gestión de Bases de Datos. Manual Práctico', 'autor' => 'PEREZ LOPEZ, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nqwda', 'isbn' => '978-84-15457-34-3', 'ean' => '9788415457343', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 30, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Reparación del Equipamiento Informático. Manual Práctico', 'autor' => 'MORENO PÉREZ, Sr. Juan Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vz8wk', 'isbn' => '978-84-15457-35-0', 'ean' => '9788415457350', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 31, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Montaje de Equipos Informáticos. Manual Práctico', 'autor' => 'MORENO PÉREZ, Sr. Juan Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x0vsp', 'isbn' => '978-84-15457-36-7', 'ean' => '9788415457367', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 198, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 198, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 32, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Mantenimiento de la Seguridad en Sistemas Informáticos. Manual Práctico', 'autor' => 'COSTAS SANTOS, Sr. Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bldqh', 'isbn' => '978-84-15457-37-4', 'ean' => '9788415457374', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 33, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Construcción de Páginas Web. Manual Práctico', 'autor' => 'GOMEZ LOPEZ, Sr. Julio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4lpa3', 'isbn' => '978-84-15457-38-1', 'ean' => '9788415457381', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 34, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Fabricación Mecánica. Manual Práctico', 'autor' => 'DÍAZ BALTASAR, Sr. Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gqnt1', 'isbn' => '978-84-15457-39-8', 'ean' => '9788415457398', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 35, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Ofimática. Manual Práctico', 'autor' => 'ROSADO ALCANTARA, Sr. Francisco M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cx47e', 'isbn' => '978-84-15457-40-4', 'ean' => '9788415457404', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 36, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Instalación y Configuración de Sistemas Operativos. Manual Práctico', 'autor' => 'GONZÁLEZ PÉREZ, Mª Ángeles', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_odyvn', 'isbn' => '978-84-15457-41-1', 'ean' => '9788415457411', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 37, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Instalación y Configuración de Aplicaciones Informáticas. Manual Práctico', 'autor' => 'GONZÁLEZ PÉREZ, Mª Ángeles', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_48itg', 'isbn' => '978-84-15457-42-8', 'ean' => '9788415457428', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 134, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 134, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 38, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Montaje Mecánico. Manual Práctico', 'autor' => 'DÍAZ BALTASAR, Sr. Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eortq', 'isbn' => '978-84-15457-43-5', 'ean' => '9788415457435', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 39, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Instalación de Redes Locales. Manual Práctico', 'autor' => 'MOLINA ROBLES, Sr. Francisco José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_efpdb', 'isbn' => '978-84-15457-44-2', 'ean' => '9788415457442', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 40, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'M. P. Administración de Servicios de Mensajería Electrónica. Manual Práctico', 'autor' => 'CASLA VILLARES, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3i5fm', 'isbn' => '978-84-15457-45-9', 'ean' => '9788415457459', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 41, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545747.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Los Secretos del Outsourcing.', 'autor' => 'PASCUAL ALMEIDA, Sr. Miguel Ángel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a5olh', 'isbn' => '978-84-15457-47-3', 'ean' => '9788415457473', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 42, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545748.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Bricolaje informático. Taller de Hardware', 'autor' => 'MORENO PÉREZ, Sr. Juan Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d2jqm', 'isbn' => '978-84-15457-48-0', 'ean' => '9788415457480', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 250, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 5, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 43, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545749.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2013. Práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_57y94', 'isbn' => '978-84-15457-49-7', 'ean' => '9788415457497', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 44, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545750.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Vender, un estilo de vida', 'autor' => 'PANAMERICANA EDITORIAL', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_te02q', 'isbn' => '978-84-15457-50-3', 'ean' => '9788415457503', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 114, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 114, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 45, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545751.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Búsqueda de empleo a través de Internet', 'autor' => 'IVAN PARRO FERNÁNDEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fneiu', 'isbn' => '978-84-15457-51-0', 'ean' => '9788415457510', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 204, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 204, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 46, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545752.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Cómo enriquecerse en bolsa. 2ª Edición actualizada', 'autor' => 'HERRERO DELGADO, Sr. José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ilhvs', 'isbn' => '978-84-15457-52-7', 'ean' => '9788415457527', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 47, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545753.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Coolhunting y tendencias. A la caza de grandes ideas', 'autor' => 'EDICIONES DE LA U', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t13ns', 'isbn' => '978-84-15457-53-4', 'ean' => '9788415457534', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 48, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545754.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Decisiones estratégicas. Macroadministración', 'autor' => 'Ediciones de la U', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_utq0r', 'isbn' => '978-84-15457-54-1', 'ean' => '9788415457541', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 330, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 330, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 49, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545755.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Tu oficina en casa. Necesidades y soluciones informáticas', 'autor' => 'RODRIGUEZ, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_387z6', 'isbn' => '978-84-15457-55-8', 'ean' => '9788415457558', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 50, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545756.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones de Software Libre', 'autor' => 'RODRÍGUEZ SEPÚLVEDA, Sr. David', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m8a6v', 'isbn' => '978-84-15457-56-5', 'ean' => '9788415457565', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 51, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545757.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Planifica tu éxito, de aprendiz a empresario EDICION AUTENTIA ', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gi536', 'isbn' => '9788415457572', 'ean' => '9788415457572', 'editorial' => 'Starbook Editorial', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 476, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 444, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 32, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 80.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 52, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545758.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fontanería básica', 'autor' => 'EMPRESA EDITORA MACRO EIRL (A'],
- ['id' => 53, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545759.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ventilación Industrial', 'autor' => 'EDICIONES DE LA U', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vogfz', 'isbn' => '978-84-15457-59-6', 'ean' => '9788415457596', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 54, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545760.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Electrónica Básica. Problemas resueltos', 'autor' => 'BRÉGAINS RODRÍGUEZ, Sr. Julio C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ikbv', 'isbn' => '978-84-15457-60-2', 'ean' => '9788415457602', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 180, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 55, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545761.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La empresa familiar y el pequeño negocio', 'autor' => 'ARAGONESES CÁCERES, Sr. Ignacio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1ri2j', 'isbn' => '978-84-15457-61-9', 'ean' => '9788415457619', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 56, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545764.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Práctica de Nóminas y Seguros Sociales. 4ª Edición', 'autor' => 'DE PRADO MORANTE, Sandra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p01ax', 'isbn' => '978-84-15457-64-0', 'ean' => '9788415457640', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 57, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545765.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Flash CS6 Básico', 'autor' => 'CASLA VILLARES, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f9qug', 'isbn' => '978-84-15457-65-7', 'ean' => '9788415457657', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 58, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545766.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Dreamweaver CS6 Básico', 'autor' => 'CASLA VILLARES, Sr. Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9qhji', 'isbn' => '978-84-15457-66-4', 'ean' => '9788415457664', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 59, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545769.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Neuromarketing: cuando el Doctor Jekyll descubrió a Mr. Hyde', 'autor' => 'JUAN PEDRO GARCIA PALOMO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o9nzm', 'isbn' => '978-84-15457-69-5', 'ean' => '9788415457695', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 60, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545770.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'iPavement. El Pavimento Inteligente', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yj7fv', 'isbn' => '978-84-15457-70-1', 'ean' => '9788415457701', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 61, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545771.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Innovar o morir. 3ª edición', 'autor' => 'MORALES NIETO, Sr. Enrique', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eb0fy', 'isbn' => '978-84-15457-71-8', 'ean' => '9788415457718', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:19', 'deleted_at' => null],
- ['id' => 62, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545772.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión Empresarial Práctica.', 'autor' => 'JOSÉ MARÍA CARPINTERO GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_he4iy', 'isbn' => '978-84-15457-72-5', 'ean' => '9788415457725', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 63, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545774.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mi Sitio en Internet. Guía para Novatos', 'autor' => 'CASCALES TORRES, Sra. Eliana', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x7uir', 'isbn' => '978-84-15457-74-9', 'ean' => '9788415457749', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 388, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 388, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 64, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545775.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Comunícate. Microhabilidades para directivos', 'autor' => 'CASTELLÓN MASALLES, Sr. Fernando ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dsprz', 'isbn' => '978-84-15457-75-6', 'ean' => '9788415457756', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 112, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 112, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 65, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897084.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Cartografía Digital.', 'autor' => 'Mena Berrios, Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ucert', 'isbn' => '978-84-7897-084-1', 'ean' => '9788478970841', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 66, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897105.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Desarrollo y Programación de Sistemas Digitales.', 'autor' => 'Martínez Sánchez, Victoriano A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c7kau', 'isbn' => '978-84-7897-105-3', 'ean' => '9788478971053', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 67, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897109.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Reconocimiento de Formas y Visión Artificial.', 'autor' => 'Maravall Gomez, Dario', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6nhxt', 'isbn' => '978-84-7897-109-1', 'ean' => '9788478971091', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 456, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 456, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 68, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897116.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Algorítmica. Diseño y análisis de algoritmos Funcionales e imperativos.', 'autor' => 'Galve Frances, Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5j4c2', 'isbn' => '978-84-7897-116-9', 'ean' => '9788478971169', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 69, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897142.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de Información Geográfica. Prácticas con PC ARC/INFO e IDRISI.', 'autor' => 'Bosque Sendra, Joaquín', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0txps', 'isbn' => '978-84-7897-142-8', 'ean' => '9788478971428', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 504, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 504, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 70, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897146.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diccionario de Matemática Moderna.', 'autor' => 'Maravall Casesnoves, Dario', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8divo', 'isbn' => '978-84-7897-146-6', 'ean' => '9788478971466', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 71, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897155.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes Neuronales Artificiales. Fundamentos, Modelos y Aplicaciones.', 'autor' => 'Hilera Gonzalez, José Ramón', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c78wa', 'isbn' => '978-84-7897-155-8', 'ean' => '9788478971558', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 72, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Editor Vi. Manual de referencia.', 'autor' => 'Gonzalez Cotera, Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tmb39', 'isbn' => '978-84-7897-169-5', 'ean' => '9788478971695', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 73, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897181.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Cálculo Simbólico y Numérico con MATHEMATICA', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bmgez', 'isbn' => '978-84-7897-181-7', 'ean' => '9788478971817', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 808, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 808, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 74, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Cómo usar Lotus 1-2-3 versión 5 para Windows.', 'autor' => 'Chordá Font, Ramón M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y3bo4', 'isbn' => '978-84-7897-186-2', 'ean' => '9788478971862', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 612, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 612, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 75, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897195.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Photoshop Profesional. Corrección de color, retoque y manipulación de imágenes.', 'autor' => 'MARGULIS, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ewu65', 'isbn' => '978-84-7897-195-4', 'ean' => '9788478971954', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 76, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897199.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Cálculo Científico con MAPLE.', 'autor' => 'Rincon De Rojas, Félix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zipm1', 'isbn' => '978-84-7897-199-2', 'ean' => '9788478971992', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 77, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897202.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Elementos de Teledetección.', 'autor' => 'Pinilla Ruiz, Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_humz7', 'isbn' => '978-84-7897-202-9', 'ean' => '9788478972029', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 344, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 344, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 78, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897235.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Arquitectura de Ordenadores. Teoría y ejercios', 'autor' => 'Higuera Toledano, Mª Teresa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g98vh', 'isbn' => '978-84-7897-235-7', 'ean' => '9788478972357', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 312, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 312, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 79, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897236.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Introducción a la Informática Aplicada a la Psicología del Deporte.', 'autor' => 'Hernandez Mendo, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nl6u7', 'isbn' => '978-84-7897-236-4', 'ean' => '9788478972364', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 80, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897260.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Algebra, Cálculo y Mecánica para Ingº/I', 'autor' => 'Checa Martinez, Emilio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_prdin', 'isbn' => '978-84-7897-260-9', 'ean' => '9788478972609', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 736, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 736, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 81, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897262.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Matemáticas en la economía y la empresa con Derive y Mathematica en un entorno Windows.', 'autor' => 'Gonzalez Pareja, Alfonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mzhlr', 'isbn' => '978-84-7897-262-3', 'ean' => '9788478972623', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 608, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 608, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 82, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897271.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Fundamentos de Informática.', 'autor' => 'Ureña Lopez, Alfonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fin2u', 'isbn' => '978-84-7897-271-5', 'ean' => '9788478972715', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 83, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897280.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Matemática Práctica con DERIVE para Windows.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tm8p0', 'isbn' => '978-84-7897-280-7', 'ean' => '9788478972807', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 84, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897290.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Desarrollo de algoritmos y técnicas de programación en Pascal.', 'autor' => 'Pareja Flores, Cristobal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9zqkl', 'isbn' => '978-84-7897-290-6', 'ean' => '9788478972906', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 564, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 564, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 85, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897308.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Aprenda PSpice para Windows.', 'autor' => 'Aguilar Peña, Juan Domingo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qag5w', 'isbn' => '978-84-7897-308-8', 'ean' => '9788478973088', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 356, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 356, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 86, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897325.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'HTML 4. Guía de Referencia y Tutorial.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sv19x', 'isbn' => '978-84-7897-325-5', 'ean' => '9788478973255', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 87, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897342.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Programación multimedia avanzada con DirectX.', 'autor' => 'Sanchez Ballesteros, Constantino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8skfo', 'isbn' => '978-84-7897-342-2', 'ean' => '9788478973422', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 88, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897347.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Trabajando con MatLab y la Control System Toolbox.', 'autor' => 'Moreno Muñoz, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b5ki4', 'isbn' => '978-84-7897-347-7', 'ean' => '9788478973477', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 89, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897348.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Técnicas de Análisis de Datos para Investigadores Sociales. Aplicaciones prácticas con SPSS para Win', 'autor' => 'Diaz De Rada Igusquiza, Vidal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_641xh', 'isbn' => '978-84-7897348-4', 'ean' => '9788478973484', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 90, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897349.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Algebra, Cálculo y Mecánica para Ingº/II', 'autor' => 'Checa Martinez, Emilio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yb982', 'isbn' => '978-84-7897-349-1', 'ean' => '9788478973491', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 91, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897355.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Visual Basic: Programación Cliente/Servidor. 2ª edición actualizada a la versión 6.', 'autor' => 'Gonzalez Perez, Alfons', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5ih2p', 'isbn' => '978-84-7897-355-2', 'ean' => '9788478973552', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 624, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 624, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 92, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897357.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Visual Basic. Curso programación. 2ª edición actualizada a la versión 6.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bvjwe', 'isbn' => '978-84-7897-357-6', 'ean' => '9788478973576', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 93, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897364.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Ejemplos prácticos con CorelDRAW.', 'autor' => 'Escusol Lou, Mª Josefa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fyp6v', 'isbn' => '978-84-7897-364-4', 'ean' => '9788478973644', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 94, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897365.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Análisis matemático y álgebra lineal con MATLAB.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_phbea', 'isbn' => '978-84-7897-365-1', 'ean' => '9788478973651', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 712, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 712, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 95, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897367.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Prácticas de Matemáticas de Bachillerato con DERIVE para Windows.', 'autor' => 'Ibañes Jalon, Marcelino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zjm7n', 'isbn' => '978-84-7897-367-5', 'ean' => '9788478973675', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 96, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897370.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Guía de Campo: Microsoft WORD 2000', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ha9fd', 'isbn' => '978-84-7897-370-5', 'ean' => '9788478973705', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 97, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897374.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'HTML Dinámico a través de ejemplos.', 'autor' => 'Bobadilla Sancho, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u839n', 'isbn' => '978-84-7897-374-3', 'ean' => '9788478973743', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 98, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897377.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Domine Microsoft Word 2000.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ukmqc', 'isbn' => '978-84-7897-377-4', 'ean' => '9788478973774', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 736, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 736, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 99, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897382.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Protocolos de Internet. Diseño e implementación en sistemas UNIX.', 'autor' => 'Lopez Gonzalez, Angel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e98s2', 'isbn' => '978-84-7897-382-8', 'ean' => '9788478973828', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 452, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 452, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 100, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897391.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Guía de campo de Microsoft Outlook 2000.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3xk58', 'isbn' => '978-84-7897-391-0', 'ean' => '9788478973910', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 101, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897395.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Redes ATM: Principios de interconexión y su aplicación.', 'autor' => 'Guijarro Coloma, Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mw89x', 'isbn' => '978-84-7897-395-8', 'ean' => '9788478973958', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 102, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897398.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Reconocimiento de Voz y Fonética Acústica.', 'autor' => 'Bernal Bermudez, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l7udx', 'isbn' => '978-84-7897-398-9', 'ean' => '9788478973989', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => '', 'sello' => null, 'paginas' => 356, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 356, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 103, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897403.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Medición para la gestión en la Ingeniería del Software.', 'autor' => 'Dolado Cosin, José Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4inxf', 'isbn' => '978-84-7897-403-0', 'ean' => '9788478974030', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 104, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897409.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'El lenguaje de la Ciencia Económica. ¿Por qué la Economía no prescinde de las Matemáticas?', 'autor' => 'Gonzalez Concepcion, Concepción', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1lh9b', 'isbn' => '978-84-7897-409-2', 'ean' => '9788478974092', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 105, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897413.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Active Server Pages 3: Creación de aplicaciones Web a través de ejemplos.', 'autor' => 'Bobadilla Sancho, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vmc6i', 'isbn' => '978-84-7897-413-9', 'ean' => '9788478974139', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 488, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 488, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 106, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897414.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Teoría de circuitos con OrCAD PSpice: 20 prácticas de laboratorio.', 'autor' => 'Ogayar Fernandez, Blas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rsxdp', 'isbn' => '978-84-7897-414-6', 'ean' => '9788478974146', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 544, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 544, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 107, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897425.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Macromedia Director 8.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7290t', 'isbn' => '978-84-7897-425-2', 'ean' => '9788478974252', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 108, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897431.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Criptología y Seguridad de la Información. Actas de la VI Reunión Española. Tenerife, I.Canarias 14-', 'autor' => 'Caballero Gil, Pino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1vyr7', 'isbn' => '978-84-7897-431-3', 'ean' => '9788478974313', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 109, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897441.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Comercio electrónico y estrategia empresarial. Hacia la economía digital. 2ª Edición actualizada.', 'autor' => 'Del Aguila Obra, Ana Rosa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2txjs', 'isbn' => '978-84-7897-441-2', 'ean' => '9788478974412', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 110, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897442.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes para Proceso Distribuido. 2ª Edición actualizada.', 'autor' => 'Garcia Tomas, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_awfip', 'isbn' => '978-84-7897-442-9', 'ean' => '9788478974429', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 804, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 804, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 111, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897444.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Auditoría Informática: Un enfoque práctico. 2ª Edición ampliada y revisada.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rmnt0', 'isbn' => '978-84-7897-444-3', 'ean' => '9788478974443', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 708, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 708, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 112, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897447.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estructura de Computadores y Periféricos.', 'autor' => 'Martinez Dura, Rafael Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gl0p3', 'isbn' => '978-84-7897-447-4', 'ean' => '9788478974474', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 404, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 404, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 113, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897448.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mantenimiento del Software: Modelos, técnicas y métodos para la gestión del cambio.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l36ma', 'isbn' => '978-84-7897-448-1', 'ean' => '9788478974481', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 15, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 15, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 114, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897455.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'X M L a través de ejemplos.', 'autor' => 'Gutierrez Rodriguez, Abraham', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x9ako', 'isbn' => '978-84-7897-455-9', 'ean' => '9788478974559', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 512, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 512, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 115, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897456.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis Econométrico con EViews.', 'autor' => 'Carrascal Arranz, Ursicino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2oxkb', 'isbn' => '978-84-7897-456-6', 'ean' => '9788478974566', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 116, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897458.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Recuperación de la Información en Internet.', 'autor' => 'Tramullas Saz, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bh95s', 'isbn' => '978-84-7897-458-0', 'ean' => '9788478974580', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 117, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897461.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'Cómo programar Videojuegos en Windows.', 'autor' => 'Ruiz Fernandez, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kmy1u', 'isbn' => '978-84-7897-461-0', 'ean' => '9788478974610', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 118, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897470.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Dispositivos Electrónicos: Problemas resueltos.', 'autor' => 'Roldán Aranda, Juan Bautista', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3v749', 'isbn' => '978-84-7897-470-2', 'ean' => '9788478974702', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 119, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897472.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Visión por Computador: Imágenes digitales y aplicaciones.', 'autor' => 'Pajares Martinsanz, Gonzálo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h149d', 'isbn' => '978-84-7897-472-6', 'ean' => '9788478974726', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 800, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 800, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 120, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897477.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'E-Business y Comercio Electrónico: Un enfoque estratégico.', 'autor' => 'Del Aguila Obra, Ana Rosa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kr4ys', 'isbn' => '978-84-7897-477-1', 'ean' => '9788478974771', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 121, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897478.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Bases de Datos: Desde Chen hasta Codd con Oracle.', 'autor' => 'Luque Ruiz, Irene', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jaw6d', 'isbn' => '978-84-7897-478-8', 'ean' => '9788478974788', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 448, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 448, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 122, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897480.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'C/C++ Curso de programación, 2ª edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dov5c', 'isbn' => '978-84-7897-480-1', 'ean' => '9788478974801', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 704, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 704, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 123, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897481.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Contabilidad para PYMES. Supuestos cuenta por cuenta basados en la realidad.', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cfjli', 'isbn' => '978-84-7897-481-8', 'ean' => '9788478974818', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 124, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897489.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Microsoft Excel 2002.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4rjw9', 'isbn' => '978-84-7897-489-4', 'ean' => '9788478974894', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 736, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 736, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 125, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897490.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'JavaServer Pages: Manual de usuario y tutorial.', 'autor' => 'Froufe Quintas, Agustín', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kd9ez', 'isbn' => '978-84-7897-490-0', 'ean' => '9788478974900', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 126, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897492.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Construcción Lógica de Programas. Teoría y problemas resueltos.', 'autor' => 'Garcia Sanchez, Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kiv0n', 'isbn' => '978-84-7897-492-4', 'ean' => '9788478974924', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 127, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897493.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Las Formas Organizativas en la Economía Digital. De la estructura simple a la Organización en Red y ', 'autor' => 'Padilla Melendez, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oxpm5', 'isbn' => '978-84-7897-493-1', 'ean' => '9788478974931', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 128, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897494.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fundamentos de los Sistemas de Ayuda a la Decisión.', 'autor' => 'Bielza Lozoya, Concepción', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qeys6', 'isbn' => '978-84-7897-494-8', 'ean' => '9788478974948', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 129, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897495.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => '3DS MAX 4: Curso práctico.', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ahxus', 'isbn' => '978-84-7897-495-5', 'ean' => '9788478974955', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 130, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897496.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SPSS aplicado a las ciencias de la Salud.', 'autor' => 'Garrido Cantarero, Gregorio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s61ad', 'isbn' => '978-84-7897-496-2', 'ean' => '9788478974962', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 131, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897497.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Navegar en Internet: Microsoft Internet Explorer 6.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_apbgy', 'isbn' => '978-84-7897-497-9', 'ean' => '9788478974979', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 132, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897499.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Microsoft Excel 2002.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zrf67', 'isbn' => '978-84-7897-499-3', 'ean' => '9788478974993', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 133, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897500.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'El lenguaje de programación C#.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2001-12-11', 'fecha_public' => '2001-12-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ta423', 'isbn' => '978-84-7897-500-6', 'ean' => '9788478975006', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 134, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897502.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Telefonía Móvil: Caracterización de las conexiones.', 'autor' => 'Barcelo Arroyo, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n2u6s', 'isbn' => '978-84-7897-502-0', 'ean' => '9788478975020', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 135, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897503.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Alta velocidad y calidad de servicio en Redes IP.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sl8cw', 'isbn' => '978-84-7897-503-7', 'ean' => '9788478975037', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 720, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 720, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 136, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897504.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La actividad publicitaria en Internet. 3ª edición actualizada.', 'autor' => 'Lavilla Raso, Montserrat', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e3n4s', 'isbn' => '978-84-7897-504-4', 'ean' => '9788478975044', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 137, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897505.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Navegar en Internet: FrontPage 2002.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vdt5i', 'isbn' => '978-84-7897-505-1', 'ean' => '9788478975051', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 138, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897506.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SQL y Java. Guía para SQLJ, JDBC y tecnologías relacionadas.', 'autor' => 'MELTON, J. y EISENBERG, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1u968', 'isbn' => '978-84-7897-506-8', 'ean' => '9788478975068', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 139, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897510.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Interness: El monstruo de Internet.', 'autor' => 'Sanchez Beltran, Juan Pablo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ianfg', 'isbn' => '978-84-7897-510-5', 'ean' => '9788478975105', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 140, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897514.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión Digital de la Información. De bits a bibliotecas digitales y la web.', 'autor' => 'PEÑA, R.- BAEZA-YATES, R.- RODRÍGUEZ, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p29v0', 'isbn' => '978-84-7897-514-3', 'ean' => '9788478975143', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 141, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897515.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Técnicas de Análisis Multivariante para Investigación Social y Comercial. Ejemplos prácticos utiliza', 'autor' => 'Diaz De Rada Igusquiza, Vidal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_20oax', 'isbn' => '978-84-7897-515-0', 'ean' => '9788478975150', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 142, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897518.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'El libro de Autodesk Architectural Desktop 3.3.', 'autor' => 'Cogollor Gómez, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z0l6e', 'isbn' => '978-84-7897-518-1', 'ean' => '9788478975181', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 143, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897520.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Introducción a la Criptografía, 2ª edición actualizada.', 'autor' => 'Caballero Gil, Pino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4j02g', 'isbn' => '978-84-7897-520-4', 'ean' => '9788478975204', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 160, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 160, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 144, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897524.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad en la Producción Cartográfica.', 'autor' => 'Ariza Lopez, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4lzw2', 'isbn' => '978-84-7897-524-2', 'ean' => '9788478975242', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 424, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 424, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 145, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897527.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de Campo de Macromedia Flash MX.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3gfeu', 'isbn' => '978-84-7897-527-3', 'ean' => '9788478975273', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 146, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897528.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estadística con SPSS para Windows, versión 11.', 'autor' => 'Camacho Rosales, Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7kmcu', 'isbn' => '978-84-7897-528-0', 'ean' => '9788478975280', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 147, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897530.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1024.00, 'titulo' => 'Diseño y desarrollo Multimedia: Sistemas, Imagen y Sonido', 'autor' => 'Colmenar Santos, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2002-11-04', 'fecha_public' => '2002-11-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fwu8v', 'isbn' => '978-84-7897-530-3', 'ean' => '9788478975303', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 596, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 596, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 148, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897531.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Curvas y superficies para modelado geométrico.', 'autor' => 'Cordero Valle, Juan Manuel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i9gkz', 'isbn' => '978-84-7897-531-0', 'ean' => '9788478975310', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 149, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897532.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Metodología del Diseño Industrial: Un enfoque desde la Ingeniería Concurrente.', 'autor' => 'Aguayo González, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ehkmv', 'isbn' => '978-84-7897-532-7', 'ean' => '9788478975327', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 656, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 656, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 150, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897535.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine HTML y DHTML.', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c9ktr', 'isbn' => '978-84-7897-535-8', 'ean' => '9788478975358', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 448, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 448, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 151, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897537.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Las claves de la Economía Digital.', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2cosb', 'isbn' => '978-84-7897-537-2', 'ean' => '9788478975372', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 152, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897540.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación en 3D con Java 3D.', 'autor' => 'Pratdepadua Bufill, Joan Josep', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xeay7', 'isbn' => '978-84-7897-540-2', 'ean' => '9788478975402', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 90, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 153, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897541.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Las Comunicaciones en la Empresa: Normas, redes y servicios. 2ª edición actualizada.', 'autor' => 'Mariño Espiñeira, Perfecto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tha3s', 'isbn' => '978-84-7897-541-9', 'ean' => '9788478975419', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 154, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897543.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 489.00, 'titulo' => 'S.I.G.. Aplicaciones prácticas con Idrisi32 al análisis de riesgos naturales y problemáticas medioam', 'autor' => 'Ordoñez Galan, Celestino', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2003-03-28', 'fecha_public' => '2003-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rizct', 'isbn' => '978-84-7897-543-3', 'ean' => '9788478975433', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 155, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897544.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad en el desarrollo y mantenimiento del software.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ek9hu', 'isbn' => '978-84-7897-544-0', 'ean' => '9788478975440', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 344, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 344, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 156, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897545.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes de ordenadores e Internet: Funcionamiento, servicios ofrecidos y alternativas de conexión.', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_16y0x', 'isbn' => '978-84-7897-545-7', 'ean' => '9788478975457', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 157, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897547.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADSL. Guía del usuario.', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zx068', 'isbn' => '978-84-7897-547-1', 'ean' => '9788478975471', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 276, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 158, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897554.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CorelDRAW 11 Superfácil.', 'autor' => 'Cordoba Gonzalez, Carmen', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j3rf2', 'isbn' => '978-84-7897-554-9', 'ean' => '9788478975549', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 159, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897555.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Macromedia Dreamweaver MX. Desarrollo de aplicaciones y bases de datos en la Web.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_smnwa', 'isbn' => '978-84-7897-555-6', 'ean' => '9788478975556', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 160, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897557.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Piratas Cibernéticos, 2ª edición.', 'autor' => 'De Marcelo Rodao, Jesús', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nkmf0', 'isbn' => '978-84-7897-557-0', 'ean' => '9788478975570', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 161, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897563.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Imágenes Digitales. Procesamiento práctico con JAVA.', 'autor' => 'Pajares Martinsanz, Gonzálo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_493e7', 'isbn' => '978-84-7897-563-1', 'ean' => '9788478975631', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 216, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 216, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 162, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897564.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Oracle 9i: Servidor de aplicaciones, red y programación', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tspqf', 'isbn' => '978-84-7897-564-8', 'ean' => '9788478975648', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 163, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897568.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Turbocompresores de geometría variable. Estudio y diseño.', 'autor' => 'Ortega Alvear, Mario', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3q8xu', 'isbn' => '978-84-7897-568-6', 'ean' => '9788478975686', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 164, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897569.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de AutoCAD 2002.', 'autor' => 'Gomez Agudo, Fernando', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_po79d', 'isbn' => '978-84-7897-569-3', 'ean' => '9788478975693', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 165, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897571.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de PageMaker 7.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gi8yr', 'isbn' => '978-84-7897-571-6', 'ean' => '9788478975716', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 166, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897573.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes de Área Local.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qe1v7', 'isbn' => '978-84-7897-573-0', 'ean' => '9788478975730', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 167, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897574.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Informáticos Multiusuario y en Red.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zalod', 'isbn' => '978-84-7897-574-7', 'ean' => '9788478975747', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 496, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 496, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 168, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897575.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ingeniería de Software: Una perspectiva orientada a objetos.', 'autor' => 'BRAUDE, E.J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zpblj', 'isbn' => '978-84-7897-575-4', 'ean' => '9788478975754', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 169, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897578.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Informáticos Monousuario y Multiusuario.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7cn3w', 'isbn' => '978-84-7897-578-5', 'ean' => '9788478975785', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 424, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 424, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 170, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897579.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'E-Learning. Implantación de proyectos de formación on-line.', 'autor' => 'Fernandez Gomez, Eva I.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6f25h', 'isbn' => '978-84-7897-579-2', 'ean' => '9788478975792', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 171, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897580.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Macromedia Director MX.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ab21n', 'isbn' => '978-84-7897-580-8', 'ean' => '9788478975808', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 172, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897582.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual de Telecomunicaciones.', 'autor' => 'Huidobro Moya, José Manuel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ksym8', 'isbn' => '978-84-7897-582-2', 'ean' => '9788478975822', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 173, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897583.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine ASP.NET.', 'autor' => 'Pratdepadua Bufill, Joan Josep', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c0wr1', 'isbn' => '978-84-7897-583-9', 'ean' => '9788478975839', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 624, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 624, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 174, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897584.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Enciclopedia del lenguaje C++.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l08jf', 'isbn' => '978-84-7897-584-6', 'ean' => '9788478975846', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1120, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 1120, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 175, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897585.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Publicación en Internet y tecnología XML.', 'autor' => 'Rodriguez Zamora, Alonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m1sc4', 'isbn' => '978-84-7897-585-3', 'ean' => '9788478975853', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 176, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897586.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Edición y simulación de circuitos con OrCAD.', 'autor' => 'Calvo Rolle, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jma7w', 'isbn' => '978-84-7897-586-0', 'ean' => '9788478975860', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 177, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897587.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1242.00, 'titulo' => 'Análisis y diseño de Aplicaciones Informáticas de Gestión. Una perspectiva de Ingeniería del Softwar', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2003-10-23', 'fecha_public' => '2003-10-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9xcfa', 'isbn' => '978-84-7897-587-7', 'ean' => '9788478975877', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 736, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 736, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 178, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897589.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño de encuestas de opinión.', 'autor' => 'Martinez Martin, Valentín C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6iy47', 'isbn' => '978-84-7897-589-1', 'ean' => '9788478975891', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 179, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897590.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Macromedia FreeHand MX.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zg0tx', 'isbn' => '978-84-7897-590-7', 'ean' => '9788478975907', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 180, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897591.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => null, 'titulo' => 'El entorno económico. Cómo entenderlo y anticipar su evolución.', 'autor' => 'Alvarez Gonzalez, Alfonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b8uok', 'isbn' => '978-84-7897-591-4', 'ean' => '9788478975914', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 181, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897593.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 766.00, 'titulo' => 'Informática Básica.', 'autor' => 'Martin Martinez, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-01-26', 'fecha_public' => '2004-01-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_45ate', 'isbn' => '978-84-7897-593-8', 'ean' => '9788478975938', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 448, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 448, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 182, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897594.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 720.00, 'titulo' => 'Técnicas Criptográficas de Protección de Datos. 3ª Edición actualizada.', 'autor' => 'Fuster Sabater, Amparo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-05-26', 'fecha_public' => '2004-05-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r89zm', 'isbn' => '978-84-7897-594-5', 'ean' => '9788478975945', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 183, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897595.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'VHDL. Lenguaje para síntesis y modelado de circuitos. 2ª edición actualizada.', 'autor' => 'Pardo Carpio, Fernando', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i1ouc', 'isbn' => '978-84-7897-595-2', 'ean' => '9788478975952', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 184, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897598.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Primeros pasos con QuarkXPress 6.', 'autor' => 'Vizcaino Perez, Ricardo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_slfb4', 'isbn' => '978-84-7897-598-3', 'ean' => '9788478975983', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 185, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897599.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Adobe Acrobat 6 Professional Superfacil.', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c07v4', 'isbn' => '978-84-7897-599-0', 'ean' => '9788478975990', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 186, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897603.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1049.00, 'titulo' => 'Unix Programacion Avanzada, 3ª edicion.', 'autor' => 'Marquez Garcia, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-05-18', 'fecha_public' => '2004-05-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7jki5', 'isbn' => '978-84-7897-603-4', 'ean' => '9788478976034', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 632, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 632, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 187, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897604.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1210.00, 'titulo' => 'Ingeniería de la Automatización Industrial. 2ª Edición ampliada y actualizada.', 'autor' => 'Piedrafita Moreno, Ramón', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-02-10', 'fecha_public' => '2004-02-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j8d3r', 'isbn' => '978-84-7897-604-1', 'ean' => '9788478976041', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 712, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 712, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 188, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897606.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Microsoft Office Professional. Edición 2003, 2002 y 2000.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_il32o', 'isbn' => '978-84-7897-606-5', 'ean' => '9788478976065', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 632, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 632, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 189, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897607.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración de sitios y páginas Web con Macromedia Dreamweaver MX 2004.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eoqzl', 'isbn' => '978-84-7897-607-2', 'ean' => '9788478976072', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 190, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897611.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 668.00, 'titulo' => 'Sistemas de Información Geográfica y localización óptima de instalaciones y equipamientos.', 'autor' => 'Bosque Sendra, Joaquín', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-04-20', 'fecha_public' => '2004-04-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_slyh5', 'isbn' => '978-84-7897-611-9', 'ean' => '9788478976119', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 191, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897612.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine JavaScript.', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vfelx', 'isbn' => '978-84-7897-612-6', 'ean' => '9788478976126', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 192, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897616.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Windows Server 2003. Instalación y configuración avanzada.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gqw0e', 'isbn' => '978-84-7897-616-4', 'ean' => '9788478976164', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 792, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 792, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 193, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897617.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Tus Ideas lo cambian todo. El secreto del éxito', 'autor' => 'Getz, Isaac', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pqd62', 'isbn' => '978-84-7897-617-1', 'ean' => '9788478976171', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 194, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897618.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 563.00, 'titulo' => 'Diseño e ingeniería electrónica asistida con Protel DXP', 'autor' => 'Torres Portero, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-06-24', 'fecha_public' => '2004-06-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y92id', 'isbn' => '978-84-7897-618-8', 'ean' => '9788478976188', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 195, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897619.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 557.00, 'titulo' => 'Lógica Simbólica para Informáticos.', 'autor' => 'Julián Iranzo, Pascual', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-06-02', 'fecha_public' => '2004-06-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_23cvy', 'isbn' => '978-84-7897-619-5', 'ean' => '9788478976195', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 196, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897621.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 653.00, 'titulo' => 'Comunicaciones inalámbricas. Un enfoque aplicado.', 'autor' => 'Roldan Martinez, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-09-28', 'fecha_public' => '2004-09-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1sir5', 'isbn' => '978-84-7897-621-8', 'ean' => '9788478976218', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 197, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897622.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Cabri Géomètre II Plus. Una aventura en el mundo de la', 'autor' => 'Carrillo De Albornoz, Agustín', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_euwp8', 'isbn' => '978-84-7897-622-5', 'ean' => '9788478976225', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 198, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897625.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Intranets y TCP/IP con Microsoft Windows Server 2003.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v7l1z', 'isbn' => '978-84-7897-625-6', 'ean' => '9788478976256', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 936, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 936, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 199, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897626.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Operativos en entornos Monousuario y Multiusuario.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h7yfq', 'isbn' => '978-84-7897-626-3', 'ean' => '9788478976263', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 200, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897628.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 690.00, 'titulo' => 'Cracking sin secretos. Ataque y defensa de software.', 'autor' => 'ZEMÁNEK, J.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-09-24', 'fecha_public' => '2004-09-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6kdo9', 'isbn' => '978-84-7897-628-7', 'ean' => '9788478976287', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 201, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897630.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Wi-Fi. Cómo construir una red inalámbrica, 2ª edición.', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o2y6i', 'isbn' => '978-84-7897-630-0', 'ean' => '9788478976300', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 202, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897631.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 490.00, 'titulo' => 'Evolución artificial y robótica autónoma.', 'autor' => 'Santos Reyes, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-11-18', 'fecha_public' => '2004-11-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r26bt', 'isbn' => '978-84-7897-631-7', 'ean' => '9788478976317', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 203, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897634.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 590.00, 'titulo' => 'Desarrollo de juegos con J2ME.', 'autor' => 'Prieto Martin, Manuel Jesús', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-11-12', 'fecha_public' => '2004-11-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y1rem', 'isbn' => '978-84-7897-634-8', 'ean' => '9788478976348', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 204, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897635.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Instalación y mantenimiento de servicios de redes locales.', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fcpqh', 'isbn' => '978-84-7897-635-5', 'ean' => '9788478976355', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 512, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 512, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 205, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897636.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 765.00, 'titulo' => 'Tecnologías biométricas aplicadas a la seguridad.', 'autor' => 'Tapiador Mateos, Marino', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-03-15', 'fecha_public' => '2005-03-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b8uhi', 'isbn' => '978-84-7897-636-2', 'ean' => '9788478976362', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 456, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 456, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 206, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897637.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 720.00, 'titulo' => 'Mathematica 5. Aplicaciones para PC.', 'autor' => 'Carrillo De Albornoz, Agustín', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-04-15', 'fecha_public' => '2005-04-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x1dqa', 'isbn' => '978-84-7897-637-9', 'ean' => '9788478976379', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 207, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897638.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones en entornos de 4ª generación y con herramientas CASE.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n6vda', 'isbn' => '978-84-7897-638-6', 'ean' => '9788478976386', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 208, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897639.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Operaciones con bases de datos ofimáticas y corporativa', 'autor' => 'Martin Martinez, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ugrh', 'isbn' => '978-84-7897-639-3', 'ean' => '9788478976393', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 209, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897640.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mi PC en casa. Diversión, entretenimiento y ocio a su a', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ow32l', 'isbn' => '978-84-7897-640-9', 'ean' => '9788478976409', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 210, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897641.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Publicidad y entretenimiento en la Web.', 'autor' => 'Marti Parreño, José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d5alq', 'isbn' => '978-84-7897-641-6', 'ean' => '9788478976416', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 211, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897642.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 2. Interfaces gráficas y aplicaciones para Internet.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ebxr7', 'isbn' => '978-84-7897-642-3', 'ean' => '9788478976423', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 212, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897643.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Tecnologías de la información y de la comunicación.', 'autor' => 'Alonso Velasco, Juan Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jl240', 'isbn' => '978-84-7897-643-0', 'ean' => '9788478976430', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 488, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 488, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 213, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897644.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Oracle 10g. Administración y análisis de bases de datos', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6q2pn', 'isbn' => '978-84-7897-644-7', 'ean' => '9788478976447', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 692, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 692, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 214, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897646.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft C#. Lenguaje y aplicaciones.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e9tzl', 'isbn' => '978-84-7897-813-7', 'ean' => '9788478978137', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 215, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897647.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 760.00, 'titulo' => 'Unix y Linux. Guía práctica, 3ª edición.', 'autor' => 'Sanchez Prieto, Sebastián', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2004-10-22', 'fecha_public' => '2004-10-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kwzds', 'isbn' => '978-84-7897-647-8', 'ean' => '9788478976478', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 216, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897648.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine AutoCAD 2005.', 'autor' => 'Cogollor Gómez, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zaomg', 'isbn' => '978-84-7897-648-5', 'ean' => '9788478976485', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 720, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 720, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 217, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897649.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Linux.', 'autor' => 'Garcia Jimenez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_elc7f', 'isbn' => '978-84-7897-649-2', 'ean' => '9788478976492', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 218, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897651.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 618.00, 'titulo' => 'El criptosistema RSA', 'autor' => 'Duran Diaz, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-01-18', 'fecha_public' => '2005-01-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f7z89', 'isbn' => '978-84-7897-651-5', 'ean' => '9788478976515', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 219, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897652.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 903.00, 'titulo' => 'Arquitecturas de red multicapa: conexión de bases de da', 'autor' => 'Villapecellin Cid, Manuel Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-02-09', 'fecha_public' => '2005-02-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q0hks', 'isbn' => '978-84-7897-652-2', 'ean' => '9788478976522', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 520, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 520, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 220, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897654.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 739.00, 'titulo' => 'Estadística con SPSS para Windows versión 12.', 'autor' => 'Camacho Rosales, Juan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-09-13', 'fecha_public' => '2005-09-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kzo0q', 'isbn' => '978-84-7897-654-6', 'ean' => '9788478976546', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 221, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897655.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 774.00, 'titulo' => 'Diseño y desarrollo multimedia. Herramientas de Autor.', 'autor' => 'Colmenar Santos, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-03-28', 'fecha_public' => '2005-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ztulr', 'isbn' => '978-84-7897-655-3', 'ean' => '9788478976553', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 222, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897657.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 698.00, 'titulo' => 'Realidad virtual con AutoCAD, 3ds max y Combustion.', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-02-09', 'fecha_public' => '2005-02-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ip2o6', 'isbn' => '978-84-7897-657-7', 'ean' => '9788478976577', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 223, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897662.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 701.00, 'titulo' => 'Dirección y gestión de proyectos, 2ª edición.', 'autor' => 'Domingo Ajenjo, Alberto', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-03-15', 'fecha_public' => '2005-03-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3p6cv', 'isbn' => '978-84-7897-662-1', 'ean' => '9788478976621', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 224, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897663.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Internet. Libro del navegante, 4ª edición.', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_duqs5', 'isbn' => '978-84-7897-663-8', 'ean' => '9788478976638', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 225, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897664.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 497.00, 'titulo' => 'Guía de campo de Microsoft Windows XP (SP2'],
- ['id' => 226, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897665.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas y análisis de la información geográfica. Manual de autoaprendizaje con ArcGIS.', 'autor' => 'Moreno Jimenez, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w04ui', 'isbn' => '978-84-7897-665-2', 'ean' => '9788478976652', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 928, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 928, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 227, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897666.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1044.00, 'titulo' => 'Domine Microsoft Windows XP SP2, versiones Professional', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-05-26', 'fecha_public' => '2005-05-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kybmi', 'isbn' => '978-84-7897-666-9', 'ean' => '9788478976669', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 728, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 728, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 228, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897667.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 644.00, 'titulo' => 'Fotografía Digital y Photoshop.', 'autor' => 'Coviella Corripio, José M.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-06-29', 'fecha_public' => '2005-06-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1plti', 'isbn' => '978-84-7897-667-6', 'ean' => '9788478976676', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 229, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897668.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Gestión de proyectos con Microsoft Project.', 'autor' => 'Colmenar Santos, Antonio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qkhnx', 'isbn' => '978-84-7897-668-3', 'ean' => '9788478976683', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 230, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897669.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de SP ContaPlus Élite 2005/2004.', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xpebw', 'isbn' => '978-84-7897-669-0', 'ean' => '9788478976690', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 231, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897670.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Macromedia Studio MX 2004.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rtf1g', 'isbn' => '978-84-7897-670-6', 'ean' => '9788478976706', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 544, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 544, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 232, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897671.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 741.00, 'titulo' => 'Fotografía digital.', 'autor' => 'Strizinec, Gabriel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-07-13', 'fecha_public' => '2005-07-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_29zno', 'isbn' => '978-84-7897-671-3', 'ean' => '9788478976713', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 233, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897672.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 645.00, 'titulo' => 'Aprenda el lenguaje ActionScript 2.0 de Macromedia Flash MX2004 y Flash 8.', 'autor' => 'Cordero Benítez, José Andrés', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-10-18', 'fecha_public' => '2005-10-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0citk', 'isbn' => '978-84-7897-672-0', 'ean' => '9788478976720', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 234, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897673.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 619.00, 'titulo' => 'Sistemas de Información Geográfica y evaluación multicriterio en la ordenación del territorio, 2ª ed', 'autor' => 'Gomez Delgado, Montserrat', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-07-04', 'fecha_public' => '2005-07-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3r6z7', 'isbn' => '978-84-7897-673-7', 'ean' => '9788478976737', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 235, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897674.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Matemáticas con Microsoft EXCEL.', 'autor' => 'Barreras Alconchel, Miguel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x9sem', 'isbn' => '978-84-7897-674-4', 'ean' => '9788478976744', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 236, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897676.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 644.00, 'titulo' => 'Inteligencia artificial e ingeniería del conocimiento.', 'autor' => 'Pajares Martinsanz, Gonzálo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-08-29', 'fecha_public' => '2005-08-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pcj1r', 'isbn' => '978-84-7897-676-8', 'ean' => '9788478976768', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 237, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897677.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 529.00, 'titulo' => 'Electrónica Digital y Microprogramable.', 'autor' => 'Luque Sacaluga, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-06-13', 'fecha_public' => '2005-06-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1i2df', 'isbn' => '978-84-7897-677-5', 'ean' => '9788478976775', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 280, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 280, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 238, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897678.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 563.00, 'titulo' => 'Fundamentos de programación.', 'autor' => 'Carrasco Vallinot, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-06-29', 'fecha_public' => '2005-06-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gv35a', 'isbn' => '978-84-7897-678-2', 'ean' => '9788478976782', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 239, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897679.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 2. Manual de usuario y tutorial, 4ª edición actualizada a la versión J2SE 5.', 'autor' => 'Froufe Quintas, Agustín', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2p1us', 'isbn' => '978-84-7897-679-9', 'ean' => '9788478976799', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 852, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 852, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 240, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897682.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1125.00, 'titulo' => 'Programación en lenguajes estructurados.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-07-21', 'fecha_public' => '2005-07-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ki9fa', 'isbn' => '978-84-7897-682-9', 'ean' => '9788478976829', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 672, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 672, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 241, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897683.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Sistemas de Información. Herramientas prácticas para la gestión empresarial.', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0fc6x', 'isbn' => '978-84-7897-683-6', 'ean' => '9788478976836', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 242, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897684.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Operativos en entornos Monousuario y Multiusuario, 2ª edición.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c1bf4', 'isbn' => '978-84-7897-684-3', 'ean' => '9788478976843', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 504, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 504, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 243, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897685.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 513.00, 'titulo' => 'Dispositivos Lógicos Programables (PLD'],
- ['id' => 244, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897686.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 2. Curso de programación, 3ª edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_17f4q', 'isbn' => '978-84-7897-686-7', 'ean' => '9788478976867', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 880, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 880, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 245, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897687.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Visual Basic .NET. Lenguaje y aplicaciones.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ydrp4', 'isbn' => '978-84-7897-687-4', 'ean' => '9788478976874', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 520, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 520, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 246, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897688.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 966.00, 'titulo' => 'Redes de Área Local, 2ª edición.', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-10-10', 'fecha_public' => '2005-10-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mnu3v', 'isbn' => '978-84-7897-688-1', 'ean' => '9788478976881', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 564, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 564, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 247, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897690.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Creación de un portal con PHP y MySQL, 2ª edición.', 'autor' => 'Pavon Puertas, Jacobo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4np07', 'isbn' => '978-84-7897-690-4', 'ean' => '9788478976904', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 248, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897691.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microcontrolador PIC16F84. Desarrollo de proyectos, 2ª edición.', 'autor' => 'Remiro Dominguez, Fernando', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hieql', 'isbn' => '978-84-7897-691-1', 'ean' => '9788478976911', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 648, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 648, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 249, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897692.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 2. Interfaces gráficas y aplicaciones para Internet, 2ª edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o6xi7', 'isbn' => '978-84-7897-692-8', 'ean' => '9788478976928', 'editorial' => 'RA-MA Editorial', 'resumen' => 'estddd', 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 250, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897693.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Photoshop CS2 y CS.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a36l2', 'isbn' => '978-84-7897-693-5', 'ean' => '9788478976935', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 251, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897694.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 601.00, 'titulo' => 'Redes Locales, 4ª edición.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2005-11-14', 'fecha_public' => '2005-11-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x5n82', 'isbn' => '978-84-7897-694-2', 'ean' => '9788478976942', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 252, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897695.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Data Mining. Soluciones con Enterprise Miner.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_72w5j', 'isbn' => '978-84-7897-695-9', 'ean' => '9788478976959', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 253, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897696.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 406.00, 'titulo' => 'Diseño gráfico con CATIA. Curso práctico con los módulos Sketcher y Part Design.', 'autor' => 'Lambas Perez, Jesús', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-01-26', 'fecha_public' => '2006-01-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6gvxh', 'isbn' => '978-84-7897-696-6', 'ean' => '9788478976966', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 254, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897697.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mi PC. Actualización, configuración, mantenimiento y reparación. 3ª Edición.', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_543ks', 'isbn' => '978-84-7897-697-3', 'ean' => '9788478976973', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 255, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897698.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprenda Microsoft Windows Server 2003, 2ª edición.', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6as1b', 'isbn' => '978-84-7897-698-0', 'ean' => '9788478976980', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 916, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 916, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 256, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897699.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración de Sistemas Operativos Windows y Linux. Un enfoque práctico.', 'autor' => 'Gómez López, Julio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cdfq1', 'isbn' => '978-84-7897-699-7', 'ean' => '9788478976997', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 257, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897700.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2006. Curso práctico.', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5jtuv', 'isbn' => '978-84-7897-700-0', 'ean' => '9788478977000', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 456, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 456, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 258, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897701.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Navegar en Internet: Macromedia Dreamweaver 8.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ytnfj', 'isbn' => '978-84-7897-701-7', 'ean' => '9788478977017', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 259, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897702.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Diseño de páginas Web con XHTML', 'autor' => 'JavaScript y CSS (Navegar en Internet'],
- ['id' => 260, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897703.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 612.00, 'titulo' => 'Firewall. La seguridad de la banda ancha.', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-01-16', 'fecha_public' => '2006-01-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dcmgp', 'isbn' => '978-84-7897-703-1', 'ean' => '9788478977031', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 261, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897704.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Combustion 4.', 'autor' => 'Cotelo Oñate, Carlos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f67qr', 'isbn' => '978-84-7897-704-8', 'ean' => '9788478977048', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 262, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897705.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine AutoCAD 2006.', 'autor' => 'Cogollor Gómez, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_62uq0', 'isbn' => '978-84-7897-705-5', 'ean' => '9788478977055', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 784, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 784, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 263, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897706.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 433.00, 'titulo' => 'Primeros pasos con OpenOffice.', 'autor' => 'Molla Palleja, Ricard', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-03-27', 'fecha_public' => '2006-03-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_biluj', 'isbn' => '978-84-7897-706-2', 'ean' => '9788478977062', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 264, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897707.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Enciclopedia de Microsoft Visual C#', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ocbh4', 'isbn' => '978-84-7897-707-9', 'ean' => '9788478977079', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 968, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 968, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 265, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897708.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 636.00, 'titulo' => 'Edición de audio con Adobe Audition. Curso práctico.', 'autor' => 'Lopez Roldan, Ricardo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-06-13', 'fecha_public' => '2006-06-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9t5ji', 'isbn' => '978-84-7897-708-6', 'ean' => '9788478977086', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 266, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897709.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 976.00, 'titulo' => 'Redes UMTS. Arquitectura, movilidad y servicios.', 'autor' => 'McOuat, Jamie', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-03-08', 'fecha_public' => '2006-03-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_iht15', 'isbn' => '978-84-7897-709-3', 'ean' => '9788478977093', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 267, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897710.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Enciclopedia de Microsoft Visual Basic .NET.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tiuyc', 'isbn' => '978-84-7897-710-9', 'ean' => '9788478977109', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 976, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 976, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 268, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897711.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual práctico de secretariado.', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wg36o', 'isbn' => '978-84-7897-711-6', 'ean' => '9788478977116', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 269, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897712.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Marketing. Relacional, directo e interactivo.', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_shal9', 'isbn' => '978-84-7897-712-3', 'ean' => '9788478977123', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 270, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897713.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Flash 8 Basic y Professional. Curso práctico.', 'autor' => 'Escusol Lou, Mª Josefa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mzjk7', 'isbn' => '978-84-7897-713-0', 'ean' => '9788478977130', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 768, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 768, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 271, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897714.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 438.00, 'titulo' => 'Sistemas de Cableado Estructurado.', 'autor' => 'Oliva Alonso, Nuria', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-05-16', 'fecha_public' => '2006-05-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ldpqf', 'isbn' => '978-84-7897-714-7', 'ean' => '9788478977147', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 272, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897715.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de Macromedia Flash 8.', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sqzlv', 'isbn' => '978-84-7897-715-4', 'ean' => '9788478977154', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 273, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897716.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración de sitios y páginas Web con Macromedia Dreamweaver 8.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1k2xt', 'isbn' => '978-84-7897-716-1', 'ean' => '9788478977161', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 274, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897717.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 664.00, 'titulo' => 'Electrónica General. (Ciclos Formativos: Grado Medio'],
- ['id' => 275, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897718.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 855.00, 'titulo' => 'Electrónica Digital: Lógica Digital Integrada. Teoría, problemas y simulación.', 'autor' => 'Mur Perez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-05-22', 'fecha_public' => '2006-05-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sl384', 'isbn' => '978-84-7897-718-5', 'ean' => '9788478977185', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 276, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897719.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SP ContaPlus Élite 2006. Contabilidad Informatizada.', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e6sk2', 'isbn' => '978-84-7897-719-2', 'ean' => '9788478977192', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 504, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 504, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 277, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897720.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Photoshop para fotógrafos y artistas (y todo tipo de usuarios', 'autor' => 'versiones CS2 y CS'],
- ['id' => 278, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897721.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SP PymePlus Élite 2006. Administración y gestión informatizada de la empresa con SP ContaPlus y SP F', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qx24s', 'isbn' => '978-84-7897-721-5', 'ean' => '9788478977215', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 664, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 664, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 279, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897722.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Instalación y Mantenimiento de Servicios de Internet.', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1igmd', 'isbn' => '978-84-7897-722-2', 'ean' => '9788478977222', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 280, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897723.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programador Java 2 Certificado. Curso práctico.', 'autor' => 'Martin Sierra, Antonio J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_abfe2', 'isbn' => '978-84-7897-723-9', 'ean' => '9788478977239', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 624, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 624, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 281, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897724.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo de SP ContaPlus Élite 2006/2005', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2imal', 'isbn' => '978-84-7897-724-6', 'ean' => '9788478977246', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 282, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897725.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Dreamweaver 8. Curso práctico.', 'autor' => 'Escusol Lou, Mª Josefa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rau0g', 'isbn' => '978-84-7897-725-3', 'ean' => '9788478977253', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 472, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 472, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 283, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897726.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Implantación y mantenimiento de aplicaciones ofimáticas y corporativas', 'autor' => 'Peña Perez, Rosario', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_38we0', 'isbn' => '978-84-7897-726-0', 'ean' => '9788478977260', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 284, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897727.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 924.00, 'titulo' => 'Simulación y Electrónica Analógica. Prácticas y problemas, 2ª edición', 'autor' => 'Hilario Caballero, Adolfo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-10-11', 'fecha_public' => '2006-10-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bnr2d', 'isbn' => '978-84-7897-727-7', 'ean' => '9788478977277', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 285, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897728.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft Windows Server 2003. Instalación y configuración Avanzada. 2ª Edición', 'autor' => 'Martínez Ruiz, Miguel Ángel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bkmv6', 'isbn' => '978-84-7897-728-4', 'ean' => '9788478977284', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 796, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 796, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 286, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897729.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domótica e inmótica. Viviendas y Edificios Inteligentes. 2ª Edición', 'autor' => 'FRANCISCO JAVIER VÁZQUEZ SERRANO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zlkvi', 'isbn' => '978-84-7897-729-1', 'ean' => '9788478977291', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 287, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897730.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 719.00, 'titulo' => 'Problemas de Investigación Operativa', 'autor' => 'Rios Insua, Sixto', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-10-11', 'fecha_public' => '2006-10-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kul2j', 'isbn' => '978-84-7897-730-7', 'ean' => '9788478977307', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 428, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 428, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 288, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897731.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Enciclopedia de la Seguridad Informática', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d1cpn', 'isbn' => '978-84-7897-731-4', 'ean' => '9788478977314', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 696, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 696, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 289, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897732.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft SQL Server 2005. Administración y análisis de bases de datos.', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_exp4k', 'isbn' => '978-84-7897-732-1', 'ean' => '9788478977321', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 800, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 800, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 290, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897733.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1418.00, 'titulo' => 'Tecnología y diseño de bases de datos.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-11-07', 'fecha_public' => '2006-11-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dbes7', 'isbn' => '978-84-7897-733-8', 'ean' => '9788478977338', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 980, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 980, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 291, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897734.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Sistemas Informáticos', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pe40z', 'isbn' => '978-84-7897-734-5', 'ean' => '9788478977345', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 292, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897735.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Electrónica Digital. Introducción a la Lógica Digital: Teoría, Problemas y Simulación. 2ª Edición', 'autor' => 'Acha Alegre, Santiago E.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m3k7q', 'isbn' => '978-84-7897-735-2', 'ean' => '9788478977352', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 598, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 598, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 293, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897736.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1200.00, 'titulo' => 'El libro del PC. Desde las aplicaciones basicas a la reparación avanzada', 'autor' => 'Cernuda Menéndez, José Higinio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-10-26', 'fecha_public' => '2006-10-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4vouz', 'isbn' => '978-84-7897-736-9', 'ean' => '9788478977369', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 704, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 704, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 294, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897737.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft C#. Curso de Programación', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4dep6', 'isbn' => '978-84-7897-737-6', 'ean' => '9788478977376', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 866, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 866, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 295, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897738.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 657.00, 'titulo' => 'Estructura de Computadores. Problemas Resueltos.', 'autor' => 'Cordoba Cabeza, Mª Luisa', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-10-31', 'fecha_public' => '2006-10-31', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vqbrk', 'isbn' => '978-84-7897-738-3', 'ean' => '9788478977383', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 296, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897739.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Macromedia Studio. Versiones 8 y MX 2004', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dvne8', 'isbn' => '978-84-7897-739-0', 'ean' => '9788478977390', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 440, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 440, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 297, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897740.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft Visual Basic. NET Lenguaje y Aplicaciones 2ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v2yo3', 'isbn' => '978-84-7897-740-6', 'ean' => '9788478977406', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 520, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 520, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 298, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897741.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de Campo de SP FacturaPlus Elite 2006', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4b2nr', 'isbn' => '978-84-7897-741-3', 'ean' => '9788478977413', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 299, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897742.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SP NominaPlus Elite 2006/2005', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tvgw8', 'isbn' => '978-84-7897-742-0', 'ean' => '9788478977420', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 462, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 462, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 300, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897743.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 811.00, 'titulo' => 'Redes Neuronales y Sistemas Borrosos. 3ª Edición', 'autor' => 'Martin Del Brio, Bonifacio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-11-28', 'fecha_public' => '2006-11-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yaehi', 'isbn' => '978-84-7897-743-7', 'ean' => '9788478977437', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 442, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 442, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 301, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897744.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de Campo de Linux. 2ª Edición', 'autor' => 'Garcia Jimenez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nwg0b', 'isbn' => '978-84-7897-744-4', 'ean' => '9788478977444', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 302, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897745.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 761.00, 'titulo' => 'Java 2: Lenguaje y Aplicaciones', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-12-13', 'fecha_public' => '2006-12-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i53n7', 'isbn' => '978-84-7897-745-1', 'ean' => '9788478977451', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 303, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897746.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hardware Microinformatico. 5ª Edición Actualizada', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_omitn', 'isbn' => '978-84-7897-746-8', 'ean' => '9788478977468', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 304, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897747.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes CISCO: Guía de estudio para la certificación CCNA 640-801', 'autor' => 'Ariganello, Ernesto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_udm8z', 'isbn' => '978-84-7897-747-5', 'ean' => '9788478977475', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 305, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897748.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 436.00, 'titulo' => 'El Arte de la Intrusión', 'autor' => 'MITNICK, K.D.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-11-30', 'fecha_public' => '2006-11-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x7e2c', 'isbn' => '978-84-7897-748-2', 'ean' => '9788478977482', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 376, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 376, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 306, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897749.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad en Sistemas Operativos Windows y Linux.', 'autor' => 'Gómez López, Julio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t17ns', 'isbn' => '978-84-7897-749-9', 'ean' => '9788478977499', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 307, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897750.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Microsoft Windows Server 2003', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r792a', 'isbn' => '978-84-7897-750-5', 'ean' => '9788478977505', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 508, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 508, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 308, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897751.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine PHP y MySQL. Programación dinámica en el lado del servidor', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dyobx', 'isbn' => '978-84-7897-751-2', 'ean' => '9788478977512', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 309, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897752.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Dreamweaver 8. Desarrollo de páginas web dinámicas con PHP y MySQL', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_asjmn', 'isbn' => '978-84-7897-752-9', 'ean' => '9788478977529', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 310, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897753.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Medios de Pago y Operaciones de Financiación', 'autor' => 'Alvarez Gonzalez, Alfonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7xbe9', 'isbn' => '978-84-7897-753-6', 'ean' => '9788478977536', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 347, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 347, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 311, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897754.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Creación de un portal con PHP y MySQL. 3ª edición.', 'autor' => 'Pavon Puertas, Jacobo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ad2y5', 'isbn' => '978-84-7897-754-3', 'ean' => '9788478977543', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 254, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 312, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897755.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 848.00, 'titulo' => 'Desarrollo de aplicaciones Web con ASP.NET 2.0', 'autor' => 'Martin Sierra, Antonio J.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-02-08', 'fecha_public' => '2007-02-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_melbq', 'isbn' => '978-84-7897-755-0', 'ean' => '9788478977550', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 313, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897756.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 800.00, 'titulo' => 'Domine HTML y DHTML. 2ª Edición', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-04-24', 'fecha_public' => '2007-04-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_78jfo', 'isbn' => '978-84-7897-756-7', 'ean' => '9788478977567', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 414, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 414, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 314, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897757.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2007. Curso práctico.', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ukphz', 'isbn' => '978-84-7897-757-4', 'ean' => '9788478977574', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 315, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897758.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Guía de campo Microsoft Windows Vista', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v8bn4', 'isbn' => '978-84-7897-758-1', 'ean' => '9788478977581', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 316, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897759.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft Windows Vista. Guía de Usuario', 'autor' => 'Pérez López, César', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qn7es', 'isbn' => '978-84-7897-759-8', 'ean' => '9788478977598', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 317, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897760.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1100.00, 'titulo' => 'Domine JavaScript. 2ª Edición', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-02-28', 'fecha_public' => '2007-02-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jz1y0', 'isbn' => '978-84-7897-760-4', 'ean' => '9788478977604', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 318, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897761.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación Orientada a Objetos con C++. 4ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c24gt', 'isbn' => '978-84-7897-761-1', 'ean' => '9788478977611', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 648, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 648, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 319, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897762.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'C/C++ Curso de Programación 3ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2zbej', 'isbn' => '978-84-7897-762-8', 'ean' => '9788478977628', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 708, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 708, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 320, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897763.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprenda Microsoft Windows Server 2003 3ª ed', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xkr0s', 'isbn' => '978-84-7897-763-5', 'ean' => '9788478977635', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 904, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 904, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 321, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897764.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprenda el lenguaje ActionScript 2.0 de Macromedia Flash 8.', 'autor' => 'Cordero Benítez, José Andrés', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j0fl2', 'isbn' => '978-84-7897-764-2', 'ean' => '9788478977642', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 322, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897765.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Informáticos Monousuario y Multiusuario.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3e4xf', 'isbn' => '978-84-7897-765-9', 'ean' => '9788478977659', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 560, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 323, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897766.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Sistemas Informáticos Monousuario y Multiusuario.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ntas', 'isbn' => '978-84-7897-766-6', 'ean' => '9788478977666', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 84, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 84, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 324, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897767.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 970.00, 'titulo' => 'Gobierno de las Tecnologías y los Sistemas de Información.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-04-02', 'fecha_public' => '2007-04-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_unmzi', 'isbn' => '978-84-7897-767-3', 'ean' => '9788478977673', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 488, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 488, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 325, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897768.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas Informáticos Multiusuario y en Red.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5epsq', 'isbn' => '978-84-7897-768-0', 'ean' => '9788478977680', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 628, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 628, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 326, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897769.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Sistemas Informáticos Multiusuario y en Red.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_acm2n', 'isbn' => '978-84-7897-769-7', 'ean' => '9788478977697', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 90, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 90, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 327, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897770.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Instalación y Mantenimiento de Equipos y Sistemas Informáticos.', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_od56w', 'isbn' => '978-84-7897-770-3', 'ean' => '9788478977703', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 460, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 460, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 328, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897771.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Instalación y Mantenimiento de equipos y sistemas informáticos', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0mfch', 'isbn' => '978-84-7897-771-0', 'ean' => '9788478977710', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 100, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 99, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 329, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897772.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Instalación y mantenimiento de servicios de Redes Locales.', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wmy1s', 'isbn' => '978-84-7897-772-7', 'ean' => '9788478977727', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 436, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 436, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 330, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897773.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Instalación y mantenimiento de servicios de Redes Locales.', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i0vnw', 'isbn' => '978-84-7897-773-4', 'ean' => '9788478977734', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 82, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 82, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 331, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897774.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Operaciones con Bases de Datos Ofimáticas y Corporativas', 'autor' => 'Martin Martinez, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v74xo', 'isbn' => '978-84-7897-774-1', 'ean' => '9788478977741', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 340, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 332, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897775.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Operaciones con Bases de Datos Ofimáticas y Corporativas.', 'autor' => 'Martin Martinez, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t5yv3', 'isbn' => '978-84-7897-775-8', 'ean' => '9788478977758', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 333, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897776.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis y Diseño Detallado de Aplicaciones Informáticas de Gestión.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8p1so', 'isbn' => '978-84-7897-776-5', 'ean' => '9788478977765', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 334, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897777.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Análisis y Diseño Detallado de Aplicaciones Informáticas de Gestión.', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pf2ls', 'isbn' => '978-84-7897-777-2', 'ean' => '9788478977772', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 335, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897778.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 820.00, 'titulo' => 'Sistemas Telemáticos.', 'autor' => 'Santos Gonzalez, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-23', 'fecha_public' => '2007-06-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rvhto', 'isbn' => '978-84-7897-778-9', 'ean' => '9788478977789', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 390, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 390, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 336, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897779.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 203.00, 'titulo' => 'Guía Didáctica. Sistemas Telemáticos.', 'autor' => 'Santos Gonzalez, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6ir7v', 'isbn' => '978-84-7897-779-6', 'ean' => '9788478977796', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 104, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 104, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 337, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897780.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Formación y Orientación Laboral. (Grado Medio'],
- ['id' => 338, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didactica: Formación y Orientación Laboral. G.M.', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_89atn', 'isbn' => '978-84-7897-781-9', 'ean' => '9788478977819', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 339, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897782.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Formación y Orientación Laboral. (Grado Superior'],
- ['id' => 340, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897783.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didactica. Formación y Orientación Laboral. G.S.', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i5htd', 'isbn' => '978-84-7897-783-3', 'ean' => '9788478977833', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 166, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 341, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897784.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Informáticas. G.M', 'autor' => 'LAURA RAYA GONZÁLEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k50t7', 'isbn' => '978-84-7897-784-0', 'ean' => '9788478977840', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 600, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 600, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 342, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897785.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Aplicaciones Informáticas.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h3vn6', 'isbn' => '978-84-7897-785-7', 'ean' => '9788478977857', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 84, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 84, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 343, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897786.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Informáticas de Propósito General. (Grado Medio'],
- ['id' => 344, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897787.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Aplicaciones Informáticas de Propósito General. (Grado Medio'],
- ['id' => 345, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897788.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Informáticas de Propósito General.', 'autor' => 'Raya González, Laura', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e2c0g', 'isbn' => '978-84-7897-788-8', 'ean' => '9788478977888', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 600, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 600, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 346, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897789.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Aplicaciones Informáticas de Propósito General. (Grado Superior'],
- ['id' => 347, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897790.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 865.00, 'titulo' => 'MySQL para Windows y Linux. 2ª Edición.', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-04-24', 'fecha_public' => '2007-04-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dkf3n', 'isbn' => '978-84-7897-790-1', 'ean' => '9788478977901', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 472, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 472, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 348, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897791.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 89.00, 'titulo' => 'Guía Didáctica- Implantación y mantenimiento de aplicaciones ofimáticas y corporativas', 'autor' => 'Peña Perez, Rosario', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vj0e5', 'isbn' => '978-84-7897-791-8', 'ean' => '9788478977918', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 39, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 39, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 349, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897792.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 129.00, 'titulo' => 'Guía Didáctica. Programación en Lenguajes Estructurados', 'autor' => 'Criado Clavero, Mª Asunción', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xza7f', 'isbn' => '978-84-7897-792-5', 'ean' => '9788478977925', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 68, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 68, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 350, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897793.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 215.00, 'titulo' => 'Guía Didáctica. Electrónica Digital y Microprogramable', 'autor' => 'Luque Sacaluga, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bhs0e', 'isbn' => '978-84-7897-793-2', 'ean' => '9788478977932', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 117, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 117, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 351, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897794.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 144.00, 'titulo' => 'Guía Didáctica. Electrónica General', 'autor' => 'Gomez Gomez, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d7mu4', 'isbn' => '978-84-7897-794-9', 'ean' => '9788478977949', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 76, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 76, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 352, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897795.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 234.00, 'titulo' => 'Guía Didáctica. Fundamentos de Programación', 'autor' => 'Santos Gonzalez, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l4nm2', 'isbn' => '978-84-7897-795-6', 'ean' => '9788478977956', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 132, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 132, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 353, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897796.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 214.00, 'titulo' => 'Guía Didáctica. Redes de Área Local 2ªED', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z8jin', 'isbn' => '978-84-7897-796-3', 'ean' => '9788478977963', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 109, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 109, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 354, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897797.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 85.00, 'titulo' => 'Guía Didáctica. Sistemas Operativos en entornos Monousuario y Multiusuario', 'autor' => 'Raya González, Laura', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6bsax', 'isbn' => '978-84-7897-797-0', 'ean' => '9788478977970', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 40, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 40, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 355, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897798.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 137.00, 'titulo' => 'Guía Didáctica. Instalación y Mantenimiento de Servicios de Internet', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-28', 'fecha_public' => '2007-08-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1s58o', 'isbn' => '978-84-7897-798-7', 'ean' => '9788478977987', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 72, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 72, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 356, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897799.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 919.00, 'titulo' => 'SP ContaPlus Élite 2007. Contabilidad Informatizada', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-04-24', 'fecha_public' => '2007-04-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2o31q', 'isbn' => '978-84-7897-799-4', 'ean' => '9788478977994', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 524, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 524, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 357, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897800.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 859.00, 'titulo' => 'Tecnología de Control de Procesos con FOUNDATION Fieldbus', 'autor' => 'Ferreiro Garcia, Ramón', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-05', 'fecha_public' => '2007-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4su5e', 'isbn' => '978-84-7897-800-7', 'ean' => '9788478978007', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 448, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 448, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 358, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897801.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 919.00, 'titulo' => 'El Arte de Dirigir Proyectos. 2ª Edición', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-05', 'fecha_public' => '2007-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_drn7o', 'isbn' => '978-84-7897-801-4', 'ean' => '9788478978014', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 359, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897802.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 430.00, 'titulo' => 'Estrategia, Planificación y Control en la Empresa', 'autor' => 'Alvarez Gonzalez, Alfonso', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-05', 'fecha_public' => '2007-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1kdlw', 'isbn' => '978-84-7897-802-1', 'ean' => '9788478978021', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 360, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897803.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 414.00, 'titulo' => 'Estadística descriptiva con Microsoft Excel 2007', 'autor' => 'Carrascal Arranz, Ursicino', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-05', 'fecha_public' => '2007-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3wbcz', 'isbn' => '978-84-7897-803-8', 'ean' => '9788478978038', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 361, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897804.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1002.00, 'titulo' => 'Sistemas Avanzados de Fabricación Distribuida', 'autor' => 'Aguayo González, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-05', 'fecha_public' => '2007-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q02dx', 'isbn' => '978-84-7897-804-5', 'ean' => '9788478978045', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 600, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 600, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 362, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897805.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 416.00, 'titulo' => 'Las Macros en Excel.', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-12', 'fecha_public' => '2007-06-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uxykf', 'isbn' => '978-84-7897-805-2', 'ean' => '9788478978052', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 363, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897806.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 395.00, 'titulo' => 'Gestión de Proyectos con Microsoft Project 2007', 'autor' => 'Vara De Llano, Alfonso', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-07-09', 'fecha_public' => '2007-07-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_in2tw', 'isbn' => '978-84-7897-806-9', 'ean' => '9788478978069', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 364, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897807.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 563.00, 'titulo' => 'Wi-Fi. Instalación, Seguridad y Aplicaciones', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-06-15', 'fecha_public' => '2007-06-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7ajt5', 'isbn' => '978-84-7897-807-6', 'ean' => '9788478978076', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 365, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897808.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 919.00, 'titulo' => 'Hacking y Seguridad en Internet.', 'autor' => 'Ramos Varón, Antonio Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-07-09', 'fecha_public' => '2007-07-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_iqvop', 'isbn' => '978-84-7897-808-3', 'ean' => '9788478978083', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 366, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897809.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 843.00, 'titulo' => 'Fabricas del Software: Experiencias, Tecnologías y Organización', 'autor' => 'JAVIER GARZÁS PARRA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-04', 'fecha_public' => '2007-12-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1pdyi', 'isbn' => '978-84-7897-809-0', 'ean' => '9788478978090', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 555, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 555, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 367, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897810.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1465.00, 'titulo' => 'Enciclopedia de Microsoft Visual C#. 2ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-07-25', 'fecha_public' => '2007-07-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_blu1y', 'isbn' => '978-84-7897-810-6', 'ean' => '9788478978106', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1012, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 1012, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 368, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897811.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 622.00, 'titulo' => 'AutoCAD 2008 paso a paso. Trabajando en 2 dimensiones.', 'autor' => 'Ábalos Bergillos, Rafaél', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-21', 'fecha_public' => '2007-08-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ri5d8', 'isbn' => '978-84-7897-811-3', 'ean' => '9788478978113', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 364, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 364, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 369, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897812.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1202.00, 'titulo' => 'Visual Basic.NET Curso de Programación', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-22', 'fecha_public' => '2007-08-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a1eri', 'isbn' => '978-84-7897-812-0', 'ean' => '9788478978120', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 802, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 802, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 370, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897813.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 956.00, 'titulo' => 'Microsoft C#. Lenguaje y Aplicaciones. 2ª Edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-09-18', 'fecha_public' => '2007-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zqxiw', 'isbn' => '978-84-7897-813-7', 'ean' => '9788478978137', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 498, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 498, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 371, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897814.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 209.00, 'titulo' => 'David y Goliat. Las tribulaciones de un director de proyecto.', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-09-25', 'fecha_public' => '2007-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5simf', 'isbn' => '978-84-7897-814-4', 'ean' => '9788478978144', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 149, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 149, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 372, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897815.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 597.00, 'titulo' => 'Mi PC. Actualización, configuración, mantenimiento y reparación. 4ª Edición actualizada', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-11-27', 'fecha_public' => '2007-11-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zn406', 'isbn' => '978-84-7897-815-1', 'ean' => '9788478978151', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 348, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 348, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 373, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897816.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1043.00, 'titulo' => 'SP PymePlus Élite 2007. Administración y gestión informatizada de la', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-08-29', 'fecha_public' => '2007-08-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e7ndq', 'isbn' => '978-84-7897-816-8', 'ean' => '9788478978168', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 374, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897817.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1071.00, 'titulo' => 'Programador Certificado JAVA 2. Curso práctico. 2ª Edición', 'autor' => 'Martin Sierra, Antonio J.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-15', 'fecha_public' => '2007-10-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1s6nt', 'isbn' => '978-84-7897-817-5', 'ean' => '9788478978175', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 620, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 620, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 375, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897818.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 571.00, 'titulo' => 'AJAX en J2EE', 'autor' => 'Martin Sierra, Antonio J.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-09-28', 'fecha_public' => '2007-09-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_87rl6', 'isbn' => '978-84-7897-818-2', 'ean' => '9788478978182', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 376, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897819.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 290.00, 'titulo' => 'Guía de campo de Word 2003', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-20', 'fecha_public' => '2008-02-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0b5fw', 'isbn' => '978-84-7897-819-9', 'ean' => '9788478978199', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 377, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897820.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 313.00, 'titulo' => 'Guía de campo de Excel 2003', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-20', 'fecha_public' => '2008-02-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kzuco', 'isbn' => '978-84-7897-820-5', 'ean' => '9788478978205', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 378, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897821.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 307.00, 'titulo' => 'Guía de campo de Access 2003', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-20', 'fecha_public' => '2008-02-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uk6to', 'isbn' => '978-84-7897-821-2', 'ean' => '9788478978212', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 379, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897822.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 904.00, 'titulo' => 'Photoshop CS3 Superfacil', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-09-18', 'fecha_public' => '2007-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j9275', 'isbn' => '978-84-7897-822-9', 'ean' => '9788478978229', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 472, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 472, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 380, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897823.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 286.00, 'titulo' => 'Guía de Campo de Word 2007', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-25', 'fecha_public' => '2007-10-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1a8i5', 'isbn' => '978-84-7897-823-6', 'ean' => '9788478978236', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 381, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897824.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 362.00, 'titulo' => 'David y Goliat. Iniciación del Proyecto', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-11', 'fecha_public' => '2007-10-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_swvpy', 'isbn' => '978-84-7897-824-3', 'ean' => '9788478978243', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 382, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897825.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 506.00, 'titulo' => 'Métodos Matemáticos. Ecuaciones diferenciales. Teoría y ejercicios resueltos.', 'autor' => 'Alberca Bjerregaard, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-30', 'fecha_public' => '2007-10-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nudw3', 'isbn' => '978-84-7897-825-0', 'ean' => '9788478978250', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 383, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897826.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 558.00, 'titulo' => 'Métodos Matemáticos. Integración múltiple. Teoría y ejercicios resueltos.', 'autor' => 'Alberca Bjerregaard, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-30', 'fecha_public' => '2007-10-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5rm7v', 'isbn' => '978-84-7897-826-7', 'ean' => '9788478978267', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 384, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897827.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 349.00, 'titulo' => 'Guía de Campo de Access 2007', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-03', 'fecha_public' => '2007-12-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ykc48', 'isbn' => '978-84-7897-827-4', 'ean' => '9788478978274', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 385, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897828.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 607.00, 'titulo' => 'Ejercicios Resueltos de Visión por Computador', 'autor' => 'Pajares Martinsanz, Gonzálo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-11-20', 'fecha_public' => '2007-11-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3xazo', 'isbn' => '978-84-7897-828-1', 'ean' => '9788478978281', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 354, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 354, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 386, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897829.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 265.00, 'titulo' => 'Guía Laboral: nóminas, contratos y Seguridad Social', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-10', 'fecha_public' => '2007-12-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ud2if', 'isbn' => '978-84-7897-829-8', 'ean' => '9788478978298', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 198, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 198, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 387, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897830.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 321.00, 'titulo' => 'La Bolsa y la Vida. 2ª Edición', 'autor' => 'Sebastian De Erice, Ignacio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-10-16', 'fecha_public' => '2007-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l4kfm', 'isbn' => '978-84-7897-830-4', 'ean' => '9788478978304', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 153, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 153, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 388, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897831.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1167.00, 'titulo' => 'Visión por computador. Imágenes Digitales y Aplicaciones. 2ª Edición', 'autor' => 'GONZALO PAJARES MARTINSANZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-10', 'fecha_public' => '2008-09-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2pwji', 'isbn' => '978-84-7897-831-1', 'ean' => '9788478978311', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 764, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 764, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 389, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897832.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 381.00, 'titulo' => 'Las Macros en Access', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-04', 'fecha_public' => '2007-12-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yj1v0', 'isbn' => '978-84-7897-832-8', 'ean' => '9788478978328', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 390, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897833.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 272.00, 'titulo' => 'Vídeo Digital. Trucos para aficionados.', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-05', 'fecha_public' => '2007-12-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rv8ao', 'isbn' => '978-84-7897-833-5', 'ean' => '9788478978335', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 391, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897834.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 662.00, 'titulo' => 'Domine PHP 5', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-08', 'fecha_public' => '2008-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_25kbz', 'isbn' => '978-84-7897-834-2', 'ean' => '9788478978342', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 396, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 396, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 392, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897835.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1034.00, 'titulo' => 'Desarrollo de Bases de Datos: casos prácticos desde el análisis a la implementación', 'autor' => 'Cuadra Fernandez, Dolores', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-11-27', 'fecha_public' => '2007-11-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fixnj', 'isbn' => '978-84-7897-835-9', 'ean' => '9788478978359', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 568, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 568, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 393, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897836.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 858.00, 'titulo' => 'Domine Windows Vista', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-03-13', 'fecha_public' => '2008-03-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5r2th', 'isbn' => '978-84-7897-836-6', 'ean' => '9788478978366', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 522, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 522, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 394, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897837.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 407.00, 'titulo' => 'Guía de Campo de Excel 2007', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-03', 'fecha_public' => '2007-12-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_js91r', 'isbn' => '978-84-7897-837-3', 'ean' => '9788478978373', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 395, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897838.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1383.00, 'titulo' => 'Sistemas y Análisis de la Información Geográfica. Manual de autoaprendizaje con ArcGIS. 2ª. Edición', 'autor' => 'ANTONIO MORENO JIMÉNEZ; Mª EUGENIA PRIETO FLORES; PEDRO MARTÍNEZ SUÁREZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-14', 'fecha_public' => '2008-01-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_86n0z', 'isbn' => '978-84-7897-838-0', 'ean' => '9788478978380', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 940, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 940, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 396, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897839.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 597.00, 'titulo' => 'Aplicación del nuevo Plan General de Contabilidad', 'autor' => 'Gutierrez Viguera, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-14', 'fecha_public' => '2008-01-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fi53z', 'isbn' => '978-84-7897-839-7', 'ean' => '9788478978397', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 404, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 404, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 397, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897840.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1591.00, 'titulo' => 'Instalaciones Eléctricas en Baja Tensión: Diseño, Cálculo, Dirección, Seguridad y Montaje', 'autor' => 'Colmenar Santos, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-10', 'fecha_public' => '2008-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lg20x', 'isbn' => '978-84-7897-840-3', 'ean' => '9788478978403', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 954, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 954, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 398, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897841.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 604.00, 'titulo' => 'Finanzas Básicas con Excel', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-18', 'fecha_public' => '2008-01-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ziyup', 'isbn' => '978-84-7897-841-0', 'ean' => '9788478978410', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 278, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 278, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 399, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897842.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1150.00, 'titulo' => 'Oracle 10g. Administración y Análisis de Bases de Datos. 2ª edición', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2007-12-12', 'fecha_public' => '2007-12-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uvl40', 'isbn' => '978-84-7897-842-7', 'ean' => '9788478978427', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 712, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 712, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 400, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897843.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 388.00, 'titulo' => 'David y Goliat. Planificación preliminar del Proyecto', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-22', 'fecha_public' => '2008-01-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8mvhy', 'isbn' => '978-84-7897-843-4', 'ean' => '9788478978434', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 401, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897844.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 372.00, 'titulo' => 'Navegar en Internet: Adobe Dreamweaver CS3', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-22', 'fecha_public' => '2008-01-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_06wrs', 'isbn' => '978-84-7897-844-1', 'ean' => '9788478978441', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 402, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897845.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 283.00, 'titulo' => 'Guía de Campo de Wi-Fi', 'autor' => 'Gómez López, Julio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-28', 'fecha_public' => '2008-01-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_etsi0', 'isbn' => '978-84-7897-845-8', 'ean' => '9788478978458', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 403, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897846.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 702.00, 'titulo' => 'Oracle PL/SQL', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-07', 'fecha_public' => '2008-02-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vabd4', 'isbn' => '978-84-7897-846-5', 'ean' => '9788478978465', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 414, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 414, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 404, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897847.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 403.00, 'titulo' => 'Guía de Campo de SP ContaPlus Élite 2008', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-01-29', 'fecha_public' => '2008-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jous6', 'isbn' => '978-84-7897-847-2', 'ean' => '9788478978472', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 405, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897848.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 511.00, 'titulo' => 'Técnicas de Configuración de Routers CISCO', 'autor' => 'ERNESTO ARIGANELLO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-07', 'fecha_public' => '2008-02-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gh07s', 'isbn' => '978-84-7897-848-9', 'ean' => '9788478978489', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 276, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 406, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897849.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1079.00, 'titulo' => 'Auditoría de Tecnologías y Sistemas de Información.', 'autor' => 'MARIO G. PIATTINI VELTHUIS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-07', 'fecha_public' => '2008-02-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pqy6k', 'isbn' => '978-84-7897-849-6', 'ean' => '9788478978496', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 732, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 732, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 407, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897850.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1002.00, 'titulo' => 'Flash CS3. Curso práctico.', 'autor' => 'Oros Cabello, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-19', 'fecha_public' => '2008-02-19', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_78csd', 'isbn' => '978-84-7897-850-2', 'ean' => '9788478978502', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 408, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897852.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 768.00, 'titulo' => 'Supuestos contables resueltos en base al nuevo Plan General de Contabilidad', 'autor' => 'Couso Ruano, Alvaro', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-16', 'fecha_public' => '2008-04-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6lt5o', 'isbn' => '978-84-7897-852-6', 'ean' => '9788478978526', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 462, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 462, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 409, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897853.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1069.00, 'titulo' => 'Domine Microsoft Office 2007', 'autor' => 'FRANCISCO PASCUAL GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-03-05', 'fecha_public' => '2008-03-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ywg0j', 'isbn' => '978-84-7897-853-3', 'ean' => '9788478978533', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 640, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 640, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 410, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897854.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 274.00, 'titulo' => 'Guía de Campo de PowerPoint 2007', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-03-27', 'fecha_public' => '2008-03-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q9nsi', 'isbn' => '978-84-7897-854-0', 'ean' => '9788478978540', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 411, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897855.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 506.00, 'titulo' => 'Struts', 'autor' => 'Martin Sierra, Antonio J.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-28', 'fecha_public' => '2008-04-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g3dzv', 'isbn' => '978-84-7897-855-7', 'ean' => '9788478978557', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 300, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 300, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 412, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897856.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 486.00, 'titulo' => 'Diseño de páginas Web con XHTML, JavaScript y CSS. 2ª edición', 'autor' => 'Oros Cabello, Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-16', 'fecha_public' => '2008-04-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hru3i', 'isbn' => '978-84-7897-856-4', 'ean' => '9788478978564', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 380, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 380, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 413, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897857.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1010.00, 'titulo' => 'SP PymePlus Élite 2008', 'autor' => 'RAÚL MORUECO GÓMEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-14', 'fecha_public' => '2008-04-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d8ou7', 'isbn' => '978-84-7897-857-1', 'ean' => '9788478978571', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 632, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 632, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 414, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897858.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 551.00, 'titulo' => 'Medición y Estimación del Software: Técnicas y métodos para mejorar la calidad y la productividad', 'autor' => 'FÉLIX ÓSCAR GARCÍA RUBIO; JAVIER GARZÁS PARRA; MARCELA FABIANA GENERO BOCCO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-22', 'fecha_public' => '2008-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ci392', 'isbn' => '978-84-7897-858-8', 'ean' => '9788478978588', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 415, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897859.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1124.00, 'titulo' => 'JAVA 2: Interfaces Graficas y Aplicaciones para Internet. 3ª edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-05-06', 'fecha_public' => '2008-05-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mfjze', 'isbn' => '978-84-7897-859-5', 'ean' => '9788478978595', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 656, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 656, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 416, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897860.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 816.00, 'titulo' => 'Dreamweaver CS3. Curso práctico.', 'autor' => 'Oros Cabello, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-28', 'fecha_public' => '2008-04-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_iwgj4', 'isbn' => '978-84-7897-860-1', 'ean' => '9788478978601', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 494, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 417, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897861.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1755.00, 'titulo' => 'Photoshop CS3. Curso Completo', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-25', 'fecha_public' => '2008-04-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i17uc', 'isbn' => '978-84-7897-861-8', 'ean' => '9788478978618', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 946, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 946, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 418, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897862.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 430.00, 'titulo' => 'Guía de campo de SP FacturaPlus Elite 2008', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-04-14', 'fecha_public' => '2008-04-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bvyxk', 'isbn' => '978-84-7897-862-5', 'ean' => '9788478978625', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 338, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 338, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 419, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897863.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 939.00, 'titulo' => 'SP ContaPlus Élite 2008. Contabilidad informatizada', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-05-12', 'fecha_public' => '2008-05-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gnxhi', 'isbn' => '978-84-7897-863-2', 'ean' => '9788478978632', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 420, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897864.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 630.00, 'titulo' => 'Desarrollo de funciones en el sistema informático', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tuyof', 'isbn' => '978-84-7897-864-9', 'ean' => '9788478978649', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 421, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897865.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 737.00, 'titulo' => 'Sistemas Electrónicos de Información.', 'autor' => 'Cernuda Menéndez, José Higinio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4rzc6', 'isbn' => '978-84-7897-865-6', 'ean' => '9788478978656', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 382, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 382, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 422, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897866.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 512.00, 'titulo' => 'Contabilidad General y Tesorería', 'autor' => 'Albarran Francisco, José Miguel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_up2ig', 'isbn' => '978-84-7897-866-3', 'ean' => '9788478978663', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 423, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897867.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1193.00, 'titulo' => 'Implantación de Aplicaciones Informáticas de Gestión', 'autor' => 'Riballo Arenas, Miguel Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r1ckv', 'isbn' => '978-84-7897-867-0', 'ean' => '9788478978670', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 636, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 636, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 424, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897868.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 799.00, 'titulo' => 'Arquitectura de equipos y sistemas informáticos', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c3n2t', 'isbn' => '978-84-7897-868-7', 'ean' => '9788478978687', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 484, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 484, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 425, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897869.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 182.00, 'titulo' => 'Guía Didáctica. Desarrollo de Funciones en el Sistema Informático', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mgbrt', 'isbn' => '978-84-7897-869-4', 'ean' => '9788478978694', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 94, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 94, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 426, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897870.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 104.00, 'titulo' => 'Guía Didáctica. Sistemas electrónicos de información', 'autor' => 'Cernuda Menéndez, José Higinio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_itbce', 'isbn' => '978-84-7897-870-0', 'ean' => '9788478978700', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 46, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 46, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 427, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897871.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 269.00, 'titulo' => 'Guía Didáctica. Contabilidad general y tesorería', 'autor' => 'Albarran Francisco, José Miguel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0isdy', 'isbn' => '978-84-7897-871-7', 'ean' => '9788478978717', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 428, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897872.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 345.00, 'titulo' => 'Guía Didáctica. Implantación de aplicaciones informáticas de gestión', 'autor' => 'Riballo Arenas, Miguel Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k7i5a', 'isbn' => '978-84-7897-872-4', 'ean' => '9788478978724', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 429, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897873.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 240.00, 'titulo' => 'Guía Didáctica. Arquitectura de equipos y sistemas informáticos', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i95tm', 'isbn' => '978-84-7897-873-1', 'ean' => '9788478978731', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 132, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 132, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 430, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897874.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 715.00, 'titulo' => 'Photoshop CS3. Curso Avanzado', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-06-13', 'fecha_public' => '2008-06-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4wvtc', 'isbn' => '978-84-7897-874-8', 'ean' => '9788478978748', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 426, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 426, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 431, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897875.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1178.00, 'titulo' => 'Java 2: Manual de Usuario y Tutorial. 5ª Edición', 'autor' => 'Froufe Quintas, Agustín', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-06-23', 'fecha_public' => '2008-06-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6mvtq', 'isbn' => '978-84-7897-875-5', 'ean' => '9788478978755', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 694, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 694, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 432, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897876.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 410.00, 'titulo' => 'David y Goliat. Programación de referencia del Proyecto', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-05-12', 'fecha_public' => '2008-05-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tjkge', 'isbn' => '978-84-7897-876-2', 'ean' => '9788478978762', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 198, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 198, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 433, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897877.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 642.00, 'titulo' => 'Formación y orientación laboral', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-03', 'fecha_public' => '2008-07-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mbgqy', 'isbn' => '978-84-7897-877-9', 'ean' => '9788478978779', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 338, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 338, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 434, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897878.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 202.00, 'titulo' => 'Guía Didáctica. Formación y Orientación Laboral/GRADO MEDIO', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c5ik8', 'isbn' => '978-84-7897-878-6', 'ean' => '9788478978786', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 106, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 106, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 435, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897879.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 344.00, 'titulo' => 'Guía de Campo de Flash CS3', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-06-23', 'fecha_public' => '2008-06-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p50a4', 'isbn' => '978-84-7897-879-3', 'ean' => '9788478978793', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 436, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897880.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 453.00, 'titulo' => 'Aplicaciones .NET multiplataforma', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-06-12', 'fecha_public' => '2008-06-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r7c0i', 'isbn' => '978-84-7897-880-9', 'ean' => '9788478978809', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 437, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897881.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 380.00, 'titulo' => 'Guía de campo de SP ContaPlus Élite 2008. 2ª edición', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-11', 'fecha_public' => '2008-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u64hc', 'isbn' => '978-84-7897-881-6', 'ean' => '9788478978816', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 438, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897882.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 675.00, 'titulo' => 'Linux. Guía Practica', 'autor' => 'Sanchez Prieto, Sebastián', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-13', 'fecha_public' => '2008-10-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ulpvo', 'isbn' => '978-84-7897-882-3', 'ean' => '9788478978823', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 439, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897883.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 311.00, 'titulo' => 'El ABC de la energía solar fotovoltaica en España', 'autor' => 'Torres Portero, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-09', 'fecha_public' => '2008-07-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ol75q', 'isbn' => '978-84-7897-883-0', 'ean' => '9788478978830', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 440, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897884.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 483.00, 'titulo' => 'Potencia hidráulica controlada por PLC', 'autor' => 'Martínez Sánchez, Victoriano A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-09', 'fecha_public' => '2008-07-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yhsba', 'isbn' => '978-84-7897-884-7', 'ean' => '9788478978847', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 283, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 441, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897885.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 591.00, 'titulo' => 'Redes CISCO: Guía de estudio para la certificación CCNA 640-802', 'autor' => 'Ariganello, Ernesto', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-15', 'fecha_public' => '2008-07-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q9wmh', 'isbn' => '978-84-7897-885-4', 'ean' => '9788478978854', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 442, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897886.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 709.00, 'titulo' => 'Redes locales. Instalación y configuración básicas', 'autor' => 'JOSÉ LUIS RAYA CABRERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-07-21', 'fecha_public' => '2008-07-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hbga1', 'isbn' => '978-84-7897-886-1', 'ean' => '9788478978861', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 443, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897887.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1052.00, 'titulo' => 'RADIUS / AAA / 802.1X. Sistemas basados en la autenticación para Windows y Linux', 'autor' => 'YAGO FERNÁNDEZ HANSEN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-15', 'fecha_public' => '2008-10-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mrlgh', 'isbn' => '978-84-7897-887-8', 'ean' => '9788478978878', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 638, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 638, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 444, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897888.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 471.00, 'titulo' => 'Guía de campo de InDesign CS3', 'autor' => 'Coviella Corripio, José M.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-08-27', 'fecha_public' => '2008-08-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wr5hk', 'isbn' => '978-84-7897-888-5', 'ean' => '9788478978885', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 366, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 366, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 445, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897889.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 279.00, 'titulo' => 'Matemática financiera para el nuevo Plan General de Contabilidad', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-08-27', 'fecha_public' => '2008-08-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_71ni8', 'isbn' => '978-84-7897-889-2', 'ean' => '9788478978892', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 446, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897890.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 331.00, 'titulo' => 'Principios de seguridad en el comercio electrónico', 'autor' => 'Puentes Calvo, Juan Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-08-27', 'fecha_public' => '2008-08-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yibr1', 'isbn' => '978-84-7897-890-8', 'ean' => '9788478978908', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 447, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897891.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 379.00, 'titulo' => 'Guía de Campo de Photoshop CS3', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-07', 'fecha_public' => '2008-10-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k036g', 'isbn' => '978-84-7897-891-5', 'ean' => '9788478978915', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 286, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 286, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 448, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897892.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 753.00, 'titulo' => 'Domine Excel 2007', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-07', 'fecha_public' => '2008-10-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z17rp', 'isbn' => '978-84-7897-892-2', 'ean' => '9788478978922', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 457, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 457, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 449, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897893.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1012.00, 'titulo' => 'Domine XHTML 1.0 y CSS 2', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-13', 'fecha_public' => '2008-10-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ics3b', 'isbn' => '978-84-7897-893-9', 'ean' => '9788478978939', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 598, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 598, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 450, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897894.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 563.00, 'titulo' => 'Contawin CS 2008', 'autor' => 'De Prado Morante, Sandra R.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-09-25', 'fecha_public' => '2008-09-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7itv3', 'isbn' => '978-84-7897-894-6', 'ean' => '9788478978946', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 330, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 330, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 451, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897895.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 678.00, 'titulo' => 'Simulación. Métodos y aplicaciones (2ª edición'],
- ['id' => 452, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897896.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 818.00, 'titulo' => 'Instala, administra, securiza y virtualiza entornos Linux', 'autor' => 'Ramos Varón, Antonio Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-07', 'fecha_public' => '2008-10-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vp2hk', 'isbn' => '978-84-7897-896-0', 'ean' => '9788478978960', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 506, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 506, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 453, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897897.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 777.00, 'titulo' => 'Manual Práctico de Secretariado. 2ª Edición.', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-04-27', 'fecha_public' => '2009-04-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1kw56', 'isbn' => '978-84-7897-897-7', 'ean' => '9788478978977', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 416, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 454, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897898.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 246.00, 'titulo' => 'Second Life. Invéntese una vida digital y conviva con ella', 'autor' => 'CARO', 'autor_entidad' => 'A.', 'traductor' => 'ISLAS', 'ilustrador' => 'O. (ALFAOMEGA'],
- ['id' => 455, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897899.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 403.00, 'titulo' => 'Guía laboral: nóminas', 'autor' => 'contratos y Seguridad Social (2ª edición'],
- ['id' => 456, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897900.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 232.00, 'titulo' => 'Tablas dinámicas en Excel 2007', 'autor' => 'Menchén Peñuela, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-24', 'fecha_public' => '2008-10-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ir3ax', 'isbn' => '978-84-7897-900-4', 'ean' => '9788478979004', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 171, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 171, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 457, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897901.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 505.00, 'titulo' => 'Competisoft. Mejora de Procesos Software para Pequeñas y Medianas Empresas y Proyectos', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-10-23', 'fecha_public' => '2008-10-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c4w2g', 'isbn' => '978-84-7897-901-1', 'ean' => '9788478979011', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 458, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897902.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 581.00, 'titulo' => 'VoIP y Asterisk: redescubriendo la telefonía', 'autor' => 'JULIO GÓMEZ LÓPEZ; FRANCISCO GIL MONTOYA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-11-24', 'fecha_public' => '2008-11-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7xnwa', 'isbn' => '978-84-7897-902-8', 'ean' => '9788478979028', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 348, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 348, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 459, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897903.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1154.00, 'titulo' => 'Aprenda Microsoft Windows Server 2008', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-11-26', 'fecha_public' => '2008-11-26', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xjlof', 'isbn' => '978-84-7897-903-5', 'ean' => '9788478979035', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 706, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 706, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 460, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897904.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 589.00, 'titulo' => 'Estructura de computadores. Procesadores MIPS y su ensamblador', 'autor' => 'Alvarez Bermejo, José Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-12-03', 'fecha_public' => '2008-12-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zl5oi', 'isbn' => '978-84-7897-904-2', 'ean' => '9788478979042', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 461, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897905.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 486.00, 'titulo' => 'Guía de campo de AutoCAD 2008', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-12-12', 'fecha_public' => '2008-12-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eazx4', 'isbn' => '978-84-7897-905-9', 'ean' => '9788478979059', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 388, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 388, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 462, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897906.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 343.00, 'titulo' => 'Guía de campo de VPN con Windows Server 2003', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-12-12', 'fecha_public' => '2008-12-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k6jnw', 'isbn' => '978-84-7897-906-6', 'ean' => '9788478979066', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 463, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897907.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 249.00, 'titulo' => 'David y Goliat. Realización y Control del Proyecto', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-01-29', 'fecha_public' => '2009-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tvlic', 'isbn' => '978-84-7897-907-3', 'ean' => '9788478979073', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 464, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897908.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 306.00, 'titulo' => 'David y Goliat. Cierre del proyecto', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-01-29', 'fecha_public' => '2009-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i6bye', 'isbn' => '978-84-7897-908-0', 'ean' => '9788478979080', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 465, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897909.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 896.00, 'titulo' => 'Domine Access 2007', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-01-28', 'fecha_public' => '2009-01-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0hl8w', 'isbn' => '978-84-7897-909-7', 'ean' => '9788478979097', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 544, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 544, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 466, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897910.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1159.00, 'titulo' => 'Photoshop CS4 Superfácil', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-01-28', 'fecha_public' => '2009-01-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_saoh8', 'isbn' => '978-84-7897-910-3', 'ean' => '9788478979103', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 558, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 558, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 467, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897911.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 557.00, 'titulo' => 'Algoritmos evolutivos: un enfoque práctico', 'autor' => 'Araujo Serna, Lourdes', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-03-03', 'fecha_public' => '2009-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1o8np', 'isbn' => '978-84-7897-911-0', 'ean' => '9788478979110', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 330, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 330, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 468, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897912.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 283.00, 'titulo' => 'Marketing 2.0. El nuevo marketing en la Web de las Redes Sociales', 'autor' => 'JUAN MANUEL MAQUEIRA MARÍN; SEBASTIÁN BRUQUE CÁMARA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-03-03', 'fecha_public' => '2009-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_40ovw', 'isbn' => '978-84-7897-912-7', 'ean' => '9788478979127', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 469, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897913.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 548.00, 'titulo' => 'Photoshop CS4 Curso Práctico', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-03-13', 'fecha_public' => '2009-03-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xf6dq', 'isbn' => '978-84-7897-913-4', 'ean' => '9788478979134', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 470, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual Práctico de Administración', 'autor' => 'RAÚL MORUECO GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_svpr6', 'isbn' => '978-84-7897-914-1', 'ean' => '9788478979141', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 471, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897915.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1421.00, 'titulo' => 'Enciclopedia del lenguaje C++. 2ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-04-17', 'fecha_public' => '2009-04-17', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j860m', 'isbn' => '978-84-7897-915-8', 'ean' => '9788478979158', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 856, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 856, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 472, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897916.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 357.00, 'titulo' => 'Fundamentos de la Prospectiva en Sistemas de Información', 'autor' => 'Bañuls Silvera, Víctor Amadeo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-05-04', 'fecha_public' => '2009-05-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uvmab', 'isbn' => '978-84-7897-916-5', 'ean' => '9788478979165', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 473, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897917.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1211.00, 'titulo' => 'Microcontrolador PIC16F84. Desarrollo de proyectos. 3ª edición', 'autor' => 'FERNANDO REMIRO DOMÍNGUEZ; ENRIQUE PALACIOS MUNICIO; LUCAS JOSÉ LÓPEZ PÉREZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-04-17', 'fecha_public' => '2009-04-17', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fpqh2', 'isbn' => '978-84-7897-917-2', 'ean' => '9788478979172', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 648, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 648, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 474, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897918.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 566.00, 'titulo' => 'IslaWin Gestión 2007 Classic. Curso Práctico', 'autor' => 'De Prado Morante, Sandra R.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-04-17', 'fecha_public' => '2009-04-17', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1c42v', 'isbn' => '978-84-7897-918-9', 'ean' => '9788478979189', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 475, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897919.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1171.00, 'titulo' => 'SP ContaPlus Élite 2009. Contabilidad informatizada', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-04-27', 'fecha_public' => '2009-04-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zvjhk', 'isbn' => '978-84-7897-919-6', 'ean' => '9788478979196', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 632, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 632, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 476, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897920.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 501.00, 'titulo' => 'Marketing electrónico para PYMES', 'autor' => 'ANA Mª CRUZ HERRADÓN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-01', 'fecha_public' => '2009-07-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k1hdy', 'isbn' => '978-84-7897-920-2', 'ean' => '9788478979202', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 477, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897921.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 597.00, 'titulo' => 'Sistemas operativos monopuesto', 'autor' => 'Raya González, Laura', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b8lma', 'isbn' => '978-84-7897-921-9', 'ean' => '9788478979219', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 478, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897922.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 833.00, 'titulo' => 'Gestión contable de la empresa: Nuevo Plan General Contable y Contaplus Élite 2009', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-02', 'fecha_public' => '2009-07-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jvgwm', 'isbn' => '978-84-7897-922-6', 'ean' => '9788478979226', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 506, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 506, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 479, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897923.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 865.00, 'titulo' => 'Redes Locales', 'autor' => 'FRANCISCO JOSÉ MOLINA ROBLES', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tcy46', 'isbn' => '978-84-7897-923-3', 'ean' => '9788478979233', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 524, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 524, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 480, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897924.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 966.00, 'titulo' => 'Aplicaciones ofimáticas', 'autor' => 'LAURA RAYA GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ywl3p', 'isbn' => '978-84-7897-924-0', 'ean' => '9788478979240', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 481, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897925.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 258.00, 'titulo' => 'Guía Didactica. Redes Locales R.D.1691/2007', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8uzo1', 'isbn' => '978-84-7897-925-7', 'ean' => '9788478979257', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 128, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 128, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 482, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897926.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 175.00, 'titulo' => 'Guía Didactica. Aplicaciones Ofimaticas R.D. 1691/2007', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4t9zq', 'isbn' => '978-84-7897-926-4', 'ean' => '9788478979264', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 78, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 78, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 483, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897927.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didactica. Sistemas Operativos Monopuesto. RD.1691/2007', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h4e6v', 'isbn' => '978-84-7897-927-1', 'ean' => '9788478979271', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 50, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 50, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 484, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897928.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 389.00, 'titulo' => 'Guía de Campo Contaplus Élite 2009', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7qknv', 'isbn' => '978-84-7897-928-8', 'ean' => '9788478979288', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 485, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897929.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1392.00, 'titulo' => 'Redes Privadas Virtuales', 'autor' => 'Andrés Alonso, Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9tkgw', 'isbn' => '978-84-7897-929-5', 'ean' => '9788478979295', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 864, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 864, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 486, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897930.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 603.00, 'titulo' => 'AutoCAD 2009 Paso a Paso', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0jv5q', 'isbn' => '978-84-7897-930-1', 'ean' => '9788478979301', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 487, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897931.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1006.00, 'titulo' => 'El libro del PC. 2ª edición', 'autor' => 'Cernuda Menéndez, José Higinio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-21', 'fecha_public' => '2009-09-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sq8ga', 'isbn' => '978-84-7897-931-8', 'ean' => '9788478979318', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 656, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 656, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 488, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897932.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1090.00, 'titulo' => 'Domine Microsoft SQL Server 2008', 'autor' => 'Pérez López, César', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-03', 'fecha_public' => '2009-12-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2csi1', 'isbn' => '978-84-7897-932-5', 'ean' => '9788478979325', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 678, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 678, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 489, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897933.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1072.00, 'titulo' => 'Photoshop CS4. Curso avanzado', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-07-16', 'fecha_public' => '2009-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x4ijb', 'isbn' => '978-84-7897-933-2', 'ean' => '9788478979332', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 626, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 626, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 490, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897934.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1054.00, 'titulo' => 'Flash CS4. Curso práctico', 'autor' => 'Orós Escusol, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-11-02', 'fecha_public' => '2009-11-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h5p1b', 'isbn' => '978-84-7897-934-9', 'ean' => '9788478979349', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 628, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 628, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 491, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897935.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 325.00, 'titulo' => 'U-Learning. Desde las aplicaciones básicas a la reparación avanzada', 'autor' => 'Fernandez Gomez, Eva I.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qbx5g', 'isbn' => '978-84-7897-935-6', 'ean' => '9788478979356', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 492, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897936.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 358.00, 'titulo' => 'Guía de Campo de Photoshop CS4', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ugfeh', 'isbn' => '978-84-7897-936-3', 'ean' => '9788478979363', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 493, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897937.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 458.00, 'titulo' => 'Sistemas de Información. Herramientas prácticas para la gestión. 3ª Edición', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-10-09', 'fecha_public' => '2009-10-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4ongw', 'isbn' => '978-84-7897-937-0', 'ean' => '9788478979370', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 360, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 494, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897938.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 427.00, 'titulo' => 'Lógica para la Computación', 'autor' => 'De Ledesma Otamendi, Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3fbut', 'isbn' => '978-84-7897-938-7', 'ean' => '9788478979387', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 180, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 495, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897939.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 287.00, 'titulo' => 'Geogebra', 'autor' => 'Carrillo De Albornoz, Agustín', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-09-18', 'fecha_public' => '2009-09-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a7stx', 'isbn' => '978-84-7897-939-4', 'ean' => '9788478979394', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 496, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897940.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 524.00, 'titulo' => 'Cibernética Aplicada', 'autor' => 'Salido Tercero, Jesús', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-10-23', 'fecha_public' => '2009-10-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z9r04', 'isbn' => '978-84-7897-940-0', 'ean' => '9788478979400', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 497, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897941.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 321.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (3ª Edición'],
- ['id' => 498, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897942.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 544.00, 'titulo' => 'El libro del portátil', 'autor' => 'Cernuda Menéndez, José Higinio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-11-02', 'fecha_public' => '2009-11-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cpgwo', 'isbn' => '978-84-7897-942-4', 'ean' => '9788478979424', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 499, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897943.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1196.00, 'titulo' => 'Análisis de Circuitos Lineales. 3ª Edición', 'autor' => 'Lopez Ferreras, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-14', 'fecha_public' => '2009-12-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i5n4g', 'isbn' => '978-84-7897-943-1', 'ean' => '9788478979431', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 764, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 764, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 500, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897944.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 760.00, 'titulo' => 'Ubuntu Linux', 'autor' => 'Serrat Olmos, Manuel David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-10-23', 'fecha_public' => '2009-10-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4x2sw', 'isbn' => '978-84-7897-944-8', 'ean' => '9788478979448', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 468, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 468, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 501, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897945.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 653.00, 'titulo' => 'Plataforma educativa MOODLE. Administración y gestión', 'autor' => 'Sánchez Rojo, Ignacio Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-11-30', 'fecha_public' => '2009-11-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_emqgf', 'isbn' => '978-84-7897-945-5', 'ean' => '9788478979455', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 406, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 406, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 502, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897946.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 362.00, 'titulo' => 'Cómo ser un buen profesional eléctrico', 'autor' => 'Company Girones, Rafael', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-05-18', 'fecha_public' => '2010-05-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jnac3', 'isbn' => '978-84-7897-946-2', 'ean' => '9788478979462', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 503, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897947.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 808.00, 'titulo' => 'Domine Microsoft Windows Server 2008', 'autor' => 'JOSÉ LUIS RAYA CABRERA; LAURA RAYA GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-11-20', 'fecha_public' => '2009-11-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t0453', 'isbn' => '978-84-7897-947-9', 'ean' => '9788478979479', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 502, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 502, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 504, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897948.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 376.00, 'titulo' => 'SCILAB. Programación y Simulación', 'autor' => 'Calvo Rolle, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-11-20', 'fecha_public' => '2009-11-20', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y680z', 'isbn' => '978-84-7897-948-6', 'ean' => '9788478979486', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 505, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897949.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 308.00, 'titulo' => 'Guía de Campo de Máquinas Virtuales', 'autor' => 'JOSÉ LUIS RAYA CABRERA; MANUEL SANTOS GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-04', 'fecha_public' => '2009-12-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i3b54', 'isbn' => '978-84-7897-949-3', 'ean' => '9788478979493', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 506, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897950.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 338.00, 'titulo' => 'Ubuntu Linux. Instalación y configuración básica en equipos y servidores', 'autor' => 'Carazo Gil, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-10', 'fecha_public' => '2009-12-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cv2b6', 'isbn' => '978-84-7897-950-9', 'ean' => '9788478979509', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 507, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897951.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Acrobat 9 Professional Superfacil', 'autor' => 'Cordoba Moreno, Enrique', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f4nd1', 'isbn' => '978-84-7897-951-6', 'ean' => '9788478979516', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 380, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 380, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 508, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897952.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 256.00, 'titulo' => 'Navegar en Internet: Cómo sobrevivir en la Red', 'autor' => 'Rodríguez De Sepúlveda, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-10', 'fecha_public' => '2009-12-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x047l', 'isbn' => '978-84-7897-952-3', 'ean' => '9788478979523', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 509, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897953.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 184.00, 'titulo' => 'Guía de campo de Office 2007. Vínculos de información', 'autor' => 'Pérez Sanz, Reyes', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-10', 'fecha_public' => '2009-12-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mq0kw', 'isbn' => '978-84-7897-953-0', 'ean' => '9788478979530', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 510, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897954.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 461.00, 'titulo' => 'El ABC de la energía solar térmica en España. Funcionamiento básico y aplicaciones prácticas', 'autor' => 'Torres Portero, Miguel Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2009-12-10', 'fecha_public' => '2009-12-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_duhbg', 'isbn' => '978-84-7897-954-7', 'ean' => '9788478979547', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 511, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897955.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 334.00, 'titulo' => 'Guía de Campo de Hackers. Aprende a atacar y a defenderte', 'autor' => 'Gómez López, Julio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2oc0i', 'isbn' => '978-84-7897-955-4', 'ean' => '9788478979554', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 512, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897956.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 377.00, 'titulo' => 'Guía de campo de QuarkXPress 8', 'autor' => 'Coviella Corripio, José M.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pqzes', 'isbn' => '978-84-7897-956-1', 'ean' => '9788478979561', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 513, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897957.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 492.00, 'titulo' => 'Aplicaciones Web. Un enfoque práctico', 'autor' => 'Roldan Martinez, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vaz54', 'isbn' => '978-84-7897-957-8', 'ean' => '9788478979578', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:20', 'deleted_at' => null],
- ['id' => 514, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897958.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 279.00, 'titulo' => 'Cómo encontrar trabajo', 'autor' => 'Zurita Espinosa, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_159so', 'isbn' => '978-84-7897-958-5', 'ean' => '9788478979585', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 166, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 515, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897959.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 282.00, 'titulo' => 'Trading Room: Especulación inteligente', 'autor' => 'ALEJANDRO DE LUIS GARCÍA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qdwka', 'isbn' => '978-84-7897-959-2', 'ean' => '9788478979592', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 160, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 160, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 516, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897960.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1351.00, 'titulo' => 'Fábricas de Software: Experiencias, Tecnologías y Organización. 2ª Edición ampliada y actualizada', 'autor' => 'MARIO G. PIATTINI VELTHUIS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lrvw2', 'isbn' => '978-84-7897-960-8', 'ean' => '9788478979608', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 820, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 820, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 517, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897961.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1091.00, 'titulo' => 'Calidad del producto y proceso software', 'autor' => 'Piattini Velthuis, Mario G.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-02-11', 'fecha_public' => '2010-02-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f67jk', 'isbn' => '978-84-7897-961-5', 'ean' => '9788478979615', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 668, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 668, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 518, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897962.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 226.00, 'titulo' => 'Guía de Campo de Microsoft Office Publisher 2007', 'autor' => 'Cruz Herradón, Ana M.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-03-10', 'fecha_public' => '2010-03-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y5jlo', 'isbn' => '978-84-7897-962-2', 'ean' => '9788478979622', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 120, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 120, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 519, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897963.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 493.00, 'titulo' => 'La Innovación: Factor clave del éxito empresarial', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-03-10', 'fecha_public' => '2010-03-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bzxq5', 'isbn' => '978-84-7897-963-9', 'ean' => '9788478979639', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 520, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897964.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 876.00, 'titulo' => 'Windows Server 2008. Configuración avanzada', 'autor' => 'JOSÉ LUIS RAYA CABRERA; LAURA RAYA GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-03-15', 'fecha_public' => '2010-03-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xrwqm', 'isbn' => '978-84-7897-964-6', 'ean' => '9788478979646', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 548, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 548, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 521, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897965.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 383.00, 'titulo' => 'Navegar en Internet: Adobe Dreamweaver CS4', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-03-10', 'fecha_public' => '2010-03-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mjsya', 'isbn' => '978-84-7897-965-3', 'ean' => '9788478979653', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 522, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897966.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1483.00, 'titulo' => 'Redes CISCO. CCNP a fondo. Guía de estudio para profesionales', 'autor' => 'ERNESTO ARIGANELLO; ENRIQUE BARRIENTOS SEVILLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-04-14', 'fecha_public' => '2010-04-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pxdt0', 'isbn' => '978-84-7897-966-0', 'ean' => '9788478979660', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 922, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 922, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 523, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897967.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 735.00, 'titulo' => 'Electrónica Digital: Lógica Digital Integrada. Teoría, problemas y simulación. 2ª Edición', 'autor' => 'Acha Alegre, Santiago E.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-04-28', 'fecha_public' => '2010-04-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k5f6w', 'isbn' => '978-84-7897-967-7', 'ean' => '9788478979677', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 442, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 442, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 524, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897968.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 693.00, 'titulo' => 'Microsoft Windows 7. Guía del usuario', 'autor' => 'JOSÉ LUIS RAYA CABRERA; PABLO CASLA VILLARES; LAURA RAYA GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-03-10', 'fecha_public' => '2010-03-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lpmdx', 'isbn' => '978-84-7897-968-4', 'ean' => '9788478979684', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 426, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 426, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 525, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897969.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 476.00, 'titulo' => 'Interpretación y Análisis de Balances', 'autor' => 'ÁLVARO COUSO RUANO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-04-15', 'fecha_public' => '2010-04-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6ws4l', 'isbn' => '978-84-7897-969-1', 'ean' => '9788478979691', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 526, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897970.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 969.00, 'titulo' => 'AutoCAD 2009. Curso práctico', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-05-18', 'fecha_public' => '2010-05-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_of3vq', 'isbn' => '978-84-7897-970-7', 'ean' => '9788478979707', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 594, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 594, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 527, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897971.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1018.00, 'titulo' => 'Programación de Bases de Datos con C#', 'autor' => 'Gonzalez Perez, Alfons', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-01', 'fecha_public' => '2010-06-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p8zih', 'isbn' => '978-84-7897-971-4', 'ean' => '9788478979714', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 616, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 616, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 528, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897972.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 979.00, 'titulo' => 'Programador Certificado JAVA 2. Curso práctico. 3ª Edición', 'autor' => 'ANTONIO J. MARTÍN SIERRA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-04-28', 'fecha_public' => '2010-04-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z1nlk', 'isbn' => '978-84-7897-972-1', 'ean' => '9788478979721', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 604, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 604, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 529, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897973.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1303.00, 'titulo' => 'Procesamiento digital de imágenes con MATLAB y Simulink', 'autor' => 'ERIK VALDEMAR CUEVAS JIMÉNEZ; DANIEL ZALDÍVAR NAVARRO; MARCO ANTONIO PÉREZ CISNEROS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-07-02', 'fecha_public' => '2010-07-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gsbw2', 'isbn' => '978-84-7897-973-8', 'ean' => '9788478979738', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 816, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 816, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 530, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897974.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1390.00, 'titulo' => 'Guía Técnica Esencial de SAP Netweaver BW', 'autor' => 'Fernandez Alonso, Félix Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-16', 'fecha_public' => '2010-06-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bgvew', 'isbn' => '978-84-7897-974-5', 'ean' => '9788478979745', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 742, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 742, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 531, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897975.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 335.00, 'titulo' => 'Guía de Campo de la TDT', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-05-18', 'fecha_public' => '2010-05-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_st6rk', 'isbn' => '978-84-7897-975-2', 'ean' => '9788478979752', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 204, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 204, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 532, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897976.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 694.00, 'titulo' => '¡¡¡Qué Mala Suerte!!!', 'autor' => 'Dr. Montgomery Lee, P.D.F.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-21', 'fecha_public' => '2010-06-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l8rzi', 'isbn' => '978-84-7897-976-9', 'ean' => '9788478979769', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 428, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 428, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 533, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897977.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 416.00, 'titulo' => 'Cómo hacerse famoso en Internet', 'autor' => 'Ramos Varón, Antonio Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-05-27', 'fecha_public' => '2010-05-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u9m24', 'isbn' => '978-84-7897-977-6', 'ean' => '9788478979776', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 250, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 534, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897978.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1097.00, 'titulo' => 'Montaje y Mantenimiento de Equipos (GRADO MEDIO'],
- ['id' => 535, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897979.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 532.00, 'titulo' => 'Seguridad Informática (GRADO MEDIO'],
- ['id' => 536, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897980.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 993.00, 'titulo' => 'Implantación de Sistemas Operativos (GRADO SUP.'],
- ['id' => 537, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897981.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 876.00, 'titulo' => 'Sistemas Operativos en Red (GRADO MEDIO'],
- ['id' => 538, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897982.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1069.00, 'titulo' => 'Planificación y Administración de Redes (GRADO SUP.'],
- ['id' => 539, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897983.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1048.00, 'titulo' => 'Servicios en Red (GRADO MEDIO'],
- ['id' => 540, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897984.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 504.00, 'titulo' => 'Técnica contable (GRADO MEDIO'],
- ['id' => 541, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897985.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 835.00, 'titulo' => 'Fundamentos del Hardware (GRADO SUP.'],
- ['id' => 542, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897986.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1519.00, 'titulo' => 'Enciclopedia de Microsoft Visual C#. 3ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-01', 'fecha_public' => '2010-06-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4zy8w', 'isbn' => '978-84-7897-986-8', 'ean' => '9788478979868', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1088, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 1088, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 543, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897987.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1490.00, 'titulo' => 'Enciclopedia de Microsoft Visual Basic. 2ª edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-15', 'fecha_public' => '2010-06-15', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x5hug', 'isbn' => '978-84-7897-987-5', 'ean' => '9788478979875', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1064, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 1064, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 544, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897988.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 820.00, 'titulo' => 'Adobe Dreamweaver CS4 Professional. Curso práctico', 'autor' => 'Orós Escusol, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-16', 'fecha_public' => '2010-06-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_14jyt', 'isbn' => '978-84-7897-988-2', 'ean' => '9788478979882', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 490, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 490, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 545, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897989.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 402.00, 'titulo' => 'Diseño de programas', 'autor' => 'ANTONIO MENCHÉN PEÑUELA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-01', 'fecha_public' => '2010-06-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h1fsa', 'isbn' => '978-84-7897-989-9', 'ean' => '9788478979899', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 546, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897990.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 413.00, 'titulo' => 'Matemáticas con Microsoft Excel. 2ª Edición', 'autor' => 'Barreras Alconchel, Miguel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-29', 'fecha_public' => '2010-06-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bn6h2', 'isbn' => '978-84-7897-990-5', 'ean' => '9788478979905', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 322, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 322, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 547, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897991.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1022.00, 'titulo' => 'AutoCAD 2010. Curso práctico', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-07-01', 'fecha_public' => '2010-07-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8s90l', 'isbn' => '978-84-7897-991-2', 'ean' => '9788478979912', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 628, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 628, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 548, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897992.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 760.00, 'titulo' => 'SPSS 17. Extracción del conocimiento a partir del AA.DD', 'autor' => 'Valderrey Sanz, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-29', 'fecha_public' => '2010-06-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l3b24', 'isbn' => '978-84-7897-992-9', 'ean' => '9788478979929', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 549, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897993.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 199.00, 'titulo' => 'Guía Didáctica. Montaje y Mantenimiento de Equipos R. D. 1691/2007', 'autor' => 'Moreno Perez, Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_caskl', 'isbn' => '978-84-7897-993-6', 'ean' => '9788478979936', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 100, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 100, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 550, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897994.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 132.00, 'titulo' => 'Guía Didáctica. Seguridad Informática R. D. 1691/2007', 'autor' => 'Costas Santos, Jesús', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rgf42', 'isbn' => '978-84-7897-994-3', 'ean' => '9788478979943', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 62, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 62, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 551, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897995.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 214.00, 'titulo' => 'Guía Didáctica. Implantación de sistemas operativos R. D. 1691/2007', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sb6xg', 'isbn' => '978-84-7897-995-0', 'ean' => '9788478979950', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 110, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 110, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 552, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897996.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 195.00, 'titulo' => 'Guía Didáctica. Sistemas operativos en red R. D. 1691/2007', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_arelf', 'isbn' => '978-84-7897-996-7', 'ean' => '9788478979967', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 98, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 98, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 553, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897997.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 338.00, 'titulo' => 'Guía Didáctica. Planificación y administración de redes', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_teomd', 'isbn' => '978-84-7897-997-4', 'ean' => '9788478979974', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 554, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897998.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 354.00, 'titulo' => 'Guía Didáctica. Servicios en red R. D. 1691/2007', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6nkj9', 'isbn' => '978-84-7897-998-1', 'ean' => '9788478979981', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 555, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897999.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 303.00, 'titulo' => 'Guía Didáctica. Técnica contable R. D. 1691/2007', 'autor' => 'Albarran Francisco, José Miguel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ikr3', 'isbn' => '978-84-7897-999-8', 'ean' => '9788478979998', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 556, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788486/978848638189.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 307.00, 'titulo' => 'Entorno MIDI y sus Aplicaciones Musicales.', 'autor' => 'HECQUET, A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '1990-01-24', 'fecha_public' => '1990-01-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y5edg', 'isbn' => '978-84-86381-89-9', 'ean' => '9788486381899', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 128, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 128, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 557, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788486/978848638199.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 327.00, 'titulo' => 'Matemática Discreta.', 'autor' => 'Abellanas Oar, Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '1990-05-11', 'fecha_public' => '1990-05-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0dlfc', 'isbn' => '978-84-86381-99-8', 'ean' => '9788486381998', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 558, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265000.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Emprendedor. "Crear su propia Empresa"', 'autor' => 'SILVA, J.E.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0n3id', 'isbn' => '978-84-92650-00-2', 'ean' => '9788492650002', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 236, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 236, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 559, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265001.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'China, India y la economía mundial.', 'autor' => 'WINTER, L.A. y YUSUF, S.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5jw6r', 'isbn' => '978-84-92650-01-9', 'ean' => '9788492650019', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 560, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265002.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Pymes más competitivas', 'autor' => 'RAMÍREZ, J.C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jpdka', 'isbn' => '978-84-92650-02-6', 'ean' => '9788492650026', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 130, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 130, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 561, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265003.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Innovar o morir', 'autor' => 'MORALES, E.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uwc86', 'isbn' => '978-84-92650-03-3', 'ean' => '9788492650033', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 562, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265004.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Marketing práctico.', 'autor' => 'ECHEVERRI, L.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rk8vo', 'isbn' => '978-84-92650-04-0', 'ean' => '9788492650040', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 563, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265005.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Riego por bombeo y drenaje', 'autor' => 'PALOMINO, K.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j53cy', 'isbn' => '978-84-92650-05-7', 'ean' => '9788492650057', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 564, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265006.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Riego por goteo', 'autor' => 'PALOMINO, K.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_45ae1', 'isbn' => '978-84-92650-06-4', 'ean' => '9788492650064', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 565, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265007.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Riego por aspersión', 'autor' => 'PALOMINO, K.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_65hbs', 'isbn' => '978-84-92650-07-1', 'ean' => '9788492650071', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 566, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265009.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Biohuertos: Agricultura ecológica', 'autor' => 'M. RIMACHE', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hucwd', 'isbn' => '978-84-92650-09-5', 'ean' => '9788492650095', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 567, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265010.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Floricultura. Cultivo y comercialización', 'autor' => 'RIMACHE, M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ioyjx', 'isbn' => '978-84-92650-10-1', 'ean' => '9788492650101', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 252, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 252, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 568, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265011.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Marketing y Publicidad en Internet. Básico', 'autor' => 'MARTÍ, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r5jio', 'isbn' => '978-84-92650-11-8', 'ean' => '9788492650118', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 569, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265012.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ContaPlus 2009. Básico', 'autor' => 'DePRADO, S.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wet9z', 'isbn' => '978-84-92650-12-5', 'ean' => '9788492650125', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 570, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265013.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Access 2007. Básico', 'autor' => 'CRUZ, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8d3z7', 'isbn' => '978-84-92650-13-2', 'ean' => '9788492650132', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 124, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 124, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 571, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265014.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Ingeniería del Sonido. Sistemas de sonido en directo', 'autor' => 'LÓPEZ, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qrcyf', 'isbn' => '978-84-92650-14-9', 'ean' => '9788492650149', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 572, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265015.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Windows Vista. Básico', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dyna2', 'isbn' => '978-84-92650-15-6', 'ean' => '9788492650156', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 236, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 236, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 573, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265016.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'AutoCAD 2009. Básico', 'autor' => 'CARRERO, MªM.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5ba8i', 'isbn' => '978-84-92650-16-3', 'ean' => '9788492650163', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 166, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 574, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265017.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Informática Profesional', 'autor' => 'CANALES, R.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k17hb', 'isbn' => '978-84-92650-17-0', 'ean' => '9788492650170', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 548, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 548, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 575, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265018.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Internet. Básico', 'autor' => 'GONZÁLEZ, MªA.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n6jyl', 'isbn' => '978-84-92650-18-7', 'ean' => '9788492650187', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 576, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265019.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Informática para la Gestión y Administración. Básico', 'autor' => 'MENCHÉN, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b6ld0', 'isbn' => '978-84-92650-19-4', 'ean' => '9788492650194', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 174, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 174, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 577, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265020.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Cómo enriquecerse en Bolsa', 'autor' => 'HERRERO, J.L.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wb5mc', 'isbn' => '978-84-92650-20-0', 'ean' => '9788492650200', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 126, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 126, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 578, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265021.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creatividad Aplicada', 'autor' => 'SCHNARCH, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lixtn', 'isbn' => '978-84-92650-21-7', 'ean' => '9788492650217', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 158, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 158, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 579, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265022.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de la Calidad en empresas Tecnológicas.TQM-ITIL', 'autor' => 'MAQUEIRA, J.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q2l7r', 'isbn' => '978-84-92650-22-4', 'ean' => '9788492650224', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 252, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 252, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 580, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265023.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seis Sigma', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ajhyk', 'isbn' => '978-84-92650-23-1', 'ean' => '9788492650231', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 312, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 312, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 581, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265024.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Quiero que mi empresa salga en Google', 'autor' => 'De ANDRÉS, S.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ajm17', 'isbn' => '978-84-92650-24-8', 'ean' => '9788492650248', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 582, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265025.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Riesgos Químicos', 'autor' => 'HENAO, F.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eot60', 'isbn' => '978-84-92650-25-5', 'ean' => '9788492650255', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 583, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265026.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Investigación de Mercados', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_62v5b', 'isbn' => '978-84-92650-26-2', 'ean' => '9788492650262', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 584, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265027.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Repare, configure y amplíe su PC. Básico', 'autor' => 'CERNUDA, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x4sr6', 'isbn' => '978-84-92650-27-9', 'ean' => '9788492650279', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 585, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265028.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Técnicas de Segmentación de Mercados', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vsi9z', 'isbn' => '978-84-92650-28-6', 'ean' => '9788492650286', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 586, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265029.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Práctica de Nóminas y Seguros Sociales', 'autor' => 'De PRADO, S.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e7nv5', 'isbn' => '978-84-92650-29-3', 'ean' => '9788492650293', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 587, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265030.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Investigación Comercial. Métodos y aplicaciones', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xzbwv', 'isbn' => '978-84-92650-30-9', 'ean' => '9788492650309', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 588, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265031.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual Práctico Impresión Offset en pliego y bobina', 'autor' => 'DENCHE, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pfxl3', 'isbn' => '978-84-92650-31-6', 'ean' => '9788492650316', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 589, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265033.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Procesos Productivos: Obtenga la máxima rentabilidad', 'autor' => 'VEGA, I.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_60itw', 'isbn' => '978-84-92650-33-0', 'ean' => '9788492650330', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 590, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265034.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Inventarios. Manejo y control', 'autor' => 'GUERRERO, H.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ohs6e', 'isbn' => '978-84-92650-34-7', 'ean' => '9788492650347', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 591, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265035.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Impuesto sobre el Valor Añadido', 'autor' => 'CENICEROS, Á.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y9ck3', 'isbn' => '978-84-92650-35-4', 'ean' => '9788492650354', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 278, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 278, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 592, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265036.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Seguridad Informática. Básico', 'autor' => 'GÓMEZ VIEITES, Á.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_frxm5', 'isbn' => '978-84-92650-36-1', 'ean' => '9788492650361', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 122, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 122, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 593, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265037.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Introducción a la Informática. Básico', 'autor' => 'CANTONE, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r65gs', 'isbn' => '978-84-92650-37-8', 'ean' => '9788492650378', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 124, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 124, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 594, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265038.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Teoría de Riesgo', 'autor' => 'DIZ, E.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9audg', 'isbn' => '978-84-92650-38-5', 'ean' => '9788492650385', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 595, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265039.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Riesgos en la Construcción', 'autor' => 'HENAO, F. ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q8e0b', 'isbn' => '978-84-92650-39-2', 'ean' => '9788492650392', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 596, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265040.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Electricidad Básica', 'autor' => 'ARBOLEDAS, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lby8a', 'isbn' => '978-84-92650-40-8', 'ean' => '9788492650408', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 156, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 156, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 597, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265041.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Especulaciones y Tendencias', 'autor' => 'BARBOSA, P.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y1e9m', 'isbn' => '978-84-92650-41-5', 'ean' => '9788492650415', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 598, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265042.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Contabilidad básica', 'autor' => 'PALLEROLA, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bi1v0', 'isbn' => '978-84-92650-42-2', 'ean' => '9788492650422', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 166, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 599, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265043.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Las reglas no escritas para triunfar en la empresa.2ªed - COLOR', 'autor' => 'CANALES, R.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5j8wk', 'isbn' => '978-84-92650-43-9', 'ean' => '9788492650439', 'editorial' => 'Starbook Editorial', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 548, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 548, 'color_papel_id' => 2, 'color_gramaje' => 90, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 90, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 80.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => '', 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 600, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265044.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Office 2007. Curso práctico', 'autor' => 'ROSADO, F.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bujk5', 'isbn' => '978-84-92650-44-6', 'ean' => '9788492650446', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 601, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265045.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Diseño y creación de portales web', 'autor' => 'GÓMEZ, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g97jq', 'isbn' => '978-84-92650-45-3', 'ean' => '9788492650453', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 602, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265046.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Administración de sistemas GNU/Linux', 'autor' => 'GÓMEZ, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u1mib', 'isbn' => '978-84-92650-46-0', 'ean' => '9788492650460', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 603, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265047.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Impuesto sobre el Valor Añadido.2ª edición', 'autor' => 'CENICEROS, Á.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jkzsq', 'isbn' => '978-84-92650-47-7', 'ean' => '9788492650477', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 604, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265048.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Oracle. Básico', 'autor' => 'ROLDÁN, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_84zvg', 'isbn' => '978-84-92650-48-4', 'ean' => '9788492650484', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 605, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265049.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Electrónica básica', 'autor' => 'ARBOLEDAS, D. ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3vzys', 'isbn' => '978-84-92650-49-1', 'ean' => '9788492650491', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 174, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 174, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 606, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265050.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'PowerPoint 2007. Básico', 'autor' => 'ROSADO, F.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n4f9c', 'isbn' => '978-84-92650-50-7', 'ean' => '9788492650507', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 114, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 114, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 607, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265051.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Al liderazgo por la venta', 'autor' => 'ALMUNIA, J.L.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q9fed', 'isbn' => '978-84-92650-51-4', 'ean' => '9788492650514', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 608, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265052.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Práctica de Nóminas y Seguros Sociales. 2ª Edición', 'autor' => 'DE PRADO, S.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bxg9u', 'isbn' => '978-84-92650-52-1', 'ean' => '9788492650521', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 138, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 138, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 609, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265053.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Marketing y Publicidad en Internet. Básico. 2ª Edición', 'autor' => 'MARTÍ, J.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ynjaf', 'isbn' => '978-84-92650-53-8', 'ean' => '9788492650538', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 286, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 286, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 610, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265054.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual práctico de soldadura básico', 'autor' => 'CARPINTERO, J.M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nds8c', 'isbn' => '978-84-92650-54-5', 'ean' => '9788492650545', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 611, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265055.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Microsoft InfoPath Designer 2010. Básico', 'autor' => 'MENCHÉN, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rp81a', 'isbn' => '978-84-92650-55-2', 'ean' => '9788492650552', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 612, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265056.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Dreamweaver CS5. Básico', 'autor' => 'CASLA. P. y otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kb651', 'isbn' => '978-84-92650-56-9', 'ean' => '9788492650569', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 613, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265057.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Photoshop CS5. Básico', 'autor' => 'COVIELLA, J.M. y otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dwmi1', 'isbn' => '978-84-92650-57-6', 'ean' => '9788492650576', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 614, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265058.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Excel 2010. Básico', 'autor' => 'PÉREZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_17xtn', 'isbn' => '978-84-92650-58-3', 'ean' => '9788492650583', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 615, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265059.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Access 2010. Básico', 'autor' => 'PÉREZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bvu03', 'isbn' => '978-84-92650-59-0', 'ean' => '9788492650590', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 616, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265060.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Word 2010. Básico', 'autor' => 'VALDERREY, P.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6acpv', 'isbn' => '978-84-92650-60-6', 'ean' => '9788492650606', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 617, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265061.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Office 2010. Curso práctico', 'autor' => 'ROSADO, F. M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ln0um', 'isbn' => '978-84-92650-61-3', 'ean' => '9788492650613', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 236, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 236, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 618, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265063.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Facebook. Guía práctica', 'autor' => 'GUERRERO, D.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2jbvw', 'isbn' => '978-84-92650-63-7', 'ean' => '9788492650637', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 346, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 346, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 619, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265064.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Informática Básica para Mayores', 'autor' => 'CRUZ, A. M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0q5w4', 'isbn' => '978-84-92650-64-4', 'ean' => '9788492650644', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 620, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265065.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Outlook 2007. Básico', 'autor' => 'ROSADO, F. M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xb89c', 'isbn' => '978-84-92650-65-1', 'ean' => '9788492650651', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 114, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 114, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 621, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265066.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'PowerPoint 2010. Básico', 'autor' => 'ROSADO, F. M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zno9m', 'isbn' => '978-84-92650-66-8', 'ean' => '9788492650668', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 116, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 116, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 622, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265067.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Negociación. Arte Empresarial', 'autor' => 'ZAPATA, G. A. ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h7lvq', 'isbn' => '978-84-92650-67-5', 'ean' => '9788492650675', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 88, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 88, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 623, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265068.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Merchandising. La seducción en el punto de venta', 'autor' => 'ECOE EDIC LTDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lg6rp', 'isbn' => '978-84-92650-68-2', 'ean' => '9788492650682', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 624, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265069.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Outlook 2010. Básico', 'autor' => 'ROSADO, F. M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zejmo', 'isbn' => '978-84-92650-69-9', 'ean' => '9788492650699', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 118, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 625, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265070.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Illustrator CS5. Básico', 'autor' => 'CERNUDA, J.H.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mbuo0', 'isbn' => '978-84-92650-70-5', 'ean' => '9788492650705', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 120, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 120, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 626, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265071.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Flash CS5. Básico', 'autor' => 'CASLA, P. y otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gqjrl', 'isbn' => '978-84-92650-71-2', 'ean' => '9788492650712', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 166, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 627, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265072.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fundamentos de Matemática', 'autor' => 'ECOE EDIC LTDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pg2f6', 'isbn' => '978-84-92650-72-9', 'ean' => '9788492650729', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 590, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 590, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 628, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265073.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Mantenimiento del Subsistema Físico de Sistemas Informáticos (MF0957_2'],
- ['id' => 629, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265074.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Auditoría de Seguridad Informática (MF0487_3'],
- ['id' => 630, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265075.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Sistemas Seguros de Acceso y Trans. de Datos (MF0489_3'],
- ['id' => 631, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265076.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Seguridad en Equipos Informáticos (MF0486_3'],
- ['id' => 632, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265077.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestión de Incidentes de Seg. Informática (MF0488_3'],
- ['id' => 633, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265078.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Administración de Sistemas Gestores de BBDD (MF0225_3'],
- ['id' => 634, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265079.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestión de Bases de Datos (MF0225_3'],
- ['id' => 635, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265080.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Reparación del Equipamiento Informático (MF0954_2'],
- ['id' => 636, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265081.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Montaje de Equipos Microinformáticos (MF0953_2'],
- ['id' => 637, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265082.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Mantenimiento de la Seguridad en Sist. Inf. (MF0959_2'],
- ['id' => 638, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265083.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Operaciones Aux. de Montaje y Comp. Inf. (MF1207_1'],
- ['id' => 639, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265084.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Construcción de Páginas Web (MF0950_2'],
- ['id' => 640, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265085.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Windows 7. Básico', 'autor' => 'MENCHÉN, A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sn9qj', 'isbn' => '978-84-92650-85-9', 'ean' => '9788492650859', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 641, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265086.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración de Compras', 'autor' => 'ECOE EDIC LTDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5smni', 'isbn' => '978-84-92650-86-6', 'ean' => '9788492650866', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 642, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265087.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ergonomía Aplicada', 'autor' => 'ECOE EDIC LTDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0w27h', 'isbn' => '978-84-92650-87-3', 'ean' => '9788492650873', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 643, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265088.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión Logística Integral', 'autor' => 'ECOE EDIC LTDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q70cg', 'isbn' => '978-84-92650-88-0', 'ean' => '9788492650880', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 342, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 342, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 644, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265089.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Operaciones de montaje (MF0088_1'],
- ['id' => 645, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265090.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Neuromarketing', 'autor' => 'JUAN PEDRO GARCIA PALOMO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7kw2q', 'isbn' => '978-84-92650-90-3', 'ean' => '9788492650903', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 646, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265091.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Instalación y Configuración de Sistemas Operativos (MF0219_2'],
- ['id' => 647, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265092.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Instalación y Configuración de Aplicaciones Informáticas (MF0221_2'],
- ['id' => 648, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265093.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La Vía Inteligente. Nuevos servicios para las ciudades digitales', 'autor' => 'NAVARRO, F. y Otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_arz8y', 'isbn' => '978-84-92650-93-4', 'ean' => '9788492650934', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 649, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265094.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Ofimática (MF0233_2'],
- ['id' => 650, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265095.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Herramientas de Gestión del Capital Humano con Microsoft Office', 'autor' => 'GAITO, H.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zq52p', 'isbn' => '978-84-92650-95-8', 'ean' => '9788492650958', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 651, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265096.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración y Gestión para Restauración con Microsoft Excel', 'autor' => 'GARCÍA FRONTI, M.S. y Otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8xvzp', 'isbn' => '978-84-92650-96-5', 'ean' => '9788492650965', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 652, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265097.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Administración de Recursos Humanos con Microsoft Excel', 'autor' => 'BOLIG, G.N. y Otros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5xh29', 'isbn' => '978-84-92650-97-2', 'ean' => '9788492650972', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 254, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 653, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265098.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Contabilidad y fiscalidad (MF0231_3'],
- ['id' => 654, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788492/978849265099.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Operaciones de fabricación (MF0087_1'],
- ['id' => 655, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368960.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Visual Basic. Básico.', 'autor' => 'FERNÁNDEZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nvsc6', 'isbn' => '978-84-936896-0-5', 'ean' => '9788493689605', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 656, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368961.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Riesgos Eléctricos y Mecánicos', 'autor' => 'HENAO ROBLEDO, F.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w748o', 'isbn' => '978-84-936896-1-2', 'ean' => '9788493689612', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 382, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 382, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 657, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368962.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Word 2007. Básico.', 'autor' => 'LOPEZ, F.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_12y30', 'isbn' => '978-84-936896-2-9', 'ean' => '9788493689629', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 128, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 128, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 658, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368963.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Excel 2007: Básico', 'autor' => 'LÓPEZ, F.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tgu62', 'isbn' => '978-84-936896-3-6', 'ean' => '9788493689636', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 659, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368964.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ingeniería de Métodos. Movimiento y Tiempos', 'autor' => 'ECOE EDICIONES LTDA. ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n8x4a', 'isbn' => '978-84-936896-4-3', 'ean' => '9788493689643', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 660, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368965.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Java 2. Básico.', 'autor' => 'FERNÁNDEZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zux0v', 'isbn' => '978-84-936896-5-0', 'ean' => '9788493689650', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 661, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368966.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Redes Locales. Básico.', 'autor' => 'GONZÁLEZ, Mª ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vf039', 'isbn' => '978-84-936896-6-7', 'ean' => '9788493689667', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 662, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368967.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'C #. Básico.', 'autor' => 'FERNÁNDEZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b9l7e', 'isbn' => '978-84-936896-7-4', 'ean' => '9788493689674', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 663, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368968.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'C ++. Básico.', 'autor' => 'FERNÁNDEZ, C.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m7sug', 'isbn' => '978-84-936896-8-1', 'ean' => '9788493689681', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 132, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 132, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 664, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788493/978849368969.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Windows 2008 Server. Básico.', 'autor' => 'GONZÁLEZ, Mª ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xds8u', 'isbn' => '978-84-936896-9-8', 'ean' => '9788493689698', 'editorial' => 'Starbook Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 665, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964000.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 222.00, 'titulo' => 'Guía Didáctica. Fundamentos del hardware R. D. 1691/2007', 'autor' => 'Moreno Perez, Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sopu1', 'isbn' => '978-84-9964-000-6', 'ean' => '9788499640006', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 114, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 114, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 666, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964002.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 473.00, 'titulo' => 'Cálculo Simbólico y Gráfico con MAPLE', 'autor' => 'Carrillo De Albornoz, Agustín', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-28', 'fecha_public' => '2010-06-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l25zt', 'isbn' => '978-84-9964-002-0', 'ean' => '9788499640020', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 667, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964003.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 474.00, 'titulo' => 'Gestión de Bases de Datos (GRADO SUP.'],
- ['id' => 668, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964004.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 139.00, 'titulo' => 'Guía Didáctica. Gestión de Bases de Datos R. D. 1691/2007', 'autor' => 'Gonzalez Perez, Alfons', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-08', 'fecha_public' => '2010-09-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jrmsd', 'isbn' => '978-84-9964-004-4', 'ean' => '9788499640044', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 66, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 66, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 669, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964005.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 371.00, 'titulo' => 'Vehículos Eléctricos y Redes para su Recarga', 'autor' => 'Arsuaga Chabot, Pedro', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-29', 'fecha_public' => '2010-06-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l087v', 'isbn' => '978-84-9964-005-1', 'ean' => '9788499640051', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 670, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964006.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 792.00, 'titulo' => 'SolidWorks Simulation', 'autor' => 'Gomez Gonzalez, Sergio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-30', 'fecha_public' => '2010-06-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1rjd7', 'isbn' => '978-84-9964-006-8', 'ean' => '9788499640068', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 484, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 484, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 671, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964007.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 655.00, 'titulo' => 'Administración avanzada de sistemas informáticos', 'autor' => 'Gómez López, Julio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-06-30', 'fecha_public' => '2010-06-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_80cwp', 'isbn' => '978-84-9964-007-5', 'ean' => '9788499640075', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 672, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964008.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1016.00, 'titulo' => 'Domine PHP y MySQL. 2ª Edición', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-07-01', 'fecha_public' => '2010-07-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y9v2u', 'isbn' => '978-84-9964-008-2', 'ean' => '9788499640082', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 626, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 626, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 673, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964009.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1133.00, 'titulo' => 'Solid Edge ST. Tradicional y síncrono', 'autor' => 'Gutierrez Olivar, Rafael', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-07-01', 'fecha_public' => '2010-07-01', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bc9rl', 'isbn' => '978-84-9964-009-9', 'ean' => '9788499640099', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 704, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 704, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 674, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964010.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 417.00, 'titulo' => 'Gestión de Proyectos de E-Learning', 'autor' => 'Hervas Jorge, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-06', 'fecha_public' => '2010-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u5sid', 'isbn' => '978-84-9964-010-5', 'ean' => '9788499640105', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 675, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964011.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 662.00, 'titulo' => 'Aprendizaje Automático', 'autor' => 'GONZALO PAJARES MARTINSANZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_auojd', 'isbn' => '978-84-9964-011-2', 'ean' => '9788499640112', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 376, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 376, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 676, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964012.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 268.00, 'titulo' => 'Ser empresario. Nuevos modelos de conducta empresarial', 'autor' => 'Zurita Espinosa, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-28', 'fecha_public' => '2010-09-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_efk2c', 'isbn' => '978-84-9964-012-9', 'ean' => '9788499640129', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 128, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 128, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 677, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964013.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 332.00, 'titulo' => 'Fraude en la Red', 'autor' => 'Guerrero Fuertes, Diego', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_41ax2', 'isbn' => '978-84-9964-013-6', 'ean' => '9788499640136', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 678, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964014.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1076.00, 'titulo' => 'AutoCAD 2011. Curso Práctico', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-02', 'fecha_public' => '2010-09-02', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yqohr', 'isbn' => '978-84-9964-014-3', 'ean' => '9788499640143', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 642, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 642, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 679, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964015.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 730.00, 'titulo' => 'Telecomunicaciones: Tecnologías, Redes y Servicios', 'autor' => 'Huidobro Moya, José Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g78lh', 'isbn' => '978-84-9964-015-0', 'ean' => '9788499640150', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 422, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 422, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 680, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964016.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1006.00, 'titulo' => 'El Arte de Dirigir Proyectos. 3ª Edición', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bl3iy', 'isbn' => '978-84-9964-016-7', 'ean' => '9788499640167', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 681, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964017.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 789.00, 'titulo' => 'Domótica e inmótica. Viviendas y Edificios Inteligentes. 3ª Edición', 'autor' => 'Romero Morales, Cristóbal', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2q3ba', 'isbn' => '978-84-9964-017-4', 'ean' => '9788499640174', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 484, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 484, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 682, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964018.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 329.00, 'titulo' => 'Aplicaciones contables con Excel. Desde el coste amortizado a las ventajas fiscales del leasing', 'autor' => 'JOAN PALLEROLA COMAMALA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hpqg2', 'isbn' => '978-84-9964-018-1', 'ean' => '9788499640181', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 683, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964019.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1205.00, 'titulo' => 'DOMINE JAVASCRIPT - 3.ª Edición', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-07', 'fecha_public' => '2010-09-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j084q', 'isbn' => '978-84-9964-019-8', 'ean' => '9788499640198', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 706, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 706, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 684, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964020.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 898.00, 'titulo' => 'Microsoft Visual Basic .NET. Lenguaje y aplicaciones. 3ª Edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-06', 'fecha_public' => '2010-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ix946', 'isbn' => '978-84-9964-020-4', 'ean' => '9788499640204', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 520, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 520, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 685, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964021.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1275.00, 'titulo' => 'Photoshop CS5. Superfácil', 'autor' => 'CARMEN CÓRDOBA GONZÁLEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-06', 'fecha_public' => '2010-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pb7jg', 'isbn' => '978-84-9964-021-1', 'ean' => '9788499640211', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 602, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 602, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 686, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964022.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 460.00, 'titulo' => 'Creación de empresas. Innovación e instituciones', 'autor' => 'Brunet Icart, Ignasi', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-27', 'fecha_public' => '2010-09-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zhs4b', 'isbn' => '978-84-9964-022-8', 'ean' => '9788499640228', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 687, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964023.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1143.00, 'titulo' => 'SP ContaPlus Élite 2010. Contabilidad informatizada', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-10-05', 'fecha_public' => '2010-10-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z576f', 'isbn' => '978-84-9964-023-5', 'ean' => '9788499640235', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 708, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 708, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 688, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964024.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 341.00, 'titulo' => 'Creación de un portal con PHP y MySQL. 4ª edición', 'autor' => 'JACOBO PAVÓN PUERTAS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 4, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z2uho', 'isbn' => '978-84-9964-024-2', 'ean' => '9788499640242', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 268, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 268, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 689, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964025.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 675.00, 'titulo' => 'Mi PC. Actualización, configuración, mantenimiento y reparación. 5ª Edición actualizada', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-10-05', 'fecha_public' => '2010-10-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wbega', 'isbn' => '978-84-9964-025-9', 'ean' => '9788499640259', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 690, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964026.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 649.00, 'titulo' => 'Dispositivos Electrónicos: Problemas resueltos. 2ª Edición.', 'autor' => 'Roldán Aranda, Juan Bautista', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-27', 'fecha_public' => '2010-09-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bk9at', 'isbn' => '978-84-9964-026-6', 'ean' => '9788499640266', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 691, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964027.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 389.00, 'titulo' => 'Electrónica digital en la práctica', 'autor' => 'RAFAEL REINA ACEDO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-27', 'fecha_public' => '2010-09-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qczb7', 'isbn' => '978-84-9964-027-3', 'ean' => '9788499640273', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 692, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964028.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1311.00, 'titulo' => 'Enciclopedia de GNU/Linux para usuario y administrador', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z3p6v', 'isbn' => '978-84-9964-028-0', 'ean' => '9788499640280', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 818, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 818, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 693, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964029.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 357.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (4ª Edición'],
- ['id' => 694, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964030.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 560.00, 'titulo' => 'Criptografía. Técnicas de desarrollo para profesionales', 'autor' => 'MAIORANO', 'autor_entidad' => 'A. (ALFAOMEGA'],
- ['id' => 695, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964031.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 486.00, 'titulo' => 'Photoshop CS5. Curso Práctico', 'autor' => 'ENRIQUE CÓRDOBA MERINO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-09-28', 'fecha_public' => '2010-09-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5m4ds', 'isbn' => '978-84-9964-031-0', 'ean' => '9788499640310', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 280, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 280, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 696, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964032.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1357.00, 'titulo' => 'Java 2. Curso de Programación. 4ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 4, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4l9vc', 'isbn' => '978-84-9964-032-7', 'ean' => '9788499640327', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 820, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 820, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 697, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964033.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 304.00, 'titulo' => 'Guía de Campo de Combustion 2008', 'autor' => 'Cotelo Oñate, Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_imv9l', 'isbn' => '978-84-9964-033-4', 'ean' => '9788499640334', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 698, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964034.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 534.00, 'titulo' => 'Struts. 2ª Edición', 'autor' => 'ANTONIO J. MARTÍN SIERRA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wz5xt', 'isbn' => '978-84-9964-034-1', 'ean' => '9788499640341', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 699, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964035.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1158.00, 'titulo' => 'Redes CISCO. Guía de estudio para la certificación CCNP', 'autor' => 'ERNESTO ARIGANELLO; ENRIQUE BARRIENTOS SEVILLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4zpkl', 'isbn' => '978-84-9964-035-8', 'ean' => '9788499640358', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 718, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 718, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 700, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964036.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1359.00, 'titulo' => 'Enciclopedia de la Seguridad Informática. 2ª Edición', 'autor' => 'ÁLVARO GÓMEZ VIEITES', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_41onz', 'isbn' => '978-84-9964-036-5', 'ean' => '9788499640365', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 828, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 828, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 701, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964037.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 535.00, 'titulo' => 'Redes de ordenadores e Internet: Funcionamiento, servicios ofrecidos y alternativas de conexión. 2ª ', 'autor' => 'Gomez Vieites, Alvaro', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_onwp5', 'isbn' => '978-84-9964-037-2', 'ean' => '9788499640372', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 702, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964038.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 467.00, 'titulo' => 'DISEÑO PÁGINAS WEB XHTML, JAVASCRIPT Y CSS - 3.ª Edición', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x0kz1', 'isbn' => '978-84-9964-038-9', 'ean' => '9788499640389', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 376, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 376, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 5, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 703, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964039.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 303.00, 'titulo' => 'Navegar en Internet: Mi primer proyecto web', 'autor' => 'DAVID RODRÍGUEZ DE SEPÚLVEDA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nlvj7', 'isbn' => '978-84-9964-039-6', 'ean' => '9788499640396', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 704, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964040.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 516.00, 'titulo' => 'VHDL. Lenguaje para síntesis y modelado de circuitos. 3ª edición actualizada', 'autor' => 'Pardo Carpio, Fernando', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_562eb', 'isbn' => '978-84-9964-040-2', 'ean' => '9788499640402', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 705, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964041.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 518.00, 'titulo' => 'Excel 2007. Avanzado', 'autor' => 'Gomez Gutierrez, Juan Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v8p1j', 'isbn' => '978-84-9964-041-9', 'ean' => '9788499640419', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 706, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964042.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 747.00, 'titulo' => 'Microcontroladores PIC con programación PBP', 'autor' => 'Barra Zapata, Omar Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bt1qu', 'isbn' => '978-84-9964-042-6', 'ean' => '9788499640426', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 454, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 454, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 707, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964043.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 337.00, 'titulo' => 'Guía de Campo de Flash CS4', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2010-11-03', 'fecha_public' => '2010-11-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rid25', 'isbn' => '978-84-9964-043-3', 'ean' => '9788499640433', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 708, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964044.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 464.00, 'titulo' => 'Guía de campo de AutoCAD 2010', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-04', 'fecha_public' => '2011-03-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uowiq', 'isbn' => '978-84-9964-044-0', 'ean' => '9788499640440', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 709, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964045.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 772.00, 'titulo' => 'Excel 2010. Curso práctico', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yumwl', 'isbn' => '978-84-9964-045-7', 'ean' => '9788499640457', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 474, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 710, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964046.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 828.00, 'titulo' => 'Access 2010. Curso práctico', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5tbsw', 'isbn' => '978-84-9964-046-4', 'ean' => '9788499640464', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 508, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 508, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 711, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964047.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 439.00, 'titulo' => 'Gestión de proyectos con Microsoft Project 2010', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yok7f', 'isbn' => '978-84-9964-047-1', 'ean' => '9788499640471', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 346, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 346, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 712, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964048.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 339.00, 'titulo' => 'Guía de Campo de Contaplus Élite 2010', 'autor' => 'Morueco Gomez, Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_og3lh', 'isbn' => '978-84-9964-048-8', 'ean' => '9788499640488', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 713, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964049.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1134.00, 'titulo' => 'Redes CISCO. Guía de estudio para la certificación CCNP. 2ª Edición', 'autor' => 'ERNESTO ARIGANELLO; ENRIQUE BARRIENTOS SEVILLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0puys', 'isbn' => '978-84-9964-049-5', 'ean' => '9788499640495', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 736, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 736, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 714, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964050.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1042.00, 'titulo' => 'Hardware Microinformatico. 6ª Edición Actualizada', 'autor' => 'Martin Martin-Pozuelo, José Mª', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 6, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jmry6', 'isbn' => '978-84-9964-050-1', 'ean' => '9788499640501', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 644, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 644, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 715, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964051.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 950.00, 'titulo' => 'Dirección de proyectos. Experiencia, arte y excelencia', 'autor' => 'Díaz Martín, Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2sv4t', 'isbn' => '978-84-9964-051-8', 'ean' => '9788499640518', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 594, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 594, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 716, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964052.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 489.00, 'titulo' => 'Finanzas Básicas con Excel. 2ª Edición', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-01-10', 'fecha_public' => '2011-01-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_px8h6', 'isbn' => '978-84-9964-052-5', 'ean' => '9788499640525', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 717, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964053.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1305.00, 'titulo' => 'Photoshop CS5. Curso avanzado', 'autor' => 'ENRIQUE CÓRDOBA MORENO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p2bvo', 'isbn' => '978-84-9964-053-2', 'ean' => '9788499640532', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 798, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 798, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 718, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964054.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 301.00, 'titulo' => 'Guía de Campo de Word 2010', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p3o90', 'isbn' => '978-84-9964-054-9', 'ean' => '9788499640549', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 719, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964055.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 337.00, 'titulo' => 'Guía de Campo de Excel 2010', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-04', 'fecha_public' => '2011-03-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z71dr', 'isbn' => '978-84-9964-055-6', 'ean' => '9788499640556', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 720, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964056.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 307.00, 'titulo' => 'Guía de Campo de Access 2010', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dgn0b', 'isbn' => '978-84-9964-056-3', 'ean' => '9788499640563', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 721, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964057.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 323.00, 'titulo' => 'Guía de Campo de PowerPoint 2010', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r9f0z', 'isbn' => '978-84-9964-057-0', 'ean' => '9788499640570', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 722, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964058.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1014.00, 'titulo' => 'Domine Microsoft Office 2010', 'autor' => 'FRANCISCO PASCUAL GONZALEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pc1e7', 'isbn' => '978-84-9964-058-7', 'ean' => '9788499640587', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 723, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964059.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 960.00, 'titulo' => 'Hacking y Seguridad en Internet. Edición 2011', 'autor' => 'Ramos Varón, Antonio Ángel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1nzm6', 'isbn' => '978-84-9964-059-4', 'ean' => '9788499640594', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 580, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 580, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 724, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964060.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 902.00, 'titulo' => 'Oracle 11g. Curso práctico', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-02-04', 'fecha_public' => '2011-02-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wqbs8', 'isbn' => '978-84-9964-060-0', 'ean' => '9788499640600', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 558, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 558, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 725, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964061.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 871.00, 'titulo' => 'Microsoft SQL Server 2008 R2. Curso práctico', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-03', 'fecha_public' => '2011-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tic89', 'isbn' => '978-84-9964-061-7', 'ean' => '9788499640617', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 548, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 548, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 726, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964062.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 908.00, 'titulo' => 'Domine HTML5 y CSS2', 'autor' => 'Lopez Quijado, José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-03', 'fecha_public' => '2011-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v2zou', 'isbn' => '978-84-9964-062-4', 'ean' => '9788499640624', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 578, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 578, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 727, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964063.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 434.00, 'titulo' => 'Domine WordPress', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-03', 'fecha_public' => '2011-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sawvx', 'isbn' => '978-84-9964-063-1', 'ean' => '9788499640631', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 5, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 728, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964064.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 540.00, 'titulo' => 'Administración de Storage y Backups', 'autor' => 'Cantone, Maximiliano Dante', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-03', 'fecha_public' => '2011-03-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4yw5m', 'isbn' => '978-84-9964-064-8', 'ean' => '9788499640648', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 334, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 334, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 729, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964065.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 276.00, 'titulo' => 'Mejora de la productividad en AutoCAD. Escalas y cuestiones relacionadas con ellas', 'autor' => 'Alvarez Gonzalez, Luis Enrique', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_au2is', 'isbn' => '978-84-9964-065-5', 'ean' => '9788499640655', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 730, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964066.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 382.00, 'titulo' => 'Estadística descriptiva con Microsoft Excel 2010', 'autor' => 'URSICINO CARRASCAL ARRANZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-04', 'fecha_public' => '2011-03-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hq9n0', 'isbn' => '978-84-9964-066-2', 'ean' => '9788499640662', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 286, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 286, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 731, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964067.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 458.00, 'titulo' => 'Sakai. Administración, configuración y desarrollo de aplicaciones', 'autor' => 'Roldan Martinez, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-04', 'fecha_public' => '2011-03-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kzjqs', 'isbn' => '978-84-9964-067-9', 'ean' => '9788499640679', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 732, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964068.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1360.00, 'titulo' => 'Microsoft C#. Curso de Programación. 2ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-03-04', 'fecha_public' => '2011-03-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ytd2x', 'isbn' => '978-84-9964-068-6', 'ean' => '9788499640686', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 850, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 850, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 733, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964069.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 838.00, 'titulo' => 'Java a fondo. Estudio del lenguaje y desarrollo de aplicaciones', 'autor' => 'SZNAJDLEDER', 'autor_entidad' => 'P. (ALFAOMEGA'],
- ['id' => 734, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964070.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 633.00, 'titulo' => 'Calidad de Sistemas de Información. 2ª Edición', 'autor' => 'FÉLIX ÓSCAR GARCÍA RUBIO; GARCIA RODRIGUEZ DE GUZMAN, Ignacio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9no7z', 'isbn' => '978-84-9964-070-9', 'ean' => '9788499640709', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 374, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 374, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 735, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964071.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 568.00, 'titulo' => 'Internet. Libro del navegante, 5ª edición', 'autor' => 'Carballar Falcon, José A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 5, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xufom', 'isbn' => '978-84-9964-071-6', 'ean' => '9788499640716', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 344, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 344, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 736, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964072.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1134.00, 'titulo' => 'SP ContaPlus Élite 2011. Contabilidad informatizada', 'autor' => 'Mur Nuño, Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9p720', 'isbn' => '978-84-9964-072-3', 'ean' => '9788499640723', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 712, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 712, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 737, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964073.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 308.00, 'titulo' => 'Guía de Campo de Linux. 3ª Edición', 'autor' => 'Garcia Jimenez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_onkz5', 'isbn' => '978-84-9964-073-0', 'ean' => '9788499640730', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 738, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964074.gif', 'ancho' => 210.00, 'alto' => 297.00, 'peso' => 2301.00, 'titulo' => 'Diccionario tecnológico', 'autor' => 'Candel Gonzalez, Viriato', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7tvfl', 'isbn' => '978-84-9964-074-7', 'ean' => '9788499640747', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 716, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 716, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 739, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964075.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 474.00, 'titulo' => 'Primeros pasos con OpenOffice.org 3', 'autor' => 'Molla Palleja, Ricard', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yl6n2', 'isbn' => '978-84-9964-075-4', 'ean' => '9788499640754', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 276, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 740, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964076.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 808.00, 'titulo' => '3D Studio Max 2011. Curso Práctico', 'autor' => 'Cebolla Cebolla, Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b5kgp', 'isbn' => '978-84-9964-076-1', 'ean' => '9788499640761', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 470, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 470, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 741, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964077.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 711.00, 'titulo' => 'Procesamiento y Análisis Digital de Imágenes', 'autor' => 'Sossa Azuela, Juan Humberto', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xgnds', 'isbn' => '978-84-9964-077-8', 'ean' => '9788499640778', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 430, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 430, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 742, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964078.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 346.00, 'titulo' => 'Diseño de Videojuegos. Da forma a tus sueños', 'autor' => 'DANIEL GONZÁLEZ JIMÉNEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sadwt', 'isbn' => '978-84-9964-078-5', 'ean' => '9788499640785', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 743, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964079.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 838.00, 'titulo' => 'Microsoft Windows 7. Curso práctico', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zk5wf', 'isbn' => '978-84-9964-079-2', 'ean' => '9788499640792', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 524, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 524, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 744, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964080.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 345.00, 'titulo' => 'Guía de campo de Microsoft Windows 7', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mk1ai', 'isbn' => '978-84-9964-080-8', 'ean' => '9788499640808', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 745, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964081.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 272.00, 'titulo' => 'Tablas dinámicas en Excel 2010', 'autor' => 'Menchén Peñuela, Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tsq7l', 'isbn' => '978-84-9964-081-5', 'ean' => '9788499640815', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 746, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964082.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 833.00, 'titulo' => 'Administración de Sistemas Operativos. Un enfoque práctico. 2ª Edición', 'autor' => 'Gómez López, Julio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3zso4', 'isbn' => '978-84-9964-082-2', 'ean' => '9788499640822', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 494, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 747, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964083.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1057.00, 'titulo' => 'Flash CS5. Curso práctico', 'autor' => 'Orós Escusol, David', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c2boa', 'isbn' => '978-84-9964-083-9', 'ean' => '9788499640839', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 646, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 646, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 748, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964084.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 517.00, 'titulo' => 'AJAX en JAVA EE - 2.ª edición actualizada', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dx7cv', 'isbn' => '978-84-9964-084-6', 'ean' => '9788499640846', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 5, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 749, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964085.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 152.00, 'titulo' => 'La Bolsa y la Vida. 3ª Edición', 'autor' => 'IGNACIO SEBASTIÁN DE ERICE', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wtkuv', 'isbn' => '978-84-9964-085-3', 'ean' => '9788499640853', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 750, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964086.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 287.00, 'titulo' => 'Matemática financiera para el nuevo Plan General de Contabilidad. 2ª Edición', 'autor' => 'JOAN PALLEROLA COMAMALA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2bf4w', 'isbn' => '978-84-9964-086-0', 'ean' => '9788499640860', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 751, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964087.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 679.00, 'titulo' => 'Excel 2010. Avanzado', 'autor' => 'Gomez Gutierrez, Juan Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xvdoq', 'isbn' => '978-84-9964-087-7', 'ean' => '9788499640877', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 418, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 418, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 752, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964088.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 778.00, 'titulo' => 'Programación (GRADO SUPERIOR'],
- ['id' => 753, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964089.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 615.00, 'titulo' => 'Seguridad y Alta Disponibilidad (GRADO SUPERIOR'],
- ['id' => 754, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964090.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 882.00, 'titulo' => 'Servicios de Red e Internet (GRADO SUPERIOR'],
- ['id' => 755, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964091.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 844.00, 'titulo' => 'Administración de Sistemas Operativos (GRADO SUPERIOR'],
- ['id' => 756, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964092.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 516.00, 'titulo' => 'Contabilidad para PYMES. Supuestos cuenta por cuenta basados en la realidad. 3ª edición', 'autor' => 'JOAN PALLEROLA COMAMALA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7uhg6', 'isbn' => '978-84-9964-092-1', 'ean' => '9788499640921', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 396, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 396, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 757, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964093.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 648.00, 'titulo' => 'Guía práctica XHTML, JavaScript y CSS', 'autor' => 'Oros Cabello, Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-04-08', 'fecha_public' => '2011-04-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2n8ox', 'isbn' => '978-84-9964-093-8', 'ean' => '9788499640938', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 398, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 398, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 758, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964094.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 806.00, 'titulo' => 'Redes CISCO: Guía de estudio para la certificación CCNA 640-802. 2ª Edición', 'autor' => 'ERNESTO ARIGANELLO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-05-03', 'fecha_public' => '2011-05-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_08tx6', 'isbn' => '978-84-9964-094-5', 'ean' => '9788499640945', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 482, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 482, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 759, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964095.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 392.00, 'titulo' => 'La Gestión del Conocimiento Territorial', 'autor' => 'Zurita Espinosa, Laureano', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fkm2x', 'isbn' => '978-84-9964-095-2', 'ean' => '9788499640952', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 760, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964096.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 441.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (5ª Edición'],
- ['id' => 761, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964097.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 466.00, 'titulo' => 'La gestión informática de la empresa', 'autor' => 'MONTSERRAT JIMÉNEZ PARTEARROYO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-06-03', 'fecha_public' => '2011-06-03', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_od0lf', 'isbn' => '978-84-9964-097-6', 'ean' => '9788499640976', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 762, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964098.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 752.00, 'titulo' => 'Electrónica (GRADO MEDIO'],
- ['id' => 763, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964099.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 881.00, 'titulo' => 'Sistemas Informáticos (GRADO SUPERIOR'],
- ['id' => 764, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964100.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 786.00, 'titulo' => 'Administración de sistemas gestores de bases de datos (GRADO SUP.'],
- ['id' => 765, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964101.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 640.00, 'titulo' => 'Lenguajes de Marcas y sistemas de gestión de información (GRADO SUP.'],
- ['id' => 766, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964102.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 660.00, 'titulo' => 'Comunicación empresarial y atención al cliente (GRADO MEDIO'],
- ['id' => 767, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964103.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Servicios de red e Internet. R.D. 1691/2007', 'autor' => 'Molina Robles, Francisco José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q5vto', 'isbn' => '978-84-9964-103-4', 'ean' => '9788499641034', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 768, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964104.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 304.00, 'titulo' => 'Guía Didáctica. Seguridad y alta disponibilidad. R. D. 1691/2007', 'autor' => 'Costas Santos, Jesús', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ko18j', 'isbn' => '978-84-9964-104-1', 'ean' => '9788499641041', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 769, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964105.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 196.00, 'titulo' => 'Guía Didáctica. Sistemas informáticos. R. D. 1691/2007', 'autor' => 'Raya Cabrera, José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ujzwv', 'isbn' => '978-84-9964-105-8', 'ean' => '9788499641058', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 84, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 84, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 770, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964106.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Administración de sistemas gestores de bases de datos. R. D. 1691/2007', 'autor' => 'Hueso Ibañez Galindo, Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5eiqm', 'isbn' => '978-84-9964-106-5', 'ean' => '9788499641065', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 96, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 96, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 771, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964107.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 243.00, 'titulo' => 'Guía Didáctica. Administración de sistemas operativos. R. D. 1691/2007', 'autor' => 'Gómez López, Julio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a62up', 'isbn' => '978-84-9964-107-2', 'ean' => '9788499641072', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 108, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 108, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 772, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964108.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 191.00, 'titulo' => 'Guía Didáctica. Lenguajes de marcas y sistemas de gestión de la información. R. D. 1691/2007', 'autor' => 'Toharia Rabasco, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wtzur', 'isbn' => '978-84-9964-108-9', 'ean' => '9788499641089', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 82, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 82, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 773, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964109.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 218.00, 'titulo' => 'Guía Didáctica. Electrónica. R. D. 1691/2007', 'autor' => 'Garcia Lorenzo, Marcos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_17v5c', 'isbn' => '978-84-9964-109-6', 'ean' => '9788499641096', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 96, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 96, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 774, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964110.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Programación. R. D. 1691/2007', 'autor' => 'Moreno Perez, Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7ezt6', 'isbn' => '978-84-9964-110-2', 'ean' => '9788499641102', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 120, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 120, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 775, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964111.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 253.00, 'titulo' => 'Guía Didáctica. Comunicación empresarial y atención al cliente. R. D. 1691/2007', 'autor' => 'Tarodo Pisonero, Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_65q8e', 'isbn' => '978-84-9964-111-9', 'ean' => '9788499641119', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 82, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 82, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 776, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964112.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1341.00, 'titulo' => 'Recuperación de información. Un enfoque práctico y multidisciplinar', 'autor' => 'Fernández Luna, Juan Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hts85', 'isbn' => '978-84-9964-112-6', 'ean' => '9788499641126', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 814, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 814, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 777, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964113.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 725.00, 'titulo' => 'Sistemas de Información Geográfica y localización óptima de instalaciones y equipamientos. 2ª Edició', 'autor' => 'JOAQUÍN BOSQUE SENDRA; Mª JESÚS SALADO GARCÍA; ANTONIO MORENO JIMÉNEZ; DAVID OLIVEROS ESCRIBANO; VÍC', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-06-11', 'fecha_public' => '2012-06-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vmt3x', 'isbn' => '978-84-9964-113-3', 'ean' => '9788499641133', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 420, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 420, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 778, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964114.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 422.00, 'titulo' => 'Las Macros en Excel 2010', 'autor' => 'JOAN PALLEROLA COMAMALA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zqkco', 'isbn' => '978-84-9964-114-0', 'ean' => '9788499641140', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 779, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964115.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 351.00, 'titulo' => 'Las Macros en Access 2010', 'autor' => 'JOAN PALLEROLA COMAMALA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_81m94', 'isbn' => '978-84-9964-115-7', 'ean' => '9788499641157', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 780, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964116.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 519.00, 'titulo' => 'Seguridad en Sistemas Operativos Windows y GNU/Linux 2ª Edición actualizada', 'autor' => 'JULIO GÓMEZ LÓPEZ; EUGENIO EDUARDO VILLAR FERNÁNDEZ; ALFREDO ALCAYDE GARCÍA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fzy5e', 'isbn' => '978-84-9964-116-4', 'ean' => '9788499641164', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 781, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964117.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 619.00, 'titulo' => 'Redes sociales en la empresa. La revolución e impulso a nivel empresarial y profesional', 'autor' => 'ÁLVARO GÓMEZ VIEITES; CARLOS OTERO BARROS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1d930', 'isbn' => '978-84-9964-117-1', 'ean' => '9788499641171', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 358, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 358, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 782, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964118.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 899.00, 'titulo' => 'Programación en Oracle 11g SQL, SQL*Plus y PL/SQL', 'autor' => 'Teaching Soft Group', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e18jq', 'isbn' => '978-84-9964-118-8', 'ean' => '9788499641188', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 783, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964120.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 411.00, 'titulo' => 'Fundamentos de Matemáticas. Ejercicios resueltos con Maxima', 'autor' => 'Franco Brañas, José Ramón', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cuknf', 'isbn' => '978-84-9964-120-1', 'ean' => '9788499641201', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 784, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964121.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1008.00, 'titulo' => 'Electrónica Digital. Teoría Problemas y Simulación', 'autor' => 'ACHA ALEGRE, Sr. Santiago E.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-01-30', 'fecha_public' => '2012-01-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oph1c', 'isbn' => '978-84-9964-121-8', 'ean' => '9788499641218', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 598, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 598, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 785, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964122.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 638.00, 'titulo' => 'Sistemas de Información. Herramientas prácticas para la gestión empresarial. 4ª Edición', 'autor' => 'ÁLVARO GÓMEZ VIEITES; CARLOS SUÁREZ REY', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 4, 'fecha_disponibilidad' => '2011-10-28', 'fecha_public' => '2011-10-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k0hz2', 'isbn' => '978-84-9964-122-5', 'ean' => '9788499641225', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 786, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964123.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 317.00, 'titulo' => 'Guía de Campo de Outlook 2010', 'autor' => 'Cruz Herradón, Ana M.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-07-29', 'fecha_public' => '2011-07-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7rizs', 'isbn' => '978-84-9964-123-2', 'ean' => '9788499641232', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 787, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964124.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 827.00, 'titulo' => 'Desarrollo de Bases de Datos: casos prácticos desde el análisis a la implementación. 2ª Edición actu', 'autor' => 'ELENA CASTRO GALÁN; CÉSAR DE PABLO SÁNCHEZ; FRANCISCO JAVIER CALLE GÓMEZ; HARITH ALJYMAILY; JESICA R', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8q6cp', 'isbn' => '978-84-9964-124-9', 'ean' => '9788499641249', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 494, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 788, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964125.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 587.00, 'titulo' => 'Análisis de la dinámica urbana y simulación de escenarios de desarrollo futuro con Tecnologías de la', 'autor' => 'GOMEZ DELGADO, Sra. Montserrat', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-02-21', 'fecha_public' => '2012-02-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jtmq7', 'isbn' => '978-84-9964-125-6', 'ean' => '9788499641256', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 352, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 789, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964126.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 384.00, 'titulo' => 'Guía de Campo de Photoshop CS5', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-10-28', 'fecha_public' => '2011-10-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_levjd', 'isbn' => '978-84-9964-126-3', 'ean' => '9788499641263', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 790, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964127.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 363.00, 'titulo' => 'Navegar en Internet: Adobe Dreamweaver CS5', 'autor' => 'Pascual Gonzalez, Francisco', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2011-10-28', 'fecha_public' => '2011-10-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u0bh8', 'isbn' => '978-84-9964-127-0', 'ean' => '9788499641270', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 791, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964128.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 369.00, 'titulo' => 'Guía de Campo de Flash CS5', 'autor' => 'PASCUAL GONZALEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f7id3', 'isbn' => '978-84-9964-128-7', 'ean' => '9788499641287', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 268, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 268, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 792, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964129.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 730.00, 'titulo' => 'Comunicaciones Móviles. Sistemas GSM, UMTS y LTE', 'autor' => 'JOSÉ MANUEL HUIDOBRO MOYA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-02-21', 'fecha_public' => '2012-02-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_za2gx', 'isbn' => '978-84-9964-129-4', 'ean' => '9788499641294', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 428, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 428, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 793, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964131.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 720.00, 'titulo' => 'Sistemas de Información Geográfica. Aplicaciones en diagnósticos territoriales y decisiones geoambie', 'autor' => 'ROSA CAÑADA TORRECILLA; ANTONIO MORENO JIMÉNEZ; Mª JESÚS VIDAL DOMÍNGUEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_96s8u', 'isbn' => '978-84-9964-131-7', 'ean' => '9788499641317', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 430, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 430, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 794, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964132.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 612.00, 'titulo' => 'Manual Práctico de Gestión y Secretariado', 'autor' => 'RAÚL MORUECO GÓMEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-02-21', 'fecha_public' => '2012-02-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_udjnx', 'isbn' => '978-84-9964-132-4', 'ean' => '9788499641324', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 358, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 358, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 795, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964133.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1034.00, 'titulo' => 'AutoCAD 2012. Curso Práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lmyuv', 'isbn' => '978-84-9964-133-1', 'ean' => '9788499641331', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 612, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 612, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 796, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964134.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1189.00, 'titulo' => 'Electricidad: Fundamentos y problemas de electrostática, corriente continua, electromagnetismo y cor', 'autor' => 'ANTONIO COLMENAR SANTOS; JUAN LUIS HERNÁNDEZ MARTÍN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-06-11', 'fecha_public' => '2012-06-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x9tjk', 'isbn' => '978-84-9964-134-8', 'ean' => '9788499641348', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 704, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 704, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 797, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964135.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 680.00, 'titulo' => 'Aplicación del Plan General de Contabilidad.', 'autor' => 'ÁLVARO COUSO RUANO; MANUEL GUTIÉRREZ VIGUERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vlu75', 'isbn' => '978-84-9964-135-5', 'ean' => '9788499641355', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 798, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964136.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 625.00, 'titulo' => 'Criptografía, protección de datos y aplicaciones. Una guía para estudiantes y profesionales', 'autor' => 'AMPARO FUSTER SABATER; LUIS HERNÁNDEZ ENCINAS; FAUSTO MONTOYA VITINI; JAIME MUÑOZ MASQUE', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-04-10', 'fecha_public' => '2012-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nr8lh', 'isbn' => '978-84-9964-136-2', 'ean' => '9788499641362', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 364, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 364, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 799, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964137.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 543.00, 'titulo' => 'Enfoque práctico del Impuesto de Sociedades', 'autor' => 'MANUEL GUTIÉRREZ VIGUERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-02-27', 'fecha_public' => '2012-02-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jqpeb', 'isbn' => '978-84-9964-137-9', 'ean' => '9788499641379', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 318, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 318, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 800, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964138.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 511.00, 'titulo' => 'Programación shell. Aprende a programar con más de 200 ejercicios resueltos ', 'autor' => 'JULIO GÓMEZ LÓPEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-04-10', 'fecha_public' => '2012-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_umw1a', 'isbn' => '978-84-9964-138-6', 'ean' => '9788499641386', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 801, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964139.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 770.00, 'titulo' => 'Supuestos contables resueltos en base al Plan General de Contabilidad. 2ª Edición actualizada', 'autor' => 'ÁLVARO COUSO RUANO; MANUEL GUTIÉRREZ VIGUERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i5dpk', 'isbn' => '978-84-9964-139-3', 'ean' => '9788499641393', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 454, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 454, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 802, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964140.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 335.00, 'titulo' => 'Sé Feliz. Guía práctica para encontrar trabajo. 2ª Edición', 'autor' => 'ZURITA ESPINOSA, Sr. Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s6a4e', 'isbn' => '978-84-9964-140-9', 'ean' => '9788499641409', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 132, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 132, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 803, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964141.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 420.00, 'titulo' => 'Guía práctica de Fiscalidad para Autónomos y PYMES', 'autor' => 'SANDRA R. DE PRADO MORANTE', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ai345', 'isbn' => '978-84-9964-141-6', 'ean' => '9788499641416', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 804, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964142.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 480.00, 'titulo' => 'Visión Artificial: Rasgos Descriptores para el Reconocimiento de Objetos', 'autor' => 'JUAN HUMBERTO SOSSA AZUELA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mthck', 'isbn' => '978-84-9964-142-3', 'ean' => '9788499641423', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 805, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964143.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 756.00, 'titulo' => '3D Studio Max 2012. Curso Práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-02-21', 'fecha_public' => '2012-02-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4r7z2', 'isbn' => '978-84-9964-143-0', 'ean' => '9788499641430', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 440, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 440, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 806, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964144.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 771.00, 'titulo' => 'Instala, Administra, Securiza y Virtualiza Entornos Linux. 2ª Edición', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-04-10', 'fecha_public' => '2013-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9zlyr', 'isbn' => '978-84-9964-144-7', 'ean' => '9788499641447', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 458, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 458, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 807, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964146.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 369.00, 'titulo' => 'Técnicas combinatorias y de mutación para testing de sistemas software', 'autor' => 'POLO USAOLA, Sr. Macario', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4etox', 'isbn' => '978-84-9964-146-1', 'ean' => '9788499641461', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 808, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964147.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 284.00, 'titulo' => 'La Bola de Cristal. La gestión en los tiempos de la incertidumbre', 'autor' => 'Dr. Montgomery Lee, P.D.F.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-04-10', 'fecha_public' => '2012-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4ol7d', 'isbn' => '978-84-9964-147-8', 'ean' => '9788499641478', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 130, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 130, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 809, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964148.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 219.00, 'titulo' => 'Ingresos, Gastos, Sentido Común y Economía Real', 'autor' => 'DIAZ MARTIN, Sr. Angel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-01-11', 'fecha_public' => '2012-01-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2wk8d', 'isbn' => '978-84-9964-148-5', 'ean' => '9788499641485', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 106, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 106, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 810, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964150.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 830.00, 'titulo' => 'Adobe Dreamweaver CS5.5 Professional. Curso práctico', 'autor' => 'OROS CABELLO, Sr. José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-02-27', 'fecha_public' => '2012-02-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ny23', 'isbn' => '978-84-9964-150-8', 'ean' => '9788499641508', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 484, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 484, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 811, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964151.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 284.00, 'titulo' => 'Ya se quién tiene tu queso. Las cosas se pueden hacer bien o como siempre', 'autor' => 'Dr. Montgomery Lee, P.D.F.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-04-10', 'fecha_public' => '2012-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jm704', 'isbn' => '978-84-9964-151-5', 'ean' => '9788499641515', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 130, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 130, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 812, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964152.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 485.00, 'titulo' => 'El Efecto Riverside. Cuando los consultores dominaban la tierra', 'autor' => 'Dr. Montgomery Lee, P.D.F.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-04-10', 'fecha_public' => '2012-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xmjar', 'isbn' => '978-84-9964-152-2', 'ean' => '9788499641522', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 813, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964153.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 764.00, 'titulo' => 'Tratamiento informático de la información (GRADO MEDIO'],
- ['id' => 814, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964154.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 573.00, 'titulo' => 'Diseño de interfaces web (GRADO SUPERIOR'],
- ['id' => 815, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964155.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 596.00, 'titulo' => 'Desarrollo web en entorno cliente (GRADO SUPERIOR'],
- ['id' => 816, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964156.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 705.00, 'titulo' => 'Desarrollo web en entorno servidor (GRADO SUPERIOR'],
- ['id' => 817, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964157.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 643.00, 'titulo' => 'Bases de Datos (GRADO SUPERIOR'],
- ['id' => 818, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964158.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Gestión de bases de datos. 2ª Edición (GRADO SUPERIOR'],
- ['id' => 819, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964159.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Sistemas informáticos y redes locales (GRADO SUPERIOR'],
- ['id' => 820, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964160.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 904.00, 'titulo' => 'Implantación de aplicaciones web (GRADO SUPERIOR'],
- ['id' => 821, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964161.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones de fabricación (MF0087_1'],
- ['id' => 822, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964162.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones de montaje (MF0088_1'],
- ['id' => 823, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964163.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones auxiliares con tecnologías de la información y la comunicación (MF1209_1'],
- ['id' => 824, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964164.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Técnicas administrativas básicas de oficina (MF0969_1'],
- ['id' => 825, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964165.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones auxiliares de mantenimiento de sistemas microinformáticos (MF1208_1'],
- ['id' => 826, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964166.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 655.00, 'titulo' => 'Sistemas Operativos Monopuesto. 2ª Edición (GRADO MEDIO'],
- ['id' => 827, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964167.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Aplicaciones web (GRADO MEDIO'],
- ['id' => 828, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964168.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones administrativas de recursos humanos (GRADO MEDIO'],
- ['id' => 829, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964169.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 470.00, 'titulo' => 'Entornos de Desarrollo (GRADO SUPERIOR'],
- ['id' => 830, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964170.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Programación multimedia y dispositivos móviles (GRADO SUPERIOR'],
- ['id' => 831, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964171.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones auxiliares de montaje de componentes informáticos PCPI', 'autor' => 'JOSÉ Mª MARTÍN MARTÍN-POZUELO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => '2012-06-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r6q7z', 'isbn' => '978-84-9964-171-3', 'ean' => '9788499641713', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 832, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964172.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Tratamiento informático de la información. R. D. 1691/2007', 'autor' => 'MONGE MEDIAVILLA, Sra.Blanca Nieves', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2qb6w', 'isbn' => '978-84-9964-172-0', 'ean' => '9788499641720', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 142, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 142, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 833, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964173.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Implantación de aplicaciones web. R. D. 1691/2007', 'autor' => 'FERRER MARTÍNEZ, Sr. Juan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bt0ri', 'isbn' => '978-84-9964-173-7', 'ean' => '9788499641737', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 834, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964174.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Diseño de interfaces web. R. D. 1691/2007', 'autor' => 'CÓRCOLES TENDERO, Sr. José Eduardo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tbauv', 'isbn' => '978-84-9964-174-4', 'ean' => '9788499641744', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 56, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 56, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 835, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964175.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Desarrollo web en entorno cliente. R. D. 1691/2007', 'autor' => 'VARA MESA, Sr. Juan Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0p8im', 'isbn' => '978-84-9964-175-1', 'ean' => '9788499641751', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 836, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964176.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Desarrollo web en entorno servidor. R. D. 1691/2007', 'autor' => 'VARA MESA, Sr. Juan Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w3b4s', 'isbn' => '978-84-9964-176-8', 'ean' => '9788499641768', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 837, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964177.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Bases de datos. R. D. 1691/2007', 'autor' => 'HUESO IBAÑEZ GALINDO, Sr. Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fzqmv', 'isbn' => '978-84-9964-177-5', 'ean' => '9788499641775', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 142, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 142, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 838, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964178.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Gestión de bases de datos. 2ª Edición. R. D. 1691/2007', 'autor' => 'HUESO IBAÑEZ GALINDO, Sr. Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rq3fv', 'isbn' => '978-84-9964-178-2', 'ean' => '9788499641782', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 839, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964179.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Aplicaciones web. R. D. 1691/2007', 'autor' => 'FERRER MARTÍNEZ, Sr. Juan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0hme3', 'isbn' => '978-84-9964-179-9', 'ean' => '9788499641799', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 840, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964180.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Sistemas informáticos y redes locales. R. D. 1691/2007', 'autor' => 'MORENO PEREZ, Sr. Juan Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hv2ae', 'isbn' => '978-84-9964-180-5', 'ean' => '9788499641805', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 124, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 124, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 841, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964181.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Entornos de desarrollo. R. D. 1691/2007', 'autor' => 'CASADO IGLESIAS, Sr. Carlos', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9wnbr', 'isbn' => '978-84-9964-181-2', 'ean' => '9788499641812', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 82, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 82, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 842, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964182.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Sistemas operativos monopuesto. 2ª Edición. R. D. 1691/2007', 'autor' => 'RAYA CABRERA, Sr. José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w6y7z', 'isbn' => '978-84-9964-182-9', 'ean' => '9788499641829', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 60, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 60, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 843, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964183.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones administrativas de recursos humanos. R. D. 1691/2007', 'autor' => 'ALBARRAN FRANCISCO, Sr. José Miguel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7qnbr', 'isbn' => '978-84-9964-183-6', 'ean' => '9788499641836', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 844, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964184.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Programación multimedia y dispositivos móviles. R. D. 1691/2007', 'autor' => 'PAREDES VELASCO, Sr. Maximiliano', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r53p6', 'isbn' => '978-84-9964-184-3', 'ean' => '9788499641843', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 94, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 94, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 845, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964185.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones de fabricación (MF0087_1'],
- ['id' => 846, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964186.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones de montaje (MF0088_1'],
- ['id' => 847, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964187.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones auxiliares con tecnologías de la información y la comunicación (MF1209_1', 'autor' => 'RAYA CABRERA, Sr. José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-12', 'fecha_public' => '2012-09-12', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hbo8d', 'isbn' => '978-84-9964-187-4', 'ean' => '9788499641874', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 64, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 64, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 848, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964188.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Técnicas administrativas básicas de oficina (MF0969_1'],
- ['id' => 849, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964189.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones auxiliares de montaje de componentes informáticos (MF1207_1'],
- ['id' => 850, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964190.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Operaciones auxiliares de mantenimiento de sistemas microinformáticos (MF1208_1'],
- ['id' => 851, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964191.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 688.00, 'titulo' => 'ContaPlus 2012. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eiadu', 'isbn' => '978-84-9964-191-1', 'ean' => '9788499641911', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 390, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 390, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 852, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964192.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 724.00, 'titulo' => 'FacturaPlus 2012. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zfh3o', 'isbn' => '978-84-9964-192-8', 'ean' => '9788499641928', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 406, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 406, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 853, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964193.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 627.00, 'titulo' => 'NominaPlus 2012. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fgoj8', 'isbn' => '978-84-9964-193-5', 'ean' => '9788499641935', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 356, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 356, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 854, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964194.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 364.00, 'titulo' => 'ContaPlus 2012. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ct1ox', 'isbn' => '978-84-9964-194-2', 'ean' => '9788499641942', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 855, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964195.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 369.00, 'titulo' => 'FacturaPlus 2012. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0pysd', 'isbn' => '978-84-9964-195-9', 'ean' => '9788499641959', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 856, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964196.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 361.00, 'titulo' => 'NominaPlus 2012. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1gem4', 'isbn' => '978-84-9964-196-6', 'ean' => '9788499641966', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 204, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 204, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 857, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964197.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1085.00, 'titulo' => 'ContaPlus Élite 2012. Contabilidad informatizada', 'autor' => 'MUR NUÑO, Sra. Mª Angeles', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ai8xw', 'isbn' => '978-84-9964-197-3', 'ean' => '9788499641973', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 658, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 658, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 858, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964198.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1111.00, 'titulo' => 'PymePlus Elite 2012', 'autor' => 'MORUECO GOMEZ, Sr. Raúl', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dmy1x', 'isbn' => '978-84-9964-198-0', 'ean' => '9788499641980', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 668, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 668, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 859, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964200.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 710.00, 'titulo' => 'Introducción a la Computación Simbólica y Facilidades Maple. 2ª Edición actualizada y ampliada', 'autor' => 'SENDRA PONS, Sr. Juan Rafael', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-06-11', 'fecha_public' => '2012-06-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2v1ct', 'isbn' => '978-84-9964-200-0', 'ean' => '9788499642000', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 426, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 426, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 860, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964201.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'Desarrollo de aplicaciones para Android', 'autor' => 'ROBERTO MONTERO MIGUEL', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-07-11', 'fecha_public' => '2012-07-11', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rwc7a', 'isbn' => '978-84-9964-201-7', 'ean' => '9788499642017', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 861, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964202.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1642.00, 'titulo' => 'Instalaciones Eléctricas en Baja Tensión. Diseño, Cálculo, Dirección, Seguridad y Montaje. 2ª Edició', 'autor' => 'ANTONIO COLMENAR SANTOS; JUAN LUIS HERNÁNDEZ MARTÍN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2012-10-10', 'fecha_public' => '2012-10-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zd8ys', 'isbn' => '978-84-9964-202-4', 'ean' => '9788499642024', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 964, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 964, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 862, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964203.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1647.00, 'titulo' => 'Visual C#. Interfaces gráficas y aplicaciones para Internet con WPF, WCF y Silverlight', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lcbig', 'isbn' => '978-84-9964-203-1', 'ean' => '9788499642031', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 956, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 956, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 863, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964204.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1616.00, 'titulo' => 'Visual Basic. Interfaces gráficas y aplicaciones para Internet con WPF, WCF y Silverlight', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uliwm', 'isbn' => '978-84-9964-204-8', 'ean' => '9788499642048', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 938, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 938, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 864, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964206.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 400.00, 'titulo' => 'Mis Recursos Web. Trucos para Webmasters', 'autor' => 'LOPEZ QUIJADO, Sr. José', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pdszc', 'isbn' => '978-84-9964-206-2', 'ean' => '9788499642062', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 204, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 204, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 865, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964207.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 415.00, 'titulo' => 'Domine Joomla! Manual práctico', 'autor' => 'ANTONIO MENCHÉN PEÑUELA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-09-06', 'fecha_public' => '2012-09-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k1pvt', 'isbn' => '978-84-9964-207-9', 'ean' => '9788499642079', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 866, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964208.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1421.00, 'titulo' => 'Photoshop CS6. Superfácil', 'autor' => 'ENRIQUE CORDOBA MORENO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-10-10', 'fecha_public' => '2012-10-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1wzix', 'isbn' => '978-84-9964-208-6', 'ean' => '9788499642086', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 672, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 672, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 867, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964209.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 577.00, 'titulo' => 'Introducción a la Informática Forense', 'autor' => 'FRANCISCO LÁZARO DOMÍNGUEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2890e', 'isbn' => '978-84-9964-209-3', 'ean' => '9788499642093', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 340, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 868, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964210.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 970.00, 'titulo' => 'Cómo proyectar con Revit Architecture 2012', 'autor' => 'FRANCISCO BARONA CAPARRÓS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5iryj', 'isbn' => '978-84-9964-210-9', 'ean' => '9788499642109', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 869, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964211.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1034.00, 'titulo' => 'AutoCAD 2013. Curso práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-10-10', 'fecha_public' => '2012-10-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wd1ag', 'isbn' => '978-84-9964-211-6', 'ean' => '9788499642116', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 618, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 618, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 870, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964212.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 812.00, 'titulo' => '3D Studio Max 2013. Curso Práctico', 'autor' => 'CEBOLLA CEBOLLA, Sra. Castell', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-10-10', 'fecha_public' => '2012-10-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lv847', 'isbn' => '978-84-9964-212-3', 'ean' => '9788499642123', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 466, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 466, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 871, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964213.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'Domine Oracle 11g', 'autor' => 'DAVID ROLDÁN MARTÍNEZ; PEDRO J. VALDERAS ARANDA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-06-05', 'fecha_public' => '2013-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fplvc', 'isbn' => '978-84-9964-213-0', 'ean' => '9788499642130', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 722, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 722, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 872, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964214.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 670.00, 'titulo' => 'Redes CISCO. Guía de estudio para la certificación CCNA Security', 'autor' => 'ERNESTO ARIGANELLO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_isrh9', 'isbn' => '978-84-9964-214-7', 'ean' => '9788499642147', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 873, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964215.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 976.00, 'titulo' => 'Desarrollo de Software Dirigido por Modelos: Conceptos, Métodos y Herramientas', 'autor' => 'GARCIA RUBIO, Sr. Félix Oscar', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-04-10', 'fecha_public' => '2013-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9y6ja', 'isbn' => '978-84-9964-215-4', 'ean' => '9788499642154', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 586, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 586, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 874, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964216.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 372.00, 'titulo' => 'Guía de Campo de Photoshop CS6', 'autor' => 'PASCUAL GONZALEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2013-01-29', 'fecha_public' => '2013-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_830u7', 'isbn' => '978-84-9964-216-1', 'ean' => '9788499642161', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 875, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964217.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 487.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (6ª Edición'],
- ['id' => 876, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964218.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'Photoshop CS6. Curso práctico', 'autor' => 'ENRIQUE CORDOBA MORENO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2012-11-30', 'fecha_public' => '2012-11-30', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pwykz', 'isbn' => '978-84-9964-218-5', 'ean' => '9788499642185', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 877, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964219.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 350.00, 'titulo' => 'Navegar en Internet: Adobe Dreamweaver CS6', 'autor' => 'PASCUAL GONZALEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-04-10', 'fecha_public' => '2013-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_btepy', 'isbn' => '978-84-9964-219-2', 'ean' => '9788499642192', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 878, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964220.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 520.00, 'titulo' => 'Adobe Flash CS6 Professional. Curso práctico', 'autor' => 'CASLA VILLARES, Sr. Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-04-10', 'fecha_public' => '2013-04-10', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3zjui', 'isbn' => '978-84-9964-220-8', 'ean' => '9788499642208', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 879, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964221.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 404.00, 'titulo' => 'Microsoft Windows Server 2012. Instalación y configuración básicas', 'autor' => 'DAVID RODRÍGUEZ DE SEPÚLVEDA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-07-16', 'fecha_public' => '2013-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zk6ds', 'isbn' => '978-84-9964-221-5', 'ean' => '9788499642215', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 880, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964222.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 314.00, 'titulo' => 'Guía de campo de Microsoft Windows 8', 'autor' => 'ANTONIO MENCHÉN PEÑUELA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-06-05', 'fecha_public' => '2013-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fzq0l', 'isbn' => '978-84-9964-222-2', 'ean' => '9788499642222', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 881, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964223.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 706.00, 'titulo' => 'ContaPlus 2013. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0atfo', 'isbn' => '978-84-9964-223-9', 'ean' => '9788499642239', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 420, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 420, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 882, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964224.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 715.00, 'titulo' => 'FacturaPlus 2013. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4nlo0', 'isbn' => '978-84-9964-224-6', 'ean' => '9788499642246', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 424, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 424, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 883, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964225.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 584.00, 'titulo' => 'NominaPlus 2013. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_anuog', 'isbn' => '978-84-9964-225-3', 'ean' => '9788499642253', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 342, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 342, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 884, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964226.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 388.00, 'titulo' => 'ContaPlus 2013. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4uo5w', 'isbn' => '978-84-9964-226-0', 'ean' => '9788499642260', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 885, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964227.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 368.00, 'titulo' => 'FacturaPlus 2013. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3iv7s', 'isbn' => '978-84-9964-227-7', 'ean' => '9788499642277', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 886, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964228.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 358.00, 'titulo' => 'NominaPlus 2013. Guía básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-03-06', 'fecha_public' => '2013-03-06', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5bc6w', 'isbn' => '978-84-9964-228-4', 'ean' => '9788499642284', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 204, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 204, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 887, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964229.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 966.00, 'titulo' => 'Comunicaciones por Radio. Tecnologías, redes y servicios de radiocomunicaciones. El espectro electro', 'autor' => 'JOSÉ MANUEL HUIDOBRO MOYA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2013-06-05', 'fecha_public' => '2013-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rz1s3', 'isbn' => '978-84-9964-229-1', 'ean' => '9788499642291', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 588, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 588, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 888, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964230.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 531.00, 'titulo' => 'Programación Visual Basic con Excel 2010', 'autor' => 'Gomez Gutierrez, Juan Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2013-06-05', 'fecha_public' => '2013-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_og7vx', 'isbn' => '978-84-9964-230-7', 'ean' => '9788499642307', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 889, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964231.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 449.00, 'titulo' => 'Domine GIMP. Manual práctico', 'autor' => 'LAURA RAYA GONZÁLEZ; JOSÉ LUIS RAYA CABRERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-07-16', 'fecha_public' => '2013-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c1nr2', 'isbn' => '978-84-9964-231-4', 'ean' => '9788499642314', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 890, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964232.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 546.00, 'titulo' => 'BackTrack 5. Hacking de redes inalámbricas', 'autor' => 'DAVID ARBOLEDAS BRIHUEGA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-07-16', 'fecha_public' => '2013-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1zbc8', 'isbn' => '978-84-9964-232-1', 'ean' => '9788499642321', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 891, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964233.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 442.00, 'titulo' => 'Iniciación a la contabilidad desde cero', 'autor' => 'MANUEL GUTIÉRREZ VIGUERA; ÁLVARO COUSO RUANO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-06-05', 'fecha_public' => '2013-06-05', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e4wdt', 'isbn' => '978-84-9964-233-8', 'ean' => '9788499642338', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 892, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964234.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 399.00, 'titulo' => 'La pizarra digital interactiva. Sácale provecho en el aula', 'autor' => 'JUAN CARLOS MORENO PEREZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-07-16', 'fecha_public' => '2013-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0vrxn', 'isbn' => '978-84-9964-234-5', 'ean' => '9788499642345', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 893, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964235.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 515.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (7ª Edición'],
- ['id' => 894, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964236.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 841.00, 'titulo' => 'Microsoft Windows 8. Guía de usuario', 'autor' => 'PABLO CASLA VILLARES', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-07-16', 'fecha_public' => '2013-07-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rt70i', 'isbn' => '978-84-9964-236-9', 'ean' => '9788499642369', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 512, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 512, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 895, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964237.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 1012.00, 'titulo' => 'Aplicaciones Ofimáticas. 2ª Edición (GRADO MEDIO'],
- ['id' => 896, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964238.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 514.00, 'titulo' => 'Gestión de Proyectos (GRADO SUPERIOR'],
- ['id' => 897, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964239.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 499.00, 'titulo' => 'Acceso a Datos (GRADO SUPERIOR'],
- ['id' => 898, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964240.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 526.00, 'titulo' => 'Programación de Servicios y Procesos (GRADO SUPERIOR'],
- ['id' => 899, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964241.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 532.00, 'titulo' => 'Gestión Financiera (GRADO SUPERIOR'],
- ['id' => 900, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964242.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 495.00, 'titulo' => 'Contabilidad y Fiscalidad (GRADO SUPERIOR'],
- ['id' => 901, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964243.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Aplicaciones Ofimáticas. 2ª Edición. R. D. 1691/2007', 'autor' => 'RAYA CABRERA, Sr. José Luis', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ykfzw', 'isbn' => '978-84-9964-243-7', 'ean' => '9788499642437', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 70, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 70, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 902, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964244.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Gestión de Proyectos. R. D. 1691/2007', 'autor' => 'RODRIGO RAYA, Sr. Víctor', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cw3su', 'isbn' => '978-84-9964-244-4', 'ean' => '9788499642444', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 66, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 66, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 903, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964245.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Acceso a Datos. R. D. 1691/2007', 'autor' => 'CÓRCOLES TENDERO, Sr. José Eduardo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tdm8u', 'isbn' => '978-84-9964-245-1', 'ean' => '9788499642451', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 44, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 44, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 904, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964246.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Programación de Servicios y Procesos. R. D. 1691/2007', 'autor' => 'SÁNCHEZ CAMPOS, Sr. Alberto', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4kxzs', 'isbn' => '978-84-9964-246-8', 'ean' => '9788499642468', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 142, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 142, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 905, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964247.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Gestión Financiera. R. D. 1691/2007', 'autor' => 'PALLEROLA COMAMALA, Sr. Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dbj9x', 'isbn' => '978-84-9964-247-5', 'ean' => '9788499642475', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 90, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 90, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 906, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964248.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Guía Didáctica. Contabilidad y Fiscalidad. R. D. 1691/2007', 'autor' => 'GUTIERREZ VIGUERA, Sr. Manuel', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-09-09', 'fecha_public' => '2013-09-09', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ykhju', 'isbn' => '978-84-9964-248-2', 'ean' => '9788499642482', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 72, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 72, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 907, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964249.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 443.00, 'titulo' => 'Construye tu Web comercial. De la idea al negocio', 'autor' => 'GARCÍA NIETO, Sr. Juan Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-10-16', 'fecha_public' => '2013-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jap1n', 'isbn' => '978-84-9964-249-9', 'ean' => '9788499642499', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 908, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964250.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1162.00, 'titulo' => 'Domine Microsoft Windows Server 2012', 'autor' => 'JOSÉ LUIS RAYA CABRERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-11-25', 'fecha_public' => '2013-11-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mdz70', 'isbn' => '978-84-9964-250-5', 'ean' => '9788499642505', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 714, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 714, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 909, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964251.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 400.00, 'titulo' => 'Marketing para Autónomos', 'autor' => 'ANA Mª CRUZ HERRADÓN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-10-16', 'fecha_public' => '2013-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3uv2f', 'isbn' => '978-84-9964-251-2', 'ean' => '9788499642512', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 910, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964252.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 409.00, 'titulo' => 'Como hacer y exponer presentaciones exitosas', 'autor' => 'ANA Mª CRUZ HERRADÓN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-11-25', 'fecha_public' => '2013-11-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0temi', 'isbn' => '978-84-9964-252-9', 'ean' => '9788499642529', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 911, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964253.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 791.00, 'titulo' => 'AutoCAD 2014. Curso práctico', 'autor' => 'CASTELL CEBOLLA CEBOLLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-11-25', 'fecha_public' => '2013-11-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m1tou', 'isbn' => '978-84-9964-253-6', 'ean' => '9788499642536', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 912, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964254.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1321.00, 'titulo' => 'Photoshop CS6. Curso avanzado', 'autor' => 'ENRIQUE CORDOBA MORENO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-10-16', 'fecha_public' => '2013-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ubo1g', 'isbn' => '978-84-9964-254-3', 'ean' => '9788499642543', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 802, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 802, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 913, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964255.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual de Derecho Fiscal', 'autor' => 'CUADRADO RAMOS, Sr. Daniel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6ipha', 'isbn' => '978-84-9964-255-0', 'ean' => '9788499642550', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 134, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 134, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 914, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964256.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Operaciones Auxiliares de Mantenimiento de Sistemas Microinformáticos (MF1208_1'],
- ['id' => 915, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964257.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Administración Hardware de un Sistema Informático (MF0484_3'],
- ['id' => 916, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964258.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 406.00, 'titulo' => 'Administración Software de un Sistema Informático (MF0485_3'],
- ['id' => 917, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964259.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 376.00, 'titulo' => 'Sistemas Operativos y Aplicaciones Informáticas (MF0223_3'],
- ['id' => 918, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964260.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 432.00, 'titulo' => 'Aplicaciones Microinformáticas (MF0222_2'],
- ['id' => 919, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964261.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Diseño de Redes Telemáticas (MF0228_3'],
- ['id' => 920, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964262.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 484.00, 'titulo' => 'Integración de Componentes Software en Páginas Web (MF0951_2'],
- ['id' => 921, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964263.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 0.00, 'titulo' => 'Administración de Servicios de Transferencia de Archivos y Contenidos Multimedia (MF0497_3'],
- ['id' => 922, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964264.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1856.00, 'titulo' => 'Enciclopedia de Microsoft Visual - 4.ª ed.', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-10-16', 'fecha_public' => '2013-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xgkeq', 'isbn' => '978-84-9964-264-2', 'ean' => '9788499642642', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1118, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 1118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 5, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 923, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964265.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1795.00, 'titulo' => 'ENCICLOPEDIA DE MICROSOFT VISUAL BASIC . INTERFACES GRÁFICAS ... - 3-ª Edición', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-10-16', 'fecha_public' => '2013-10-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yqa9k', 'isbn' => '978-84-9964-265-9', 'ean' => '9788499642659', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1098, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 1098, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 924, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964266.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 519.00, 'titulo' => '3D Studio Max 2014. Curso Práctico', 'autor' => 'CASTELL CEBOLLA CEBOLLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2013-11-25', 'fecha_public' => '2013-11-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v8dt1', 'isbn' => '978-84-9964-266-6', 'ean' => '9788499642666', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 925, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964268.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 914.00, 'titulo' => 'Guía para el cierre contable y fiscal del ejercicio económico', 'autor' => 'MANUEL GUTIÉRREZ VIGUERA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-02-24', 'fecha_public' => '2014-02-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wzyca', 'isbn' => '978-84-9964-268-0', 'ean' => '9788499642680', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 446, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 446, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 926, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964269.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1121.00, 'titulo' => 'Fundamentos de robótica y mecatrónica con MATLAB y Simulink', 'autor' => 'ERIK VALDEMAR CUEVAS JIMÉNEZ; DANIEL ZALDÍVAR NAVARRO; MARCO ANTONIO PÉREZ CISNEROS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-24', 'fecha_public' => '2014-04-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oy1xg', 'isbn' => '978-84-9964-269-7', 'ean' => '9788499642697', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 682, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 682, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 927, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964270.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 440.00, 'titulo' => 'Domestica tu Mac', 'autor' => 'JUAN CARLOS MORENO PEREZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-01-13', 'fecha_public' => '2014-01-13', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vrieo', 'isbn' => '978-84-9964-270-3', 'ean' => '9788499642703', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 928, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964271.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 734.00, 'titulo' => 'Desarrollo Global de Software', 'autor' => 'MARIO G. PIATTINI VELTHUIS; FÉLIX ÓSCAR GARCÍA RUBIO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-01-14', 'fecha_public' => '2014-01-14', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1wp2m', 'isbn' => '978-84-9964-271-0', 'ean' => '9788499642710', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 456, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 456, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 929, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964272.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 856.00, 'titulo' => 'REDES CISCO.GUÍA DE ESTUDIO PARA LA CERTIFICACIÓN CCNA ROUTING Y SWITCHING', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-02-17', 'fecha_public' => '2014-02-17', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wv8m0', 'isbn' => '978-84-9964-272-7', 'ean' => '9788499642727', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 510, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 510, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 930, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964273.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 240.00, 'titulo' => 'Tablas dinámicas en Excel 2013', 'autor' => 'ANTONIO MENCHÉN PEÑUELA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-03-25', 'fecha_public' => '2014-03-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gwerc', 'isbn' => '978-84-9964-273-4', 'ean' => '9788499642734', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 931, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964274.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 740.00, 'titulo' => 'Telecomunicaciones. Tecnologías, Redes y Servicios. 2ª Edición actualizada', 'autor' => 'JOSÉ MANUEL HUIDOBRO MOYA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-23', 'fecha_public' => '2014-04-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yvlkp', 'isbn' => '978-84-9964-274-1', 'ean' => '9788499642741', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 434, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 434, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 932, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964276.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 397.00, 'titulo' => 'Arte de videojuegos. Da forma a tus sueños', 'autor' => 'DANIEL GONZÁLEZ JIMÉNEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2014-04-22', 'fecha_public' => '2014-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ez2bn', 'isbn' => '978-84-9964-276-5', 'ean' => '9788499642765', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 156, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 156, 'color_papel_id' => 2, 'color_gramaje' => 135, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 135, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 933, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964277.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 312.00, 'titulo' => 'Elige tu CMS. Wordpress, Moodle, Prestashop y más', 'autor' => 'DAVID RODRÍGUEZ DE SEPÚLVEDA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-05-22', 'fecha_public' => '2014-05-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zsoxj', 'isbn' => '978-84-9964-277-2', 'ean' => '9788499642772', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 934, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964278.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 470.00, 'titulo' => 'Ofimática. 2ª edición (MF0233_2'],
- ['id' => 935, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964279.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 404.00, 'titulo' => 'Gestión de Servicios en el Sistema Informático (MF0490_3'],
- ['id' => 936, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964281.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1038.00, 'titulo' => 'Domine Microsoft Office 2013', 'autor' => 'PASCUAL GONZALEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-03-25', 'fecha_public' => '2014-03-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_14fdx', 'isbn' => '978-84-9964-281-9', 'ean' => '9788499642819', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 632, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 632, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 937, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964282.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 698.00, 'titulo' => 'ContaPlus 2014. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-03-25', 'fecha_public' => '2014-03-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2le56', 'isbn' => '978-84-9964-282-6', 'ean' => '9788499642826', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 938, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964283.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 627.00, 'titulo' => 'NominaPlus 2014. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-22', 'fecha_public' => '2014-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lan3x', 'isbn' => '978-84-9964-283-3', 'ean' => '9788499642833', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 372, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 372, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 939, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964284.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 746.00, 'titulo' => 'FacturaPlus 2014. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-05-22', 'fecha_public' => '2014-05-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u8cyp', 'isbn' => '978-84-9964-284-0', 'ean' => '9788499642840', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 940, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964285.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 425.00, 'titulo' => 'ContaPlus 2014. Guía Básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-03-25', 'fecha_public' => '2014-03-25', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n2yd5', 'isbn' => '978-84-9964-285-7', 'ean' => '9788499642857', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 941, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964286.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 398.00, 'titulo' => 'NominaPlus 2014. Guía Básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-22', 'fecha_public' => '2014-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v562f', 'isbn' => '978-84-9964-286-4', 'ean' => '9788499642864', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 942, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964287.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 415.00, 'titulo' => 'FacturaPlus 2014. Guía Básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-05-22', 'fecha_public' => '2014-05-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9gphf', 'isbn' => '978-84-9964-287-1', 'ean' => '9788499642871', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 943, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964288.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 466.00, 'titulo' => 'Informática Básica.para Mayores 2ª Edición', 'autor' => 'ANA Mª CRUZ HERRADÓN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-05-22', 'fecha_public' => '2014-05-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lce2p', 'isbn' => '978-84-9964-288-8', 'ean' => '9788499642888', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 944, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964289.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 410.00, 'titulo' => 'Publicacion de paginas web (MF0952_2'],
- ['id' => 945, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964290.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1025.00, 'titulo' => 'Cómo modelar con Autodesk Inventor 2014', 'autor' => 'FRANCISCO BARONA CAPARRÓS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2014-06-27', 'fecha_public' => '2014-06-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2swkx', 'isbn' => '978-84-9964-290-1', 'ean' => '9788499642901', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 614, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 614, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 946, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964293.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Software ofimático de productividad en la nube', 'autor' => 'ANTONIO MENCHÉN PEÑUELA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z85jm', 'isbn' => '978-84-9964-293-2', 'ean' => '9788499642932', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 947, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964294.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 497.00, 'titulo' => 'Hacking práctico en Internet y redes de ordenadores', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-23', 'fecha_public' => '2014-04-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gws4f', 'isbn' => '978-84-9964-294-9', 'ean' => '9788499642949', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 948, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964295.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 548.00, 'titulo' => 'Hacking y seguridad de páginas Web', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-23', 'fecha_public' => '2014-04-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kyxos', 'isbn' => '978-84-9964-295-6', 'ean' => '9788499642956', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 949, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964296.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 478.00, 'titulo' => 'HACKING PRÁCTICO DE REDES WIFI Y RADIOFRECUENCUA', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-22', 'fecha_public' => '2014-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nl5yi', 'isbn' => '978-84-9964-296-3', 'ean' => '9788499642963', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 280, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 280, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 950, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964297.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 415.00, 'titulo' => 'Seguridad perimetral, monitorización y ataques en redes', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-04-22', 'fecha_public' => '2014-04-22', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zuy5l', 'isbn' => '978-84-9964-297-0', 'ean' => '9788499642970', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 951, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964298.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 476.00, 'titulo' => 'Guía Laboral. Nóminas', 'autor' => 'Contratos y Seguridad Social (8ª Edición'],
- ['id' => 952, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964299.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 340.00, 'titulo' => 'Word 2013. Manual Básico', 'autor' => 'PASCUAL GONZÁLEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-06-27', 'fecha_public' => '2014-06-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8pgta', 'isbn' => '978-84-9964-299-4', 'ean' => '9788499642994', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 953, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964300.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 319.00, 'titulo' => 'Programación en Lenguajes Estructurados (MF0494_3'],
- ['id' => 954, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964502.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 555.00, 'titulo' => 'Gestión de Proyectos con Microsoft Project 2013', 'autor' => 'MANUEL A. CASTRO GIL; FRANCISCO JAVIER CRUZ CASTAÑÓN', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-06-27', 'fecha_public' => '2014-06-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2soj1', 'isbn' => '978-84-9964-502-5', 'ean' => '9788499645025', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 955, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964503.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 385.00, 'titulo' => 'Excel 2013. Manual Básico', 'autor' => 'PASCUAL GONZÁLEZ, Sr. Francisco ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-06-27', 'fecha_public' => '2014-06-27', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7hdyl', 'isbn' => '978-84-9964-503-2', 'ean' => '9788499645032', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 956, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964505.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 548.00, 'titulo' => 'Proyectos con Robots LEGO', 'autor' => 'DANIEL ZALDÍVAR NAVARRO; ERIK VALDEMAR CUEVAS JIMÉNEZ; MARCO ANTONIO PÉREZ CISNEROS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-09-04', 'fecha_public' => '2014-09-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ov58t', 'isbn' => '978-84-9964-505-6', 'ean' => '9788499645056', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 957, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964506.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 254.00, 'titulo' => 'Configuración de las opciones de Excel', 'autor' => 'Gomez Gutierrez, Juan Antonio', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-09-04', 'fecha_public' => '2014-09-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nj2i0', 'isbn' => '978-84-9964-506-3', 'ean' => '9788499645063', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 140, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 140, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 958, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964507.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 527.00, 'titulo' => 'Métodos de investigación en ingeniería del software', 'autor' => 'MARIO G. PIATTINI VELTHUIS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-09-04', 'fecha_public' => '2014-09-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ey1qw', 'isbn' => '978-84-9964-507-0', 'ean' => '9788499645070', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 959, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964508.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 448.00, 'titulo' => 'Hackers. Aprende a atacar y defenderte. 2ª edición actualizada', 'autor' => 'JULIO GÓMEZ LÓPEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-09-04', 'fecha_public' => '2014-09-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2rycg', 'isbn' => '978-84-9964-508-7', 'ean' => '9788499645087', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 960, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964509.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 383.00, 'titulo' => 'Programación orientada a objetos (MF0227_3'],
- ['id' => 961, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964510.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 577.00, 'titulo' => 'Teoría, Diseño e Implementación de Compiladores de Lenguajes', 'autor' => 'ALEJANDRO RAMALLO MARTÍNEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2014-11-07', 'fecha_public' => '2014-11-07', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jmdpe', 'isbn' => '978-84-9964-510-0', 'ean' => '9788499645100', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 962, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964511.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 578.00, 'titulo' => 'Aprenda a programar con Lazarus', 'autor' => 'DAVID ARBOLEDAS BRIHUEGA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-11-04', 'fecha_public' => '2014-11-04', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ovtuf', 'isbn' => '978-84-9964-511-7', 'ean' => '9788499645117', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 334, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 334, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 963, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964512.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 382.00, 'titulo' => 'CorelCAD 2014. Paso a paso', 'autor' => 'CASTELL CEBOLLA CEBOLLA', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2014-10-24', 'fecha_public' => '2014-10-24', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s5w72', 'isbn' => '978-84-9964-512-4', 'ean' => '9788499645124', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 964, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964513.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 810.00, 'titulo' => 'Revit Architecture 2014 Avanzado', 'autor' => 'FRANCISCO BARONA CAPARRÓS', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2014-10-23', 'fecha_public' => '2014-10-23', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_to5g0', 'isbn' => '978-84-9964-513-1', 'ean' => '9788499645131', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 965, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964514.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 400.00, 'titulo' => 'Implantación de aplicaciones web en entornos Internet', 'autor' => 'Intranet y Extranet (MF0493_3'],
- ['id' => 966, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964515.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 489.00, 'titulo' => 'Operaciones auxiliares de montaje de componentes informáticos. 2ª edición (MF1207_1'],
- ['id' => 967, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964516.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 693.00, 'titulo' => 'UML. Aplicaciones en Java y C++', 'autor' => 'CARLOS JIMÉNEZ DE PARGA BERNAL', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2015-01-08', 'fecha_public' => '2015-01-08', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c8ltf', 'isbn' => '978-84-9964-516-2', 'ean' => '9788499645162', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 968, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964517.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1228.00, 'titulo' => 'SQL Server 2014 Soluciones prácticas de administración', 'autor' => 'SANTIAGO MEDINA SERRANO', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2015-01-16', 'fecha_public' => '2015-01-16', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vfygr', 'isbn' => '978-84-9964-517-9', 'ean' => '9788499645179', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 732, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 732, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 969, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964518.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 1130.00, 'titulo' => 'Excel 2013 avanzado (PEDIDO PERSONALIZADO'],
- ['id' => 970, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964519.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 526.00, 'titulo' => 'Crear una web desde cero - 2.ª ed.', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => '2014-11-18', 'fecha_public' => '2014-11-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xp02a', 'isbn' => '978-84-9964-519-3', 'ean' => '9788499645193', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 971, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964520.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 467.00, 'titulo' => 'Investigación forense de dispositivos móviles Android', 'autor' => 'FRANCISCO LÁZARO DOMÍNGUEZ', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => '2014-11-21', 'fecha_public' => '2014-11-21', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bl6h9', 'isbn' => '978-84-9964-520-9', 'ean' => '9788499645209', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 972, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964521.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 575.00, 'titulo' => 'Administración de redes telemáticas (MF0230_3'],
- ['id' => 973, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964522.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'JAVA. Interfaces gráficas y aplicaciones para Internet. 4ª Edición.', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yh46i', 'isbn' => '978-84-9964-522-3', 'ean' => '9788499645223', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1004, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 1003, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 974, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964523.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 235.00, 'titulo' => 'Grabación de Datos (MF0973_1'],
- ['id' => 975, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964524.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => 422.00, 'titulo' => 'Administración de Servicios Web (MF0495_3'],
- ['id' => 976, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964525.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'Padres Alerta Seguridad de los menores en Internet', 'autor' => 'MARTIN MARTIN-POZUELO, SR. Jose María', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2015-01-29', 'fecha_public' => '2015-01-29', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n65gv', 'isbn' => '978-84-9964-525-4', 'ean' => '9788499645254', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 236, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 236, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 977, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964526.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestion administrativa de las relaciones laborales (MF0237_3'],
- ['id' => 978, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964527.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'C/C++. Curso de programación. 4ª edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_aplg1', 'isbn' => '978-84-9964-527-8', 'ean' => '9788499645278', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 722, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 722, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 979, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964528.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Bioinformática El ADN a un solo clic', 'autor' => 'DAVID ROLDÁN MARTÍNEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j5zvh', 'isbn' => '978-84-9964-528-5', 'ean' => '9788499645285', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 262, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 261, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 980, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964529.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Administración de Sistemas Gestores de Bases de Datos. 2ª Edición (GRADO SUPERIOR'],
- ['id' => 981, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964530.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Sistemas de Información. 3ª edición ampliada y actualizada', 'autor' => 'FÉLIX ÓSCAR GARCÍA RUBIO; IGNACIO GARCIA RODRIGUEZ DE GUZMAN', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xekmt', 'isbn' => '978-84-9964-530-8', 'ean' => '9788499645308', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 698, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 698, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 982, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964531.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Inserción laboral', 'autor' => 'sensibilización medioambiental y en la igualdad de género. 2.ª edición (FC0003'],
- ['id' => 983, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964532.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía Laboral: Nóminas, contratos y seguridad social. 9ª Edición.', 'autor' => 'RAÚL MORUECO GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_woc9h', 'isbn' => '978-84-9964-532-2', 'ean' => '9788499645322', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 280, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 280, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 984, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964533.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Lync Server 2013 Standard Edition', 'autor' => 'SANTIAGO BUITRAGO REIS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9vz5p', 'isbn' => '978-84-9964-533-9', 'ean' => '9788499645339', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 424, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 424, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 985, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964534.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ContaPlus Flex. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ab45n', 'isbn' => '978-84-9964-534-6', 'ean' => '9788499645346', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 986, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964535.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ContaPlus Flex. Guía Básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6pu3y', 'isbn' => '978-84-9964-535-3', 'ean' => '9788499645353', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 987, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964536.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FacturaPlus Flex. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cwy5d', 'isbn' => '978-84-9964-536-0', 'ean' => '9788499645360', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 394, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 394, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 988, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964537.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FacturaPlus Flex. Guía Básica Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_euhdz', 'isbn' => '978-84-9964-537-7', 'ean' => '9788499645377', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 989, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964538.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'NominaPlus Flex. Manual Oficial', 'autor' => 'Sage Formación, S.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9s46w', 'isbn' => '978-84-9964-538-4', 'ean' => '9788499645384', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 990, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964539.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking con Ingeniería Social. Técnicas para hackear humanos', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1anep', 'isbn' => '978-84-9964-539-1', 'ean' => '9788499645391', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 991, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964541.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2015. Curso práctico', 'autor' => 'CASTELL CEBOLLA CEBOLLA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ln2p7', 'isbn' => '978-84-9964-541-4', 'ean' => '9788499645414', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 992, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964546.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'TWITTER. PRÁCTICO Y PROFESIONAL.', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_adus4', 'isbn' => '978-84-9964-546-9 ', 'ean' => '9788499645469 ', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 90, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 993, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964547.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Linkedin práctico y profesional', 'autor' => 'SORAYA PANIAGUA AMADOR', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0tas5', 'isbn' => '978-84-9964-547-6', 'ean' => '9788499645476', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 994, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964548.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'DISEÑO DE VIDEOJUEGOS - 2.º Edición', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r1fxl', 'isbn' => '978-84-9964-548-3', 'ean' => '9788499645483', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 176, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 995, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964550.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Robótica educativa', 'autor' => 'VÁZQUEZ FERNÁNDEZ-PACHECO, ANDRÉS SALOMÓN', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v7c81', 'isbn' => '978-84-9964-550-6', 'ean' => '9788499645506', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:21', 'deleted_at' => null],
- ['id' => 996, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/gestion-auxiliar-de-personal-mf0980-2-morueco-gomez-sr-raul.GIF', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964551.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestión auxiliar de personal (MF0980_2'],
- ['id' => 997, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964552.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Desarrollo de Interfaces (GRADO SUPERIOR'],
- ['id' => 998, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964553.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Administración de Sistemas Gestores de Bases de Datos. 2ª edición ', 'autor' => 'HUESO IBÁNEZ, LUIS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2i4ka', 'isbn' => '978-84-9964-553-7', 'ean' => '9788499645537', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 108, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 108, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 999, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964554.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Promociones en espacios comerciales (MF0503_3'],
- ['id' => 1000, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964555.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Nominaplus Flex. Guía Básica Oficial.', 'autor' => 'SAGE', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_syn2z', 'isbn' => '978-84-9964-555-1', 'ean' => '9788499645551', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1001, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964556.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones mediante el Framework de Spring', 'autor' => 'EUGENIA PÉREZ MARTÍNEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e4mfb', 'isbn' => '978-84-9964-556-8', 'ean' => '9788499645568', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1002, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964557.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Internet para mayores', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_znx1o', 'isbn' => '978-84-9964-557-5', 'ean' => '9788499645575', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1003, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964558.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hibernate. Persistencia de objetos en JEE', 'autor' => 'EUGENIA PÉREZ MARTÍNEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lqyw4', 'isbn' => '978-84-9964-558-2', 'ean' => '9788499645582', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1004, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964559.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones móviles con Android', 'autor' => 'Nolasco Valenzuela, Jorge Santiago', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t8ngp', 'isbn' => '978-84-9964-559-9', 'ean' => '9788499645599', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 512, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 512, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1005, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964560.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Protección de datos y seguridad de la información', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_of0iz', 'isbn' => '978-84-9964-560-5', 'ean' => '9788499645605', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 276, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1006, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964561.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Psicotrading', 'autor' => 'GERMÁN ANTELO SOLOZÁBAL', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qxomj', 'isbn' => '978-84-9964-561-2', 'ean' => '9788499645612', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 156, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 156, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1007, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/guia-didactica-desarrollo-de-interfaces-ferrer-martinez-juan.GIF', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964562.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Guía Didáctica. Desarrollo de Interfaces', 'autor' => 'FERRER MARTÍNEZ, JUAN', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ipsu5', 'isbn' => '978-84-9964-562-9', 'ean' => '9788499645629', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1008, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964563.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domótica', 'autor' => 'MERINO CÓRDOBA, SALVADOR', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p43l5', 'isbn' => '978-84-9964-563-6', 'ean' => '9788499645636', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1009, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964564.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes Cisco. Guía de estudio para la certificación CCNP Routing y Switching', 'autor' => 'ERNESTO ARIGANELLO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sg6c3', 'isbn' => '978-84-9964-564-3', 'ean' => '9788499645643', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 888, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 888, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1010, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964565.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Trading ¿Cómo hacer una mesa con tres patas?', 'autor' => 'ALEJANDRO DE LUIS GARCÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0gr4d', 'isbn' => '978-84-9964-565-0', 'ean' => '9788499645650', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 104, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 104, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1011, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964566.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Social Media', 'autor' => 'VÍCTOR PUIG VALLS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fwnsd', 'isbn' => '978-84-9964-566-7', 'ean' => '9788499645667', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 342, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 342, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1012, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964567.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de un sitio web con PHP y MySQL. 5ª Edición Actualizada', 'autor' => 'JACOBO PAVÓN PUERTAS - EZEQUIEL LLARENA BORGES', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7m9cq', 'isbn' => '978-84-9964-567-4', 'ean' => '9788499645674', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1013, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964568.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Elaboración de Materiales de Marketing y Comunicación (MF_2189_3'],
- ['id' => 1014, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964571.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño mecánico con Solidworks 2015', 'autor' => 'CÁRLOS RODRÍGUEZ VIDAL', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nlxoj', 'isbn' => '978-84-9964-571-1', 'ean' => '9788499645711', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1015, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964579.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestión de Fuerza de Ventas y Equipos Comerciales (MF2187_3'],
- ['id' => 1016, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964593.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Gestión de Eventos de Marketing y Comunicación (MF2187_3'],
- ['id' => 1017, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/programacion-web-en-el-entorno-cliente-mf0491-3-marcos-lopez-sanz-diana-marcela-sanchez-fuquene-maximiliano-paredes-velasco-angel-moreno-perez-j.GIF', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964595.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Programación web en el Entorno Cliente. (MF0491_3'],
- ['id' => 1018, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/programacion-web-en-entorno-servidor-mf0492-3-marcos-lopez-sanz-juan-manuel-vara-mesa-angel-moreno-perez-francisco-jose-soltero-domingo-diana.GIF', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964597.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Programación Web en Entorno Servidor. MF0492_3. ', 'autor' => 'MARCOS LÓPEZ SANZ; JUAN MANUEL VARA MESA; ÁNGEL MORENO PÉREZ; FRANCISCO JOSÉ SOLTERO DOMINGO; DIANA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4p8zw', 'isbn' => '978-84-9964-597-1', 'ean' => '9788499645971', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1019, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964600.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Windows 10 Mobile', 'autor' => 'SANTIAGO MEDINA SERRANO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l39mj', 'isbn' => '978-84-9964-600-8', 'ean' => '9788499646008', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 312, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 312, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1020, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964602.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Windows 10', 'autor' => 'JOSÉ LUIS RAYA CABRERA; PATRICIA CORELLA FERNÁNDEZ; PABLO CASLA VILLARES', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o37m2', 'isbn' => '978-84-9964-602-2', 'ean' => '9788499646022', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 490, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 490, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1021, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964607.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de juegos y aplicaciones para Android.', 'autor' => 'JOSÉ HIGINIO CERNUDA MENÉNDEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d1c0y', 'isbn' => '978-84-9964-607-7', 'ean' => '9788499646077', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1022, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964609.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Robótica y domótica básica con Arduino', 'autor' => 'PEDRO PORCUNA LÓPEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v675h', 'isbn' => '978-84-9964-609-1', 'ean' => '9788499646091', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1023, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964611.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Python. Paso a paso', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2we5k', 'isbn' => '978-84-9964-611-4', 'ean' => '9788499646114', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1024, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964613.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Arduino ', 'autor' => 'EUGENIO LÓPEZ ALDEA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w0urx', 'isbn' => '978-84-9964-613-8', 'ean' => '9788499646138', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 244, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 244, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1025, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964621.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de Aplicaciones iOS con SWIFT', 'autor' => 'ENRIQUE BLASCO BLANQUER', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wrhxo', 'isbn' => '978-84-9964-621-3', 'ean' => '9788499646213', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1026, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964623.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'HTML5, CSS3 y JQuery', 'autor' => 'JUAN ANTONIO RECIO GARCIA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ywprs', 'isbn' => '978-84-9964-623-7', 'ean' => '9788499646237', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1027, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964625.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Social Media. Herramientas y estrategias empresariales.', 'autor' => 'ALBERTO DOTRAS RODRÍGUEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xyirn', 'isbn' => '978-84-9964-625-1', 'ean' => '9788499646251', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1028, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964627.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Bitcoin ', 'autor' => 'SANTIAGO MÁRQUEZ SOLÍS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gi5rk', 'isbn' => '978-84-9964-627-5', 'ean' => '9788499646275', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 428, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 428, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1029, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964634.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Office 2016 Curso Práctico', 'autor' => 'Handz Valentin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z8hx9', 'isbn' => '978-84-9964-634-3', 'ean' => '9788499646343', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 286, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 286, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1030, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964644.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Privacidad y Ocultación de Información Digital Esteganografía', 'autor' => 'ALFONSO MUÑOZ MUÑOZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f4ckh', 'isbn' => '978-84-9964-644-2', 'ean' => '9788499646442', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1031, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964648.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking, Hardware y Firmware', 'autor' => 'STACK OVERFLOW S.L.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ul3ew', 'isbn' => '978-84-9964-648-0', 'ean' => '9788499646480', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 225, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-07-01 06:00:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1032, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/politicas-de-marketing-mf2185-3-ana-cruz-herradon.GIF', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964650.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Políticas de marketing (MF2185_3'],
- ['id' => 1033, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964652.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Google', 'autor' => 'DAVID RODRÍGUEZ DE SEPÚLVEDA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n19gc', 'isbn' => '978-84-9964-652-7', 'ean' => '9788499646527', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 278, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 278, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-08-01 07:07:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1034, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964656.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SEO Luego Existo', 'autor' => 'Miguel Ángel Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_se2dk', 'isbn' => '978-84-9964-656-5', 'ean' => '9788499646565', 'editorial' => 'RA-MA Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-08-01 09:59:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 1036, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788490/978849084830.gif', 'ancho' => 150.00, 'alto' => 230.00, 'peso' => null, 'titulo' => 'El síndrome de La Habana', 'autor' => 'Miguel Ángel González González', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => null, 'num_edic' => null, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => null, 'num_ilustr' => null, 'num_ilustr_color' => null, 'num_ilustr_bn' => null, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_ozcq8', 'isbn' => ' ', 'ean' => ' ', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 322, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 322, 'negro_papel_id' => 4, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 4, 'negro_pod_gramaje' => 90, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 2, 'cubierta_gramaje' => 300, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 2, 'cubierta_pod_gramaje' => 300, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2016-08-22 10:21:02', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21642, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897851.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 504.00, 'titulo' => 'Contabilidad para PYMES. Supuestos cuenta por cuenta basados en la realidad. 2ª edición', 'autor' => 'Pallerola Comamala, Joan', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2008-02-19', 'fecha_public' => '2008-02-19', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_o2hsm', 'isbn' => '978-84-7897-851-9', 'ean' => '9788478978519', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 372, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21643, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 150.00, 'alto' => 210.00, 'peso' => 0.00, 'titulo' => 'E-Book - Cómo encontrar trabajo', 'autor' => 'Zurita Espinosa, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_jc032', 'isbn' => '978-84-940090-4-4', 'ean' => '9788494009044', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 155, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21644, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - Domine WordPress. Manual práctico', 'autor' => 'Carazo Gil, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_n1wxb', 'isbn' => '978-84-940090-3-7', 'ean' => '9788494009037', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 227, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21645, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 0.00, 'titulo' => 'E-Book - El Efecto Riverside. Cuando los consultores dominaban la tierra', 'autor' => 'Lee, P.D.F., Dr. Montgomery', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => null, 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_6ycq0', 'isbn' => '978-84-940090-9-9', 'ean' => '9788494009099', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 0, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21646, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - Fábricas de Software: Experiencias, Tecnologías y Organización. 2ª Edición ampliada y actualizada', 'autor' => 'Piattini Velthuis, Mario G.;Garzás Parra, Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_foh1r', 'isbn' => '978-84-940090-5-1', 'ean' => '9788494009051', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 792, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21647, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - Java 2. Curso de Programación. 4ª Edición', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_l3oy2', 'isbn' => '978-84-940090-2-0', 'ean' => '9788494009020', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 811, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21648, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 0.00, 'titulo' => 'E-Book - La Bola de Cristal. La gestión en los tiempos de la incertidumbre', 'autor' => 'Lee, P.D.F., Dr. Montgomery', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => null, 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_uswmj', 'isbn' => '978-84-940090-7-5', 'ean' => '9788494009075', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 0, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21649, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - Microsoft Visual Basic .NET. Leng. y aplicaciones 3ª ed', 'autor' => 'Ceballos Sierra, Fco. Javier', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_bwoaq', 'isbn' => '978-84-940090-1-3', 'ean' => '9788494009013', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 508, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21650, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - ¡¡¡Qué Mala Suerte!!!', 'autor' => 'Lee, P.D.F., Dr. Montgomery', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_olsf2', 'isbn' => '978-84-940090-6-8', 'ean' => '9788494009068', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 417, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21651, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'E-Book - Ser empresario. Nuevos modelos de conducta empresarial', 'autor' => 'Zurita Espinosa, Pablo', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2012-03-28', 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_th7aq', 'isbn' => '978-84-940090-0-6', 'ean' => '9788494009006', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 123, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21652, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 0.00, 'titulo' => 'E-Book - Ya se quién tiene tu queso. Las cosas se pueden hacer bien o como siempre', 'autor' => 'Lee, P.D.F., Dr. Montgomery', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => null, 'fecha_public' => '2012-03-28', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_ozfnk', 'isbn' => '978-84-940090-8-2', 'ean' => '9788494009082', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 0, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:57:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21653, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897660.gif', 'ancho' => 0.00, 'alto' => 0.00, 'peso' => 422.00, 'titulo' => 'Organización basada en procesos, 2ª edición.', 'autor' => '', 'autor_entidad' => '', 'traductor' => '', 'ilustrador' => '', 'idioma' => 'spa', 'num_edic' => 0, 'fecha_disponibilidad' => '2006-01-18', 'fecha_public' => '2006-01-18', 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_u85te', 'isbn' => '978-84-7897-660-7', 'ean' => '9788478976607', 'editorial' => 'RA-MA S.A. Editorial y Publicaciones', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2017-04-10 04:58:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21704, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/redes-cisco-guia-de-estudio-para-la-certificacion-ccna-routing-y-switching-4-edicion-actualizada-ariganello-ariganello-ernesto.gif', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964664.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'REDES CISCO GUÍA DE ESTUDIO PARA LA CERTIFICACIÓN CCNA ROUTING Y SWITCHING. 4ª EDICIÓN ACTUALIZADA', 'autor' => 'ARIGANELLO ARIGANELLO, ERNESTO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'CISCO', 'isk' => 'isk_libro_20250420_les8y', 'isbn' => '978-84-9964-664-0', 'ean' => '9788499646640', 'editorial' => 'Editorial RA-MA', 'resumen' => 'Este libro representa una herramienta de autoestudio para el aprendizaje de los temas relacionados con los objetivos del examen de certificación CCNA Routing y Switching, a través de uno o dos exámenes.\n\n• CCNA v3.0 200-125\n• ICND 1 v3.0 100-105\n• ICND 2 v3.0 200-105\n\nEsta obra proporciona los conceptos, comandos y prácticas necesarias para configurar routers y switches Cisco para que funcionen en las redes corporativas y para alcanzar dicha certificación. Aunque este libro fue creado para aquellos que persiguen la certificación CCNA R&S, también es útil para administradores, personal de soporte o para los que simplemente desean entender más claramente el funcionamiento de las LAN, las WAN, sus protocolos y los servicios asociados.\n\nEl contenido está dividido en 11 capítulos y un anexo, bien definidos, cumpliendo los objetivos del examen de certificación CCNA R&S 200-125, según el criterio y experiencia de su autor. Con métodos claros y rápidos en temas como: cálculo de subredes, VLSM, Wildcards, IPv6, protocolos de capa 2 y 3, protocolos de enrutamiento, seguridad, ACL, servicios, etc. Diseminados por el texto hay muchas notas, consejos y comentarios que ayudan a la comprensión y memorización del temario.\n\nAl final del libro hay un anexo con consejos, tipos y números de exámenes, recomendaciones y preguntas similares a las que aparecen en el examen oficial de certificación CCNA R&S como apoyo y adiestramiento para examinarse. Su comprensión metódica y la complementación con prácticas harán, sin duda, llegar exitosamente al estudiante a la obtención de la tan valorada certificación CCNA R&S, convirtiéndose posteriormente en una guía de consulta permanente.', 'resumen_breve' => 'Este libro representa una herramienta de autoestudio para el aprendizaje de los temas relacionados con los objetivos del examen de certificación CCNA Routing y Switching, a través de uno o dos exámenes.\n\n• CCNA v3.0 200-125\n• ICND 1 v3.0 100-105\n• ICND 2 v3.0 200-105', 'sello' => '', 'paginas' => 572, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 572, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-20 19:39:40', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21705, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/microsoft-windows-powershell-rodriguez-de-sepulveda-maillo-david.gif', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964630.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => 0.00, 'titulo' => 'MICROSOFT WINDOWS POWERSHELL', 'autor' => 'RODRÍGUEZ DE SEPÚLVEDA MAILLO, DAVID', 'autor_entidad' => '', 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'Profesional', 'isk' => 'isk_libro_20250420_2zbia', 'isbn' => '978-84-9964-630-5', 'ean' => '9788499646305', 'editorial' => 'Editorial RA-MA', 'resumen' => 'El lector que decida acceder a esta obra descubrirá que trabajar con Microsoft Windows PowerShell de una manera inmediata no es tan difícil. \n\nEl desarrollo tiene un enfoque práctico intentando de esta manera que el contenido resulte lo más útil y funcional posible.\n\nEsta obra aborda soluciones gráficas y aplicables mediante consola. \n\nAsimismo, aquel que quiera entrar en un modo productivo heterogéneo encontrará respuestas gracias a las explicaciones abordadas.\n\nTodo lo que el lector puede encontrar en esta obra se resume en cinco puntos:\n\n• Trabajar con las diferentes versiones de Microsoft Windows PowerShell.\n\n• Entender Microsoft Windows PowerShell ISE.\n\n• Generación de Scripting.\n\n• Personalización de factores gráficos o seguridad del entorno.\n\n• Combinar Microsoft Windows PowerShell con soluciones gráficas de fácil puesta en producción. ', 'resumen_breve' => 'Todo lo que el lector puede encontrar en esta obra se resume en cinco puntos:\n• Trabajar con las diferentes versiones de Microsoft Windows PowerShell.\n• Entender Microsoft Windows PowerShell ISE.\n• Generación de Scripting.\n• Personalización de factores gráficos o seguridad del entorno.\n• Combinar Microsoft Windows PowerShell con soluciones gráficas de fácil puesta en producción. ', 'sello' => '', 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-20 19:49:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21707, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964658.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Python 3. Curso Práctico', 'autor' => 'Alberto Cuevas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_g1emz', 'isbn' => '978-84-9964-658-9', 'ean' => '9788499646589', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'Ra-Ma Editorial', 'paginas' => 560, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-24 07:49:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21708, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964674.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Robótica Educativa. Prácticas y Actividades', 'autor' => 'Vázquez Fernani', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_ezbsr', 'isbn' => '978-84-9964-674-9', 'ean' => '9788499646749', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'Ra-Ma Editorial', 'paginas' => 367, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 367, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-24 07:55:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21709, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964676.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad Digital e Informática', 'autor' => 'Juan Andrés Maíl', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_sqdol', 'isbn' => '978-84-9964-676-3', 'ean' => '9788499646763', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'Ra-Ma Editorial', 'paginas' => 174, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 174, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-24 08:00:23', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21710, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964687.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Tablas dinámicas en Excel 2016', 'autor' => 'Daniel Burrueco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_f6wi9', 'isbn' => '978-84-9964-687-9', 'ean' => '9788499646879', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'Ra-Ma Editorial', 'paginas' => 456, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 455, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-24 08:03:35', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21724, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964615.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño de interfaces en aplicaciones móviles', 'autor' => 'Sebastián Serna', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lse5f', 'isbn' => '978-84-9964-615-2', 'ean' => '9788499646152', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 214, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 214, 'color_papel_id' => 2, 'color_gramaje' => 135, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 135, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-27 07:03:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21725, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964654.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FOREX. Estrategias de inversión', 'autor' => 'Isabel Nogales', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xe40n', 'isbn' => '978-84-9964-654-1', 'ean' => '9788499646541', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 208, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-04-27 07:05:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21732, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964661.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Excel 2016. Paso a paso. 2ºED. Actualizada', 'autor' => 'Handz Valentin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_nfj45', 'isbn' => '978-84-9964-661-9', 'ean' => '9788499646619', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'RA-MA', 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-04 07:07:05', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21733, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Finanzas Básicas con Excel 2ºED', 'autor' => 'Teaching Soft Group', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_qd0os', 'isbn' => '978-84-9964-052-5', 'ean' => '9788499640525', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'RA-MA', 'paginas' => 294, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-04 07:11:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21741, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964666.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Google Adwors. Diseña tu estrategia ganadora.', 'autor' => 'FERNANDO MARTIN', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_l2e76', 'isbn' => '978-84-9964-666-4', 'ean' => '9788499646664', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 360, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-08 14:07:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21760, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897689.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Gestión contable bajo US-GAAP. Guía Práctica.', 'autor' => 'A.Alvarez Gonzalez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_wld97', 'isbn' => '978-84-7897-689-8', 'ean' => '9788478976898', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 320, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-12 10:38:21', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21806, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Como crear una empresa con una app. 2ºED', 'autor' => 'Pabloa A. Martinez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_sx47u', 'isbn' => '978-84-9964-704-3', 'ean' => '9788499647043', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 164, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:16:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21807, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964708.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diferenciación competitiva', 'autor' => 'Diego Peña', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wdg36', 'isbn' => '978-84-9964-708-1', 'ean' => '9788499647081', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 146, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 90, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:21:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21808, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964682.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estrategia empresarial. La ruta Equity Plus', 'autor' => 'Enrique Morales', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_q54gp', 'isbn' => '978-84-9964-682-4', 'ean' => '9788499646824', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 340, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:22:50', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21809, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964694.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Excel 2016 Avanzado', 'autor' => 'Juan Antonio Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_nq52o', 'isbn' => '978-84-9964-694-7', 'ean' => '9788499646947', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:24:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21810, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/build/images/cover.png', 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Manual de un CISO. Reflexiones no convencionales sobre la gerencia de la seguridad de la información.', 'autor' => 'Jeimy J. Cano M.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_14oue', 'isbn' => '978-84-9964-119-5', 'ean' => '9788499641195', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 198, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 198, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:27:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21811, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964639.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de Información Geográfica. 2ªEd. Actualizada.', 'autor' => 'Antonio Moreno Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_ue8hk', 'isbn' => '978-84-9964-639-8', 'ean' => '9788499646398', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 500, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 500, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-24 06:28:57', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 21820, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964698.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Criptografía sin secretos con Phyton', 'autor' => 'David Arboledas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_t2srw', 'isbn' => '978-84-9964-698-5', 'ean' => '9788499646985', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 450, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 450, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-26 08:41:31', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22790, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964700.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones Android con JAVA', 'autor' => ' ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_l49zi', 'isbn' => '978-84-9964-700-5', 'ean' => '9788499647005', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 434, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 434, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-29 08:48:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22793, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964692.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Autocad 2017 Curso Práctico', 'autor' => 'Castell Cebolla', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_rdcsl', 'isbn' => '978-84-9964-692-3', 'ean' => '9788499646923', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 526, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 526, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-30 09:33:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22794, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964710.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Curso de Narrativa en Videojuegos', 'autor' => 'José A. Corbal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_p18sa', 'isbn' => '978-84-9964-710-4', 'ean' => '9788499647104', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 180, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-05-30 09:40:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22819, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964689.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'WordPress Profesional Edicion 2017', 'autor' => 'Álvaro Corredo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5n3st', 'isbn' => '978-84-9964-689-3', 'ean' => '9788499646893', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 534, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 534, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-06-07 06:20:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22843, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964706.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Reversing, Ingeniería Inversa', 'autor' => 'Rubén Garrote García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_6c0jf', 'isbn' => '978-84-9964-706-7', 'ean' => '9788499647067', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-06-12 11:28:28', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 22844, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964685.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Windows 10 Anniversary Update Paso a Paso 2ª Ed.', 'autor' => 'Handz Valentin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_gnek9', 'isbn' => '978-84-9964-685-5', 'ean' => '9788499646855', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 302, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-06-12 11:30:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 23165, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964696.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Programación de Bases de Datos Relacionales (MF0226_3'],
- ['id' => 28606, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897630.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'WI-FI. Cómo contruir una red inalámbrica - 2.ª edición', 'autor' => 'José A. Carballar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dvqea', 'isbn' => '978-84-7897-630-2', 'ean' => '9788478976302', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 272, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-09-04 08:30:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 28804, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964668.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Planificación de la gestión y organización de los procesos de montaje de sistemas domóticos e inmóti', 'autor' => ' ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_98r2e', 'isbn' => '978-84-9964-668-8', 'ean' => '9788499646688', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 186, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-09-19 10:27:27', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 28887, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964714.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Revit MEP 2018 Curso Práctico', 'autor' => 'Luis Carlos De la Peña Arribas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bs8yv', 'isbn' => '978-84-9964-714-2', 'ean' => '9788499647142', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-09-26 10:10:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 28889, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/montaje-de-los-cuadros-de-control-y-dispositivos-electricos-y-electronicos-de-los-sistemas-domoticos-e-inmoticos-miguel-angel-sanchez-hernandez.', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964717.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'MONTAJE DE LOS CUADROS DE CONTROL Y DISPOSITIVOS ELÉCTRICOS Y ELECTRÓNICOS DE LOS SISTEMAS DOMÓTICOS E INMÓTICOS', 'autor' => 'Miguel Ángel Sánchez Hernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0w8jv', 'isbn' => '978-84-9964-717-3', 'ean' => '9788499647173', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 186, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-09-26 10:36:05', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 28950, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964660.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Interconexión de Redes Privadas y Redes Publicas. (MF0956_2'],
- ['id' => 28956, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964712.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Blender. Curso Práctico', 'autor' => 'Marcos Lidon Mañas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_70gnu', 'isbn' => '978-84-9964-712-8', 'ean' => '9788499647128', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 494, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-10-03 10:41:09', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 28957, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964713.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Unity 2017 X. Curso práctico', 'autor' => 'Adrián Domínguez Díaz, Fernando Navarro Pulido y Javier Manuel Castro González', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eh3oi', 'isbn' => '978-84-9964-713-5', 'ean' => '9788499647135', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 314, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 38, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-10-03 10:51:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29025, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/sistemas-seguros-de-acceso-y-transmision-de-datos-juan-andres-maillo-fernandez.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964716.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'SISTEMAS SEGUROS DE ACCESO Y TRANSMISIÓN DE DATOS', 'autor' => 'JUAN ANDRÉS MAILLO FERNÁNDEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => 'Antonio García Tomé', 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'Certificado de profesionalidad', 'isk' => 'isk_libro_20250420_x6hrj', 'isbn' => '978-84-9964-716-6', 'ean' => '9788499647166', 'editorial' => 'RAMA', 'resumen' => 'Este libro está dirigido a los estudiantes del Certificado de Profesionalidad de\nSeguridad Informática, correspondiente a la familia profesional de Informática y\nComunicaciones, del área profesional de Sistemas y Telemática.\nEl contenido del mismo tiene como objetivo proporcionar al lector las competencias\nnecesarias para diseñar e implementar sistemas seguros de acceso y transmisión de\ndatos.\nPara ello se imparten los contenidos necesarios para adquirir las capacidades de:\n• Implantar políticas de seguridad y cifrado de información en operaciones de\nintercambio de datos para obtener conexiones seguras según las necesidades de\nuso y dentro de las directivas de la organización.\n• Implantar sistemas de firma digital para asegurar la autenticidad, integridad y\nconfidencialidad de los datos que intervienen en una transferencia de información\nutilizando sistemas y protocolos criptográficos según las necesidades de uso y\ndentro de las directivas de la organización.\n• Implementar infraestructuras de clave pública para garantizar la seguridad según\nlos estándares del sistema y dentro de las directivas de la organización.\nPara todo ello, se van a tratar temas relativos a la seguridad de la información,\nla criptografía, los métodos de autenticación, el correo electrónico seguro, las\ncomunicaciones seguras o los protocolos de seguridad en conexiones Wi-Fi, entre\notros muchos aspectos relacionados con ellos.', 'resumen_breve' => 'Este libro está dirigido a los estudiantes del Certificado de Profesionalidad de\nSeguridad Informática, correspondiente a la familia profesional de Informática y\nComunicaciones, del área profesional de Sistemas y Telemática.\nEl contenido del mismo tiene como objetivo proporcionar al lector las competencias\nnecesarias para diseñar e implementar sistemas seguros de acceso y transmisión de\ndatos.', 'sello' => 'RAMA', 'paginas' => 160, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 160, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-10-10 08:37:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29027, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/organizacion-y-control-del-plan-de-medios-de-comunicacion-javier-timon.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964718.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ORGANIZACIÓN Y CONTROL DEL PLAN DE MEDIOS DE COMUNICACIÓN', 'autor' => 'JAVIER TIMÓN', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'Certificado de profesionalidad', 'isk' => 'isk_libro_20250420_o8wdl', 'isbn' => '978-84-9964-718-0', 'ean' => '9788499647180', 'editorial' => 'RAMA', 'resumen' => null, 'resumen_breve' => null, 'sello' => 'RAMA', 'paginas' => 118, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-10-10 09:21:44', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29157, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/alexa-ensenando-a-tus-dispositivos-a-escucharte-vvaa.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964722.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fundamentos de Programación con Alexa', 'autor' => 'V.V.A.A.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j9bch', 'isbn' => '978-84-9964-722-7', 'ean' => '9788499647227', 'editorial' => '', 'resumen' => 'ALEXA', 'resumen_breve' => 'Enseñando a tus dispositivos a escucharte', 'sello' => 'está dirigido a cualquier entusiasta de la\ntecnología (hobbistas', 'paginas' => 'técnicos', 'tipo_impresion' => 'estudiantes de programación', 'comentarios' => 'electrónica', 'negro_paginas' => 'ingenieros', 'negro_papel_id' => 'etc.'],
- ['id' => 'hobbistas', 'cliente_id' => 'técnicos', 'proveedor_id' => 'estudiantes de programación', 'user_created_id' => 'electrónica', 'user_update_id' => 'ingenieros', 'cubierta_archivo' => 'etc.'],
- ['id' => 29388, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964723.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java y C++. Paso a Paso.', 'autor' => 'Borja Vázquez Cuesta', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_g5yti', 'isbn' => '978-84-9964-723-4', 'ean' => '9788499647234', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-11-14 13:35:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29446, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estructuras de Datos Dinámicas', 'autor' => 'Libardo Pantoja', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_uqeir', 'isbn' => '978-84-9964-721-0', 'ean' => '9788499647210', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 326, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-11-23 13:45:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29447, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964719.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Raspberry Pi. Fundamentos y aplicaciones', 'autor' => 'Eugenio López Aldea', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_57h3v', 'isbn' => '978-84-9964-719-7', 'ean' => '9788499647197', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-11-23 13:52:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29504, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Gráficas con Phyton 3', 'autor' => 'Alberto Cuevas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_icjza', 'isbn' => '555-55-12345-11-3', 'ean' => '5555512345113', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 621, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 621, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-12-04 09:29:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29505, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964727.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seo Curso Práctico', 'autor' => 'Diego C. Martin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_wzinx', 'isbn' => '978-84-9964-727-2', 'ean' => '9788499647272', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 228, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-12-04 09:33:26', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 29611, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estética en videojuegos', 'autor' => 'José A. Corbal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_dnq36', 'isbn' => '978-84-9964-728-9', 'ean' => '9788499647289', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 184, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2017-12-19 09:57:46', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30106, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'TecnicasMultivariantesDeInterdependencia', 'autor' => 'Vidal Díaz de Rada', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_n7t0j', 'isbn' => '978-84-9964-725-8', 'ean' => '9788499647258', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 386, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 386, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-01-18 13:36:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30230, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964726.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones Gráficas con Phyton 3', 'autor' => 'Alberto Cuevas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_d03cq', 'isbn' => '9788499647265', 'ean' => '9788499647265', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 630, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 630, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-02-07 06:53:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30256, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SEO. Curso práctico. Cómo conseguir visitas a tu web con posicionamiento en buscadores', 'autor' => ' ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_7ibo0', 'isbn' => '978-84-9964-727-2', 'ean' => '9788499647272', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 238, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-02-09 11:38:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30284, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964702.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microsoft Windows Server 2016', 'autor' => ' ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_vm6tp', 'isbn' => '978-84-9964-702-9', 'ean' => '9788499647029', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-02-13 12:27:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30369, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad en Aplicaciones Web JAVA', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_on184', 'isbn' => '978-84-9964-732-6', 'ean' => '9788499647326', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 416, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-02-20 09:45:28', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30828, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964733.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Sistemas de Informacion. 4ª Edición Ampliada y Actualizada', 'autor' => ' ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_spnbr', 'isbn' => '978-84-9964-733-3', 'ean' => '9788499647333', 'editorial' => 'RaMa Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 696, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 696, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-13 11:20:14', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30830, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964729.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Kali Linux', 'autor' => 'David Santo Orcero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q2uvs', 'isbn' => '978-84-9964-729-6', 'ean' => '9788499647296', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 210, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-13 11:22:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30909, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964734.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Posicionamiento Web Para Todos', 'autor' => 'Rodrigo Tovar Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_c97aw', 'isbn' => '978-84-9964-734-0', 'ean' => '9788499647340', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 180, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-15 14:05:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30972, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad en Aplicaciones Web Java', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_x064f', 'isbn' => '978-84-9964-732-6', 'ean' => '9788499647326', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 430, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 430, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-19 12:59:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 30985, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Posicionamiento Web para todos, 2ª Edición', 'autor' => 'Rodrigo Tovar Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_0h98x', 'isbn' => '978-84-9964-734-0', 'ean' => '9788499647340', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 180, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-21 07:18:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 31055, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'REDES NEURONALES ARTIFICALES. FUNDAMENTOS. MODELOS Y APLICACIONES', 'autor' => 'Bonifacio Martin del Brio - Alfredo Sanz Molina', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_cumrj', 'isbn' => '978-84-7897-743-0', 'ean' => '9788478977430', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 442, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 442, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-26 04:26:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 31124, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Redes Neuronales Artificiales. Fundamentos, modelos y aplicaciones', 'autor' => 'José R. Hilera - Victor J. MArtinez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'Paradigma', 'isk' => 'isk_libro_20250420_36h9j', 'isbn' => '978-84-7897-155-6', 'ean' => '9788478971556', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 408, 'tipo_impresion' => null, 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-03-27 06:32:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 32489, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849999646.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Phython 3. Curso Práctico', 'autor' => 'Alberto Cuevas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_u2sqg', 'isbn' => '978-84-999964-658-9', 'ean' => '978849999646589', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 560, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-04-18 06:01:44', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 32882, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964735.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Usabilidad Web, Teoría y Uso', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_kspzm', 'isbn' => '978-84-9964-735-7', 'ean' => '9788499647357', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-05-04 11:04:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 32905, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964730.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Principios de Derecho Fiscal 2ª Edición actualizada', 'autor' => 'José Daniel Cuadrado Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_u5ckb', 'isbn' => '978-84-9964-730-2', 'ean' => '9788499647302', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 136, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-05-08 07:01:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 32906, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964731.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking ético con herramientas Python', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_us4n3', 'isbn' => '978-84-9964-731-9', 'ean' => '9788499647319', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 290, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-05-08 07:05:13', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 32934, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964738.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'LEGO EV3 Programación de Robots', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_lntdm', 'isbn' => '978-84-9964-738-8', 'ean' => '9788499647388', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-05-09 10:23:50', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33063, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964737.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Servicios Especiales De Restaurante', 'autor' => 'ADRIÁN FLORES ALEGRÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_3vbtf', 'isbn' => '978-84-9964-737-1', 'ean' => '9788499647371', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 122, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 122, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-05-24 07:04:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33160, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964741.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de Medida y Regulacion', 'autor' => 'CÉSAR UTRILLAS GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_8f5pw', 'isbn' => '978-84-9964-741-8', 'ean' => '9788499647418', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 352, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 352, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-05 09:29:52', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33271, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964736.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMUNICACIÓN EN LENGUA CASTELLANA NIVEL 2', 'autor' => 'Mª DEL MAR ALIQUE PÉREZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_mk9zr', 'isbn' => '978-84-9964-736-4', 'ean' => '9788499647364', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-20 09:49:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33272, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964740.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Shopper Marketing Estrategias de Mercado', 'autor' => 'Georg August Krentzel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_y01ps', 'isbn' => '978-84-9964-740-1', 'ean' => '9788499647401', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 246, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 246, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-20 09:51:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33273, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964744.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'G Suite for Education Administración y configuración en centros educativos', 'autor' => 'Virgilio Gonzalo Edesa', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_t7fxw', 'isbn' => '978-84-9964-744-9', 'ean' => '9788499647449', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-20 09:53:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33274, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964755.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microcontrolador STM32 Programación y Desarrollo', 'autor' => 'Jesús María Pestano Herrera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_upzjf', 'isbn' => '978-84-9964-755-5', 'ean' => '9788499647555', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 364, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 364, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-20 09:58:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33319, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788415/978841545757.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Planifica tu éxito, de aprendiz a empresario EDICION AUTENTIA ', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6xcht', 'isbn' => '9788415457572', 'ean' => '9788415457572', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 476, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 444, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 32, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 80.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-06-22 10:50:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33482, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964058.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'DOMINE OFFICE 2010 VOL. I', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wonkz', 'isbn' => '9788499640585', 'ean' => '9788499640585', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 340, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-05 05:54:21', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33497, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964745.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Arduino. Curso Práctico Edición 2018', 'autor' => 'Alfredo Moreno Muñoz - Sheila Córcoles Córcoles', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_39d7x', 'isbn' => '978-84-9964-745-6', 'ean' => '9788499647456', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 452, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 452, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-06 10:26:31', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33520, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964743.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ingeniería de sonido Conceptos, fundamentos y casos prácticos', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_il45g', 'isbn' => '978-84-9964-743-2', 'ean' => '9788499647432', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-10 08:08:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33554, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964750.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Datos', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_sd54i', 'isbn' => '978-84-9964-750-0', 'ean' => '9788499647500', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-16 12:45:52', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33603, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964754.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación orientada a objetos con C++ 5.ª edición', 'autor' => 'Francisco Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yldcm', 'isbn' => '978-84-9964-754-8', 'ean' => '9788499647548', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 820, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 820, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-20 10:47:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33608, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964746.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Tramitación Procesal y Administrativa 30 Supuestos prácticos', 'autor' => 'Fco. José RODRÍGUEZ MÁRQUEZ - Salvador ZOTANO SÁNCHEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_5z37g', 'isbn' => '978-84-9964-746-3', 'ean' => '9788499647463', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 262, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 262, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-07-23 11:55:38', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33728, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964760.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Modelado de personajes con Blender', 'autor' => 'Marcos Lidon Mañas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_htdgi', 'isbn' => '978-84-9964-760-9', 'ean' => '9788499647609', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-08-08 04:19:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33729, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964759.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mantenimiento y Evolución de Sistemas de Información', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_uspg0', 'isbn' => '978-84-9964-759-3', 'ean' => '9788499647593', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 356, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 356, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-08-08 04:23:29', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33859, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964742.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía didáctica del profesor. Sistemas de Medida y Regulación', 'autor' => ' CÉSAR UTRILLAS GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_mpbx8', 'isbn' => '978-84-9964-742-5', 'ean' => '9788499647425', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 106, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 106, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-09-03 06:57:36', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33860, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964758.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Python Aplicaciones prácticas', 'autor' => 'Jorge Santiago Nolasco Valenzuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_i8hwx', 'isbn' => '978-84-9964-758-6', 'ean' => '9788499647586', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 518, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 518, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-09-03 07:01:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33932, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964765.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Microservicios Un enfoque integrado ', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_k0c6h', 'isbn' => '978-84-9964-765-4', 'ean' => '9788499647654', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-09-07 08:24:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 33933, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Guía didáctica del profesor. Sistemas de Medida y Regulación', 'autor' => ' CÉSAR UTRILLAS GÓMEZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_apl2z', 'isbn' => '978-84-9964-742-5', 'ean' => '9788499647425', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 106, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 106, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-09-07 08:26:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34064, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964739.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Realidad Virtual y Realidad Aumentada. Desarrollo de aplicaciones', 'autor' => 'Fernando Navarro, Antonio Martínez y José M. Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_f6wn0', 'isbn' => '978-84-9964-739-5', 'ean' => '9788499647395', 'editorial' => 'Ra-Ma editorial', 'resumen' => '', 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 2, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 2, 'negro_pod_gramaje' => 90, 'color_paginas' => 56, 'color_papel_id' => 2, 'color_gramaje' => 90, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 90, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-09-17 10:06:46', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34388, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964752.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Servicio en Restaurante', 'autor' => 'Adriá Flores Alegria', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_sgh7w', 'isbn' => '978-84-9964-752-4', 'ean' => '9788499647524', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 276, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 276, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-09 11:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34403, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964761.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => ' Circuitos digitales. Problemas y ejercicios resueltos', 'autor' => 'V.V.A.A', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_aqd3u', 'isbn' => '978-84-9964-761-6', 'ean' => '9788499647616', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 416, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 416, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-10 10:49:05', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34443, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964763.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprende a programar jugando con Scratch', 'autor' => 'Edgar D’Andrea', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_pgwoa', 'isbn' => '978-84-9964-763-0', 'ean' => '9788499647630', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 456, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 456, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-16 09:11:09', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34445, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964753.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ELABORACIÓN Y ACABADO DE PLATOS A LA VISTA DEL CLIENTE', 'autor' => 'ADRIÁN FLORES ALEGRÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_gmyof', 'isbn' => '978-84-9964-753-1', 'ean' => '9788499647531', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 100, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 100, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-17 08:46:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34558, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964764.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Unity y C# Desarrollo de Videojuegos', 'autor' => 'Luis Ruela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_c8xit', 'isbn' => '978-84-9964-764-7', 'ean' => '9788499647647', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 444, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 444, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-31 07:23:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34584, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964768.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Bitcoin. ¿Qué? ¿Cuándo? ¿Dónde? ¿Cómo? ¿Por qué? 72 respuestas para comprender el futuro del dinero', 'autor' => 'Javier Tolj', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2dqyg', 'isbn' => '978-84-9964-768-5', 'ean' => '9788499647685', 'editorial' => 'RA-MA EDITORIAL', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 2, 'negro_gramaje' => 115, 'negro_pod_papel_id' => 2, 'negro_pod_gramaje' => 115, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-10-31 16:15:10', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34675, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964767.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking Etico. 3ª Edición. ¡Cómo convertirse en hacker ético en 21 días o menos!', 'autor' => 'Karina Astudillo B.', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_akz5h', 'isbn' => '978-84-9964-767-8', 'ean' => '9788499647678', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 310, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-11-12 05:37:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34783, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964766.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis de Malware para Sistemas Windows', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_agqlo', 'isbn' => '978-84-9964-766-1', 'ean' => '9788499647661', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 554, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 554, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-11-20 12:24:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34793, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964751.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Principios de Derecho Mercantil 2ª Edición actualizada', 'autor' => 'José Daniel Cuadrado Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_8k10w', 'isbn' => '978-84-9964-751-7', 'ean' => '9788499647517', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-11-21 05:45:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 34829, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964796.gif', 'ancho' => 200.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'APLICACIÓN DE CONCEPTOS BÁSICOS DE LA TEORÍA DE GÉNERO Y DEL LENGUAJE NO SEXISTA', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_aezgo', 'isbn' => '978-84-9964-796-8', 'ean' => '9788499647968', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 160, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 160, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-11-23 08:58:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35001, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964771.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Blockchain. Fundamentos de la cadena de bloques.', 'autor' => 'María Isabel Rojo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_7ldx2', 'isbn' => '978-84-9964-771-5', 'ean' => '9788499647715', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-12-10 13:32:53', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35114, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964798.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Videojuegos 2D Desarrollo con Python', 'autor' => 'Alberto Cuevas Álvarez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_kefjo', 'isbn' => '978-84-9964-798-2', 'ean' => '9788499647982', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 334, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 334, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-12-20 04:42:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35117, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964690.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Minecraft Descubre un nuevo mundo', 'autor' => 'Johan Valley', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_jepbn', 'isbn' => '978-84-9964-690-9', 'ean' => '9788499646909', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 158, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 158, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-12-20 11:47:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35151, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964769.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'MARCO ORGANIZATIVO Y NORMATIVO DE LAS ADMINISTRACIONES PÚBLICAS Y DE LA UNIÓN EUROPEA', 'autor' => 'MARÍA EUGENIA PÉREZ MONTERO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_2ziym', 'isbn' => '978-84-9964-769-2', 'ean' => '9788499647692', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 156, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 156, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-12-21 07:06:29', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35168, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964797.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fortnite SALVAR EL MUNDO + BATTLE ROYALE', 'autor' => 'Fernando Navarro Izquierdo - Fernando Navarro Pulido', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_rcgd9', 'isbn' => '978-84-9964-797-5', 'ean' => '9788499647975', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 168, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 168, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2018-12-26 11:09:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35471, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964799.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Internet de las cosas', 'autor' => 'Manel López i Seuba', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_3srpa', 'isbn' => '978-84-9964-799-9', 'ean' => '9788499647999', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 364, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 364, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-01-24 10:27:13', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35488, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964800.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AutoCAD 2019 Curso Práctico', 'autor' => 'Castell Cebolla Cebolla - Jaime Santoro Recio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_5wig2', 'isbn' => '978-84-9964-800-2', 'ean' => '9788499648002', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-01-28 04:52:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35552, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964801.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de Videojuegos Desde el Diseño a la Comercialización', 'autor' => 'Nelson Mauricio García Arias - Yohiner Moreno Salamanca', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_jqkpu', 'isbn' => '978-84-9964-801-9', 'ean' => '9788499648019', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-01-31 04:37:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 35780, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964806.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estrategia empresarial práctica. Del diagnóstico a la implantación', 'autor' => 'José Antonio Rodero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_gi2dx', 'isbn' => '978-84-9964-806-4', 'ean' => '9788499648064', 'editorial' => 'RA-MA editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 448, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 448, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-02-20 07:43:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36027, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964802.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Competitividad estratégica. Estrategia y digitalización en la revolución tecnológica.', 'autor' => 'Diego Peña', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_4vwky', 'isbn' => '978-84-9964-802-6', 'ean' => '9788499648026', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 2, 'cubierta_gramaje' => 300, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 2, 'cubierta_pod_gramaje' => 300, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-03-08 11:11:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36084, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964803.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Cinema 4D. Curso práctico', 'autor' => 'Javier Valentín Silvestre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_zde2w', 'isbn' => '978-84-9964-803-3', 'ean' => '9788499648033', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 614, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 614, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-03-13 04:42:38', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36238, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964770.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMPETENCIA CLAVE EN MATEMÁTICAS NIVEL 2', 'autor' => 'Mª DEL MAR ALIQUE PÉREZ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_1jk8i', 'isbn' => '978-84-9964-770-8', 'ean' => '9788499647708', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-03-21 11:47:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36383, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964810.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones con Android', 'autor' => 'Jorge Santiago Nolasco Valenzuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_yunt6', 'isbn' => '978-84-9964-810-1', 'ean' => '9788499648101', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-04-02 14:30:44', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36527, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964807.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Apex Legends. Técnicas, Trucos y Estrategias', 'autor' => 'Fernando Navarro Izquierdo y Fernando Navarro Pulido', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_si9tq', 'isbn' => '978-84-9964-807-1', 'ean' => '9788499648071', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 104, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 104, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-04-15 10:56:09', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36648, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964812.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'C/C++ Curso de programación 5.ª edición', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_m2sqa', 'isbn' => '978-84-9964-812-5', 'ean' => '9788499648125', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 806, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 806, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-04-29 08:20:03', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36666, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964811.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Automatización con GRAFCET y Autómata programable. Problemas resueltos.', 'autor' => 'Francisco Ojeda Cherta', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_ljrbu', 'isbn' => '978-84-9964-811-8', 'ean' => '9788499648118', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 380, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 380, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-04-30 05:34:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36753, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964805.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación Orientada a Objetos en Java', 'autor' => 'Francisco Blasco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '- ', 'isk' => 'isk_libro_20250420_7c6xp', 'isbn' => '978-84-9964-805-7', 'ean' => '9788499648057', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 588, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 588, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-05-08 14:48:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36758, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'C/C++ Curso de programación 5.ª edición', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_vhup6', 'isbn' => '978-84-9964-xxx-x', 'ean' => '978849964xxxx', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 806, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 806, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-05-09 08:41:39', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36811, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964814.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Alimentación Intuitiva. Di adiós a las dietas y siéntete bien por dentro y por fuera.', 'autor' => 'Angie Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_6sx3v', 'isbn' => '978-84-9964-814-9', 'ean' => '9788499648149', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-05-14 07:06:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36854, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964808.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Crea tu página web en un día', 'autor' => 'Jesús García Fernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_eslid', 'isbn' => '978-84-9964-808-8', 'ean' => '9788499648088', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 120, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 120, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-05-17 09:10:05', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 36916, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964813.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Cómo ser el N.º 1 Técnicas y estrategias prácticas de SEO', 'autor' => 'Angie Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_iy6f5', 'isbn' => '978-84-9964-813-2', 'ean' => '9788499648132', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-05-24 10:58:47', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37035, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964809.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'PROCESOS DE PARTICIPACIÓN DE MUJERES Y HOMBRES Y CREACIÓN DE REDES PARA EL IMPULSO DE LA IGUALDAD', 'autor' => 'Marta González Bartolomé', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ejiv2', 'isbn' => '978-84-9964-809-5', 'ean' => '9788499648095', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 118, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-06-06 04:33:21', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37082, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964820.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Oracle Assets Guía de apis, scripts e interfaces', 'autor' => 'Sofía Ramírez Vázquez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_9kwqc', 'isbn' => '978-84-9964-820-0', 'ean' => '9788499648200', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-06-10 07:43:32', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37175, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964839.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fornite. Modo creativo + Battle Royale', 'autor' => 'Fernando Navarro Izquierdo y Fernando Navarro Pulido', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_yv9nc', 'isbn' => '978-84-9964-839-2', 'ean' => '9788499648392', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 150, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 150, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-06-24 07:28:57', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37248, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964841.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'INSTALACIÓN Y CONFIGURACIÓN DE APLICACIONES INFORMÁTICAS - Ed.2019', 'autor' => 'LAURA RAYA GONZÁLEZ y ALBERTO SÁNCHEZ CAMPOS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_a5q2s', 'isbn' => '978-84-9964-841-5', 'ean' => '9788499648415', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 124, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 124, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-07-01 05:07:42', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37249, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964840.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'El libro blanco del hacker', 'autor' => 'Pablo Gutiérrez Salazar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_2qdfm', 'isbn' => '978-84-9964-840-8', 'ean' => '9788499648408', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '-', 'paginas' => 300, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 300, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-07-01 05:22:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37279, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964843.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Servicios Basados en Tecnologías de la Información', 'autor' => 'Mario G. Piattini Velthuis', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hgw8i', 'isbn' => '978-84-9964-843-9', 'ean' => '9788499648439', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-07-04 09:34:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37340, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Automatización con GRAFCET y Autómata programable. Problemas resueltos', 'autor' => 'Francisco Ojeda Cherta', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => ' ', 'isk' => 'isk_libro_20250420_vp67d', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => ' ', 'paginas' => 380, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2019-07-12 10:15:42', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37442, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964847.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Amazon Echo y Alexa. Configuración, Consejos y Trucos Prácticos.', 'autor' => 'Alejandro Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ig5cn', 'isbn' => '978-84-9964-847-7', 'ean' => '9788499648477', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-07-23 10:14:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37459, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964845.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Oratoria Experiencial. Conecta con tu público y sus emociones', 'autor' => 'Nuria Neira', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ku75c', 'isbn' => '978-84-9964-845-3', 'ean' => '9788499648453', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 120, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 120, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-07-24 09:23:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37674, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964846.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de Macros en Excel. Programación con Visual Basic para Aplicaciones (VBA'],
- ['id' => 37676, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964844.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'INSTALACIÓN Y CONFIGURACIÓN DE SISTEMAS OPERATIVOS 2ª EDICIÓN ACTUALIZADA', 'autor' => 'LAURA RAYA GONZÁLEZ - ALBERTO SÁNCHEZ CAMPOS', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mp2c6', 'isbn' => '978-84-996484-4-6', 'ean' => '9788499648446', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-09-03 07:42:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37756, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964851.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación Funcional con Racket', 'autor' => 'Omar Iván Trejos Buriticá', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ustfv', 'isbn' => '978-84-9964-851-4', 'ean' => '9788499648514', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-09-13 05:22:41', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 37836, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964848.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Testing de Videojuegos', 'autor' => 'Ricardo Izquierdo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3gk50', 'isbn' => '978-84-9964-848-4', 'ean' => '9788499648484', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-09-19 12:13:40', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38480, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964852.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Blue Prism Developer & Professional Developer. Exams Prep Simplified.', 'autor' => 'Prasanna Kumar Ballepall', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bemyd', 'isbn' => '978-84-9964-852-1', 'ean' => '9788499648521', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 318, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 318, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-09-26 11:45:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38569, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964850.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Medición de Software', 'autor' => 'Mario G. Piattini Velthuis, Félix O. García Rubio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0p5vr', 'isbn' => '978-84-9964-850-7', 'ean' => '9788499648507', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-10-07 05:35:36', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38634, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Blue Prism MasterClass Developer & Professional Developer', 'autor' => 'Prasanna Kumar Ballepalli', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4fh7w', 'isbn' => null, 'ean' => null, 'editorial' => 'RA-MA ', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 318, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 318, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-10-16 12:03:52', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38660, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964853.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Minecraft. Edición 2020', 'autor' => 'Fernando Navarro Izquierdo y Fernando Navarro Pulido', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0652m', 'isbn' => '978-84-9964-853-8', 'ean' => '9788499648538', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 122, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 122, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-10-18 12:49:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38729, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964849.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Python práctico. Herramientas, conceptos y técnicas.', 'autor' => 'Alfredo Moreno Muñoz y Sheila Cordobés Córcoles', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_swjfa', 'isbn' => '978-84-9964-849-1', 'ean' => '9788499648491', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 320, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 320, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-10-29 09:58:38', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38833, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964854.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Estrategias De Marketing Digital En Un Entorno Ciberseguro', 'autor' => 'Natalia Grech', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nxlza', 'isbn' => '978-84-9964-854-5', 'ean' => '9788499648545', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-11-11 10:52:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38884, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964856.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad de Sistemas de Información 5ª Edición ampliada y actualizada', 'autor' => 'Mario G. Piattini Velthuis - Félix O. García Rubio - Ignacio García Rodríguez de Guzmán - Francisco J. Pino', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1nfcm', 'isbn' => '978-84-9964-856-9', 'ean' => '9788499648569', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 442, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 442, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-11-20 08:25:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38885, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964857.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CityEngine Manual práctico', 'autor' => 'Rafael R. Temes Cordovez - Alfonso Moya Fuero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g4aq5', 'isbn' => '978-84-9964-857-6', 'ean' => '9788499648576', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-11-20 08:37:57', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38932, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964868.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Esports, Vive de tu sueño', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gbaif', 'isbn' => '978-84-9964-868-2', 'ean' => '9788499648682', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 2, 'negro_gramaje' => 120, 'negro_pod_papel_id' => 2, 'negro_pod_gramaje' => 120, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-11-27 11:26:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 38977, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964869.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Mezcla en el audio profesional. Principios, técnicas y recursos. A Think Tank Guide.', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mukwe', 'isbn' => '978-84-9964-869-9', 'ean' => '9788499648699', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 398, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 398, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-12-10 09:37:29', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39014, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964870.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Call of Duty Modern Warfare', 'autor' => 'Félix García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c9ipy', 'isbn' => '978-84-9964-870-5', 'ean' => '9788499648705', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 162, 'color_papel_id' => 2, 'color_gramaje' => 90, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 90, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-12-17 06:10:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39049, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964872.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Manual de conciliación laboral. Técnicas para trabajar mejor y vivir más', 'autor' => 'Jon Bruguera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_js4u1', 'isbn' => '978-84-9964-872-9', 'ean' => '9788499648729', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2019-12-20 12:31:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39124, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Desarrollo e Innovación en el Sector Citrícola en Cantillana', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ua7to', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-01-15 13:12:32', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39140, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964876.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gobierno y Gestión de las Tecnologías y los Sistemas de Información', 'autor' => 'Mario G. Piattini Velthuis, Francisco Ruiz González', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5qk3c', 'isbn' => '978-84-9964-876-7', 'ean' => '9788499648767', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 404, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 404, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-01-17 11:31:32', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39148, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964887.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Star Wars JEDI: FALLEN ORDER', 'autor' => 'Giancarlo Suárez Limache', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j0a3p', 'isbn' => '978-84-9964-887-3', 'ean' => '9788499648873', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 86, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 86, 'color_papel_id' => 2, 'color_gramaje' => 160, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 160, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-01-20 12:40:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39196, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964889.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Machine Learning y Deep Learning. Usando Python, Scikit y Keras', 'autor' => 'Jesús Bobadilla', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8o7h9', 'isbn' => '978-84-9964-889-7', 'ean' => '9788499648897', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-02-05 09:57:09', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39238, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964871.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine JavaScript 4ª Edición', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nw38h', 'isbn' => '978-84-9964-871-2', 'ean' => '9788499648712', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 438, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 438, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-02-11 07:54:42', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39256, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964893.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Entrenando al Inversor Inteligente. Psicología y Neuro Finanzas para Inversores y Traders', 'autor' => 'Rosa Estañ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0rslk', 'isbn' => '978-84-9964-893-4', 'ean' => '9788499648934', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 358, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 358, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-02-12 10:42:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39321, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964895.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hackers. Técnicas y herramientas para atacar y defendernos', 'autor' => 'Juan Andrés Maíllo Fernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2e1td', 'isbn' => '978-84-9964-895-8', 'ean' => '9788499648958', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 474, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-02-21 11:01:34', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39361, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964902.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Dragon Ball Z Kakarot. Trucos, consejos y secretos.', 'autor' => 'Guiancarlo Suárez Limache', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_021ue', 'isbn' => '978-84-9964-902-3', 'ean' => '9788499649023', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 150, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-02-28 10:15:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39395, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964855.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación de GPUs Usando Compute Unified Device Architecture (CUDA'],
- ['id' => 39409, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964910.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG075PO Social Media Marketing en Comercio', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g5dc3', 'isbn' => '978-84-9964-910-8', 'ean' => '9788499649108', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-09 13:42:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39410, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964908.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG006PO Diseño Asistido por Ordenador con Autocad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_eu429', 'isbn' => '978-84-9964-908-5', 'ean' => '9788499649085', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-09 13:46:03', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39411, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964912.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM007PO Google y sus Aplicaciones', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bszhk', 'isbn' => '978-84-9964-912-2', 'ean' => '9788499649122', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 278, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 278, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-09 13:47:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39412, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964913.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM036PO HTML 5 Y CCC 3 - 978-84-9964-913-9', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3exi5', 'isbn' => '978-84-9964-913-9', 'ean' => '9788499649139', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-10 06:55:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39413, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964909.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM092PO Redes Sociales y Marketing 2.0', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cft8a', 'isbn' => '978-84-9964-909-2', 'ean' => '9788499649092', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-10 06:55:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39414, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964911.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM008PO Google Adwords y sus Aplicaciones Publicitarias', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9mres', 'isbn' => '978-84-9964-911-5', 'ean' => '9788499649115', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 360, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 360, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-10 06:55:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39415, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964906.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT020PO Autocad 2D', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_izd07', 'isbn' => '978-84-9964-906-1', 'ean' => '9788499649061', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-10 06:55:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39416, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964907.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT021PO Autocad 3D - 978-84-9964-907-8', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s5f1z', 'isbn' => '978-84-9964-907-8', 'ean' => '9788499649078', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-10 06:55:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39434, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964905.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD073PO Desarrollo de aplicaciones móviles para Android', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9sxv1', 'isbn' => '978-84-9964-905-4', 'ean' => '9788499649054', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-11 07:53:35', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39455, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964914.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'TypeScript Curso práctico', 'autor' => 'Carlos Serrano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qokf6', 'isbn' => '978-84-9964-914-6', 'ean' => '9788499649146', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 376, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 376, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-13 13:11:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39500, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación de GPUs Usando Compute Unified Device Architecture (CUDA'],
- ['id' => 39509, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964915.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Marketing digital, Herramientas, Técnicas y Estrategias-2ª Edición ampliada y revisada', 'autor' => 'Shum Xie, Yi Min', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ers9h', 'isbn' => '978-84-9964-915-3', 'ean' => '9788499649153', 'editorial' => '', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-03-25 11:21:22', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39542, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964919.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño de Videojuegos', 'autor' => 'Miguel Perotti', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_acfqj', 'isbn' => '978-84-9964-919-1', 'ean' => '9788499649191', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 174, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 174, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-04-17 11:34:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39543, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964923.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Gestión del estrés laboral', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_of4e1', 'isbn' => '978-84-9964-923-8', 'ean' => '9788499649238', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-04-17 11:34:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39544, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964658.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Phython 3. Curso Práctico', 'autor' => 'Alberto Cuevas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_uih4t', 'isbn' => '978-84-9964-658-9', 'ean' => '9788499646589', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 560, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-04-17 17:26:40', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39559, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/9788499649306.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964930.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'REDES CISCO. Guía de estudio para la certificación CCNA 200-301', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1pzvo', 'isbn' => '978-84-9964-930-6', 'ean' => '9788499649306', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 528, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-04-20 13:16:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39594, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/9788499649368.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964936.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Pokémon Mundo Misterioso DX Guía de Consejos, Trucos y Estrategias', 'autor' => 'Pablo Herrero Beas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xlh6w', 'isbn' => '978-84-9964-936-8', 'ean' => '9788499649368', 'editorial' => 'RAMA', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 102, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 102, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-05 08:07:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39595, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964932.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Gamificación en la Empresa', 'autor' => 'Francisco Galisteo, S', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jlcgz', 'isbn' => '978-84-9964-932-0', 'ean' => '9788499649320', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-05 08:21:46', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39630, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964916.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG075PO Social Media Marketing en Comercio', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ney9o', 'isbn' => '978-84-9964-916-0', 'ean' => '9788499649160', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 368, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39631, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964942.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM039PO WordPress', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x057j', 'isbn' => '978-84-9964-942-9', 'ean' => '9788499649429', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 534, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 534, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39632, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964943.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT124PO WordPress en el sector de publicidad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jf7wa', 'isbn' => '978-84-9964-943-6', 'ean' => '9788499649436', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 534, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 534, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39633, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964928.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'SSEAD308PO Prevención Burnout o estrés laboral', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3y7e5', 'isbn' => '978-84-9964-928-3', 'ean' => '9788499649283', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39634, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964927.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'SEAD048PO Detección, prevención y gestión del Estrés', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wr1tb', 'isbn' => '978-84-9964-927-6', 'ean' => '9788499649276', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39635, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964939.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG039PO Internet y fundamentos de diseño de páginas web', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_784er', 'isbn' => '978-84-9964-939-9', 'ean' => '9788499649399', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39636, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964940.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'AIFCD010PO Iniciación a la creación de páginas web', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dby68', 'isbn' => '978-84-9964-940-5', 'ean' => '9788499649405', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39637, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964944.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT187PO WordPress en el sector gráfico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8s56c', 'isbn' => '978-84-9964-944-3', 'ean' => '9788499649443', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 534, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 534, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39638, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964947.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT084PO Programación de macros Excel con Visual Basic', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_elfou', 'isbn' => '978-84-9964-947-4', 'ean' => '9788499649474', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 250, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39639, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964941.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD011PO Desarrollo de páginas web CSS y Joomla', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_24dpt', 'isbn' => '978-84-9964-941-2', 'ean' => '9788499649412', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39640, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964945.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT029PO Creación de blogs y redes sociales', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_paeot', 'isbn' => '978-84-9964-945-0', 'ean' => '9788499649450', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 534, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 534, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39641, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964946.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT139PO Diseño de Macros en EXCEL', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b34ce', 'isbn' => '978-84-9964-946-7', 'ean' => '9788499649467', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 250, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39642, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964938.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD072PO Ciberseguridad, hacking ético', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2dqy4', 'isbn' => '978-84-9964-938-2', 'ean' => '9788499649382', 'editorial' => 'RA-MA editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 474, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-19 06:19:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39647, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/9788499649528.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964952.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación Java: JDBC y Swing', 'autor' => 'Francisco Blasco', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_971v2', 'isbn' => '978-84-9964-952-8', 'ean' => '9788499649528', 'editorial' => 'RA-MA editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 568, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 568, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-20 16:27:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39702, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => '/catalogo/251/9788499649542.png', 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964954.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'DOOM Eternal Guía de Trucos, Consejos y Estrategias', 'autor' => 'Giancarlo Suárez Limache', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9k6p4', 'isbn' => '978-84-9964-954-2', 'ean' => '9788499649542', 'editorial' => 'RA-MA EDITORIAL', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 128, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 128, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-05-27 17:14:06', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39754, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964961.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'NOMINAPLUS - ADGG050PO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rhwz0', 'isbn' => '978-84-9964-961-0', 'ean' => '9788499649610', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-09 07:07:27', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39755, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964963.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'OFFICE: WORD, EXCEL, ACCESS Y POWER POINT - ADGG052PO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s70vi', 'isbn' => '978-84-9964-963-4', 'ean' => '9788499649634', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-09 07:07:27', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39756, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964962.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FUNDAMENTOS EXCEL - ADGG021PO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_iuvpk', 'isbn' => '978-84-9964-962-7', 'ean' => '9788499649627', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-09 07:07:27', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39767, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964967.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG014PO Photoshop Básico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xrhzb', 'isbn' => '978-84-9964-967-2', 'ean' => '9788499649672', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39768, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964964.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM067PO Organización de Eventos y Protocolo', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_chn2s', 'isbn' => '978-84-9964-964-1', 'ean' => '9788499649641', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 152, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39769, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964960.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD037PO Contabilidad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_csxa9', 'isbn' => '978-84-9964-960-3', 'ean' => '9788499649603', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39770, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964958.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT058PO Introdución a AJAX', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_msxvj', 'isbn' => '978-84-9964-958-0', 'ean' => '9788499649580', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39771, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964965.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD043PO Contabilidad, Administración y Gestión', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xmfco', 'isbn' => '978-84-9964-965-8', 'ean' => '9788499649658', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 270, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 270, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39772, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964966.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN049PO Fiscalidad en la Pyme', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mj829', 'isbn' => '978-84-9964-966-5', 'ean' => '9788499649665', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39773, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964959.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD018PO Desarrollo de Aplicaciones web con ASP.NET', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qd78a', 'isbn' => '978-84-9964-959-7', 'ean' => '9788499649597', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 462, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 462, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39774, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964957.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD044PO Programación Web con PHP', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9jds4', 'isbn' => '978-84-9964-957-3', 'ean' => '9788499649573', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 396, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 396, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-12 11:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39820, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964934.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Dirección de seguridad y gestión del ciberriesgo', 'autor' => 'Fernando Sevillano y Marta Beltrán', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oc6jz', 'isbn' => '978-84-9964-934-4', 'ean' => '9788499649344', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-23 06:06:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39825, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964950.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Metodología para la Integración del Planeamiento Estratégico de Tecnologías de Información con la Estrategia Empresarial', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_823zf', 'isbn' => '978-84-9964-950-4', 'ean' => '9788499649504', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-24 10:40:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39850, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fotografía digital y Photoshop. Principios conceptuales.', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fa9z5', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-MA editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2020-06-29 13:48:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39855, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964969.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fotografía digital y Photoshop. Principios conceptuales.', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1v2qe', 'isbn' => '978-84-9964-969-6', 'ean' => '9788499649696', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 186, 'color_papel_id' => 2, 'color_gramaje' => 115, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 115, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-06-30 06:50:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39881, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964971.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aspectos jurídicos de la ciberseguridad', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cf2je', 'isbn' => '978-84-9964-971-9', 'ean' => '9788499649719', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 390, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 390, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-07-06 13:03:39', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39926, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964975.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UX Writing - 2.ª Edición', 'autor' => 'Bruno Rodrigues', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b6v9w', 'isbn' => '978-84-9964-975-7', 'ean' => '9788499649757', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 166, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 166, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-07-15 07:01:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 39971, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964973.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'MF1445_3 Programación Didáctica de Acciones Formativas para el Empleo', 'autor' => 'ANA VARELA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j5lfu', 'isbn' => '978-84-9964-973-3', 'ean' => '9788499649733', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 94, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 94, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-07-28 07:33:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40099, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964986.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Historia del hacking en España. La historia nunca contada del underground hacker en España', 'autor' => 'Mercé Molist Ferrer - Jacobo Feijó', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s1xf9', 'isbn' => '978-84-9964-986-3', 'ean' => '9788499649863', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-04 06:56:53', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40102, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964981.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'UF1843 - APLICACIONES TÉCNICAS DE USABILIDAD Y ACCESIBILIDAD EN EL ENTORNO CLIENTE', 'autor' => 'PABLO E. FERNÁNDEZ CASADO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_il07j', 'isbn' => '978-84-9964-981-8', 'ean' => '9788499649818', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 90, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 90, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-07 06:43:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40104, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964979.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM038PO USABILIDAD WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l9msf', 'isbn' => '978-84-9964-979-5', 'ean' => '9788499649795', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 70, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 70, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-07 06:45:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40120, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964985.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Alfabetización digital e iniciación a la informática', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jebi8', 'isbn' => '978-84-9964-985-6', 'ean' => '9788499649856', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-09 10:34:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40158, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964992.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM012PO La Firma Digital', 'autor' => 'Ana Mª García Alcázar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_io4a2', 'isbn' => '978-84-9964-992-4', 'ean' => '9788499649924', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 13:46:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40159, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964993.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG022PO Factura Digital', 'autor' => 'Ana Mª García Alcázar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a1ugt', 'isbn' => '978-84-9964-993-1', 'ean' => '9788499649931', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 13:48:44', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40160, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964994.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG025PO Firma Electrónica. Las nuevas tecnologías en la comunicación', 'autor' => 'Ana Mª García Alcázar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v961f', 'isbn' => '978-84-9964-994-8', 'ean' => '9788499649948', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 13:51:32', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40161, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964990.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Firma digital, certificado electrónico y factura electrónica', 'autor' => 'Ana Mª García Alcázar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hsj5g', 'isbn' => '978-84-9964-990-0', 'ean' => '9788499649900', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 13:53:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40162, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964989.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI02 ALFABETIZACIÓN INFORMÁTICA: INFORMÁTICA E INTERNET', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6zyki', 'isbn' => '978-84-9964-989-4', 'ean' => '9788499649894', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 18:21:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40163, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964988.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Informática e Internet básico para mayores', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bcgq3', 'isbn' => '978-84-9964-988-7', 'ean' => '9788499649887', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 18:25:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40164, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Alfabetización digital e iniciación a la informática', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tdop0', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2020-09-16 18:27:01', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40165, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964984.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT45 - COMPETENCIAS DIGITALES BÁSICAS', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i1tan', 'isbn' => '978-84-9964-984-9', 'ean' => '9788499649849', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-16 18:43:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40215, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964996.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño y construcción de páginas web', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l6biv', 'isbn' => '978-84-9964-996-2', 'ean' => '9788499649962', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-29 11:56:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40228, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964998.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Teletrabajo Guía Práctica', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ytrq2', 'isbn' => '978-84-9964-998-6', 'ean' => '9788499649986', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 120, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 120, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-09-30 13:13:23', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40276, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciencia de datos para la ciberseguridad', 'autor' => 'Isaac Martín de Diego - Alberto Fernández Isabel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ceklm', 'isbn' => null, 'ean' => null, 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-08 12:24:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40329, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855105.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MERN Guía Práctica de Aplicaciones Web', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5byk6', 'isbn' => '978-84-1855-105-5', 'ean' => '9788418551055', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-22 12:31:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40341, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855100.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Excel 2019 Avanzado', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tlgs5', 'isbn' => '978-84-18551-00-0', 'ean' => '9788418551000', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-23 13:26:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40361, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855106.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UF1302 CREACIÓN DE PÁGINAS WEB CON EL LENGUAJE DE MARCAS', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3an1q', 'isbn' => '978-84-1855-106-2', 'ean' => '9788418551062', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-28 13:08:26', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40362, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855107.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UF1303 ELABORACIÓN DE HOJAS DE ESTILO', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m5w3y', 'isbn' => '978-84-1855-107-9', 'ean' => '9788418551079', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-28 13:10:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40363, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855108.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UF1304 ELABORACIÓN DE PLANTILLAS Y FORMULARIOS', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_05q2j', 'isbn' => '978-84-1855-108-6', 'ean' => '9788418551086', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 112, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 112, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-28 13:12:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40368, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855104.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciencia de datos para la ciberseguridad', 'autor' => 'Isaac Martín de Diego y Alberto Fernández Isabel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zsmyv', 'isbn' => '978-84-1855-104-8', 'ean' => '9788418551048', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-10-30 06:31:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40394, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MERN', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '-', 'isk' => 'isk_libro_20250420_u9ami', 'isbn' => '978-84-18551-05-5', 'ean' => '9788418551055', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-04 11:56:03', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40415, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964982.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño emocional de personajes de videojuegos', 'autor' => 'Ricardo Izquierdo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t6b2v', 'isbn' => '978-84-9964-982-5', 'ean' => '9788499649825', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 156, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 156, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-06 08:10:31', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40428, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855114.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT184PO ANÁLISIS DE DATOS Y VINCULACIÓN DE BASES DE DATOS CON EXCEL', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8m2ng', 'isbn' => '978-84-1855-114-7', 'ean' => '9788418551147', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 216, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 216, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-10 06:30:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40429, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855102.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG020PO EXCEL AVANZADO', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rod6t', 'isbn' => '978-84-1855-102-4', 'ean' => '9788418551024', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-10 06:33:02', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40430, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855101.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT36 EXCEL AVANZADO', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_sltni', 'isbn' => '978-84-1855-101-7', 'ean' => '9788418551017', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-10 06:34:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40435, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855115.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Principios de Derecho Mercantil 3ª Edición actualizada', 'autor' => 'José Daniel Cuadrado Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cuq2j', 'isbn' => '9788418551154', 'ean' => '9788418551154', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-11 12:48:39', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40458, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855113.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación Páginas Web JavaScript y PHP', 'autor' => 'Mercedes Escarcena', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_expd6', 'isbn' => '978-84-1855-113-0', 'ean' => '9788418551130', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-18 12:41:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40504, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855111.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Deep Web El monstruo de la red', 'autor' => 'Facundo David Gallo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qlzjg', 'isbn' => '978-84-1855-111-6', 'ean' => '9788418551116', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-11-26 11:12:27', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40589, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855120.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java Curso Práctico', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1yvfp', 'isbn' => '978-84-18551-20-8', 'ean' => '9788418551208', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 524, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 524, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-12-10 13:34:34', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40598, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855112.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT091PO PROGRAMACIÓN PÁGINAS WEB JAVASCRIPT Y PHP', 'autor' => 'Mercedes Escarcena', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ap427', 'isbn' => '978-84-1855-112-3', 'ean' => '9788418551123', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-12-14 07:59:02', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40613, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855122.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gamificación y juegos serios. Curso Práctico.', 'autor' => 'Belén Gómez Sanz', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wms0u', 'isbn' => '978-84-1855-122-2', 'ean' => '9788418551222', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-12-17 06:15:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40621, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855123.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Criptografía Esencial Principios básicos para el diseño de esquemas y protocolos seguros', 'autor' => 'María Isabel González Vasco - Ángel Luis Pérez del Pozo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ri4gj', 'isbn' => '978-84-1855-123-9', 'ean' => '9788418551239', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2020-12-28 07:06:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40844, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855124.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UX Desing Hazlo fácil pensando en el usuario', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w7cu3', 'isbn' => '978-84-1855-124-6', 'ean' => '9788418551246', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 338, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 338, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-01-21 12:15:22', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40902, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855126.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño narrativo y guión para videojuegos', 'autor' => 'Alex Boserman', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_km46z', 'isbn' => '978-84-1855-126-0', 'ean' => '9788418551260', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-01-29 11:36:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 40940, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855127.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Accesibilidad Web. Diseño de aplicaciones', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_is435', 'isbn' => '978-84-18551-27-7', 'ean' => '9788418551277', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-02-04 06:23:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41057, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964977.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'UML Aplicaciones en Java y C++ 2ª edición', 'autor' => 'Carlos Jiménez de Parga', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oldhj', 'isbn' => '978-84-9964-977-1', 'ean' => '9788499649771', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 504, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 504, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-02-22 08:31:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41062, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD052PO PROGRAMACIÓN EN JAVA', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gl9nz', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 480, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-02-22 13:36:38', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41063, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855130.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD052PO PROGRAMACIÓN EN JAVA', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vg0lb', 'isbn' => '978-84-1855-130-7', 'ean' => '9788418551307', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 480, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 480, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-02-22 14:02:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41073, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855128.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'QGIS Aplicado al Urbanismo', 'autor' => 'Rafael R. Temes Cordovez y Alfonso Moya Fuero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1qix2', 'isbn' => '978-84-1855-128-4', 'ean' => '9788418551284', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 340, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-02-25 12:32:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41260, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855136.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciberseguridad Industrial e Infraestructuras Críticas', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5wpjn', 'isbn' => '978-84-1855-136-9', 'ean' => '9788418551369', 'editorial' => 'Ra-ma Editprial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 346, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 346, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-03-26 12:45:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41261, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855135.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Blockchain El modelo descentralizado hacia la economía digital', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zlef5', 'isbn' => '978-84-1855-135-2', 'ean' => '9788418551352', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-03-26 12:47:29', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41309, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855129.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => '115 ejercicios resueltos de programación C++ ', 'autor' => 'VV.AA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3cz9d', 'isbn' => '978-84-1855-129-1', 'ean' => '9788418551291', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 518, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 518, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-05 12:08:35', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41358, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855140.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Publicidad en Redes Sociales Curso práctico', 'autor' => '-', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l24ow', 'isbn' => '978-84-1855-140-6', 'ean' => '9788418551406', 'editorial' => 'Ra-ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 290, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 290, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-14 13:39:03', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41410, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/IFCM021/IFCM021PO RE.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM021PO REDES CISCO CCNA', 'autor' => 'Ernesto Ariganello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g5xke', 'isbn' => 'IFCM021PO REDES CISCO CCNA', 'ean' => 'IFCM021PO REDES CISCO CCNA', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-26 13:17:00', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41438, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855148.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG044PO MACROS Y PROGRAMACIÓN VISUAL BASIC DE APLICACIONES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_065nu', 'isbn' => '978-84-1855-148-2', 'ean' => '9788418551482', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 250, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:32:41', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41439, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855149.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG083PO WINDOWS POWERSHELL', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c7a5r', 'isbn' => '978-84-1855-149-9', 'ean' => '9788418551499', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:34:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41440, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855150.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD111PO FUNDAMENTOS DE DERECHO MERCANTIL', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pcnuq', 'isbn' => '978-84-1855-150-5', 'ean' => '9788418551505', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:36:35', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41441, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855151.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGG077PO TÉCNICAS ADMINISTRATIVAS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gmosd', 'isbn' => '978-84-1855-151-2', 'ean' => '9788418551512', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 112, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 112, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:38:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41442, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855152.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGD039PO CONTABILIDAD FINANCIERA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ts10d', 'isbn' => '978-84-1855-152-9', 'ean' => '9788418551529', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 224, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 224, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:40:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41443, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855154.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD117PO GESTIÓN DE COMPRAS Y APROVISIONAMIENTO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z0fm6', 'isbn' => '978-84-1855-154-3', 'ean' => '9788418551543', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:41:40', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41444, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855155.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD058PO CREACION DE START-UP’S', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7bji0', 'isbn' => '978-84-1855-155-0', 'ean' => '9788418551550', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:42:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41445, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855156.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG085PO GESTOR DE PROYECTOS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zj120', 'isbn' => '978-84-1855-156-7', 'ean' => '9788418551567', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 356, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 356, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:44:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41446, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855158.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG071PO REDES SOCIALES Y EMPRESA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8vinh', 'isbn' => '978-84-1855-158-1', 'ean' => '9788418551581', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-04-30 12:46:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41460, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855146.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Introducción a la Programación con Python', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_63a91', 'isbn' => '978-84-1855-146-8', 'ean' => '9788418551468', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-06 08:32:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41465, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/ADGG044/ADGG044PO MA.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG044PO MACROS Y PROGRAMACIÓN VISUAL BASIC DE APLICACIONES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a0nj5', 'isbn' => 'ADGG044PO MACROS Y PROGRAMACIÓN VISUAL BASIC DE APLICACIONES', 'ean' => 'ADGG044PO MACROS Y PROGRAMACIÓN VISUAL BASIC DE APLICACIONES', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 250, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 250, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-07 07:18:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41475, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855144.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aplicaciones web con PHP', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ld54a', 'isbn' => '978-84-1855-144-4', 'ean' => '9788418551444', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-10 10:38:57', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41476, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855145.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'GAMIFICACIÓN Y su aplicación a la Ingeniería del Software', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hpgxf', 'isbn' => '978-84-1855-145-1', 'ean' => '9788418551451', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-11 06:41:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41514, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788499/978849964904.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Desarrollo e innovación en el sector citrícola en Cantillana', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cefrb', 'isbn' => '978-84-9964-904-7', 'ean' => '9788499649047', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 183, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 183, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-14 13:34:26', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41547, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855161.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT004PO ACCESIBILIDAD', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8g2e0', 'isbn' => '978-84-1855-161-1', 'ean' => '9788418551611', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 12:45:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41548, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855163.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM037PO HERRAMIENTAS GOOGLE', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kvz10', 'isbn' => '978-84-1855-163-5', 'ean' => '9788418551635', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 278, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 278, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 12:49:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41549, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855164.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM018PO PROGRAMACIÓN DE APLICACIONES ANDROID', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8ohfq', 'isbn' => '978-84-1855-164-2', 'ean' => '9788418551642', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 12:52:15', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41550, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855165.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD050PO SPRING PARA DESARROLLO DE APLICACIONES EN JAVA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4tp5y', 'isbn' => '978-84-1855-165-9', 'ean' => '9788418551659', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 12:54:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41551, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855166.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT083PO PROGRAMACIÓN DE DISPOSITIVOS MÓVILES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q8swp', 'isbn' => '978-84-1855-166-6', 'ean' => '9788418551666', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 12:57:47', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41552, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855167.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT080PO PROGRAMACIÓN CON PHP Y MYSQ', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_njz71', 'isbn' => '978-84-1855-167-3', 'ean' => '9788418551673', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 13:02:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41553, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855168.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD064PO INICIACIÓN PROGRAMACIÓN JAVA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_620of', 'isbn' => '978-84-1855-168-0', 'ean' => '9788418551680', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 13:46:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41554, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855169.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT057PO INTERNET SEGURO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1qfg4', 'isbn' => '978-84-1855-169-7', 'ean' => '9788418551697', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 13:48:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41555, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855170.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT039PO DISEÑO DE PÁGINAS WEB 2011', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n40bs', 'isbn' => '978-84-1855-170-3', 'ean' => '9788418551703', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 13:50:46', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41556, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855171.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD038PO MS PROJECT', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_feoug', 'isbn' => '978-84-1855-171-0', 'ean' => '9788418551710', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-21 13:52:31', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41561, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855142.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Geometría Proyectiva y Visión Artificial', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l6na9', 'isbn' => '978-84-1855-142-0', 'ean' => '9788418551420', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 180, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-05-24 13:49:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41569, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT004PO ACCESIBILIDAD', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4zqow', 'isbn' => null, 'ean' => null, 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2021-05-26 06:11:43', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41602, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855160.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Matemáticas con GeoGebra', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_md6jh', 'isbn' => '978-84-1855-160-4', 'ean' => '9788418551604', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-01 13:15:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41668, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855172.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCD043PO-PROGRAMACION DE APLICACIONES ORIENTADAS A OBJETOS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hfy0s', 'isbn' => '978-84-1855-172-7', 'ean' => '9788418551727', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:08:13', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41669, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855173.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT031PO-CREACION, PROGRAMACION Y DISENO DE PAGINAS WEB CON HTML5 Y CSS3', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_szfti', 'isbn' => '978-84-1855-173-4', 'ean' => '9788418551734', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:15:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41670, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855174.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT092PO-PROGRAMACION WEB CON SOFTWARE LIBRE', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_084hp', 'isbn' => '978-84-1855-174-1', 'ean' => '9788418551741', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 624, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 624, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:18:01', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41671, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855175.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD211PO-POSICIONAMIENTO EN BUSCADORES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0eja8', 'isbn' => '978-84-1855-175-8', 'ean' => '9788418551758', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 180, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 180, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:20:18', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41672, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855176.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT050PO-GESTION DE LA SEGURIDAD INFORMATICA EN LA EMPRESA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i0tx7', 'isbn' => '978-84-1855-176-5', 'ean' => '9788418551765', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:22:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41673, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855177.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT100PO-SEGURIDAD DE LOS SISTEMAS INFORMATICOS Y DE COMUNICACION', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g7f2b', 'isbn' => '978-84-1855-177-2', 'ean' => '9788418551772', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:25:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41674, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855179.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD113PO-GESTION CONTABLE DE UNA EMPRESA_CONTAPLUS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x5oc0', 'isbn' => '978-84-1855-179-6', 'ean' => '9788418551796', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 218, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 218, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:27:42', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41675, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855180.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG024PO-FACTURAPLUS_FACTURACION EN LA EMPRESA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7mvp5', 'isbn' => '978-84-1855-180-2', 'ean' => '9788418551802', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:29:44', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41676, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855183.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => '1833-IFCT088PO-PROGRAMACION HTML 5', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i6ewg', 'isbn' => '978-84-1855-183-3', 'ean' => '9788418551833', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-10 11:32:10', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41686, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855182.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'PROGRAMACIÓN CON LENGUAJES DE GUIÓN EN PÁGINAS WEB', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_is4jn', 'isbn' => '978-84-1855-182-6', 'ean' => '9788418551826', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-11 10:46:25', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41742, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM021PO Redes Cisco CCNA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_27eap', 'isbn' => null, 'ean' => null, 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-21 13:07:40', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41768, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855181.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'PRUEBAS DE FUNCIONALIDADES Y OPTIMIZACIÓN DE PÁGINAS WEB', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4xedr', 'isbn' => '978-84-1855-181-9', 'ean' => '9788418551819', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 174, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 174, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-06-24 13:20:55', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41811, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855184.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de aplicaciones con Android', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_25xzu', 'isbn' => '978-84-1855-184-0', 'ean' => '9788418551840', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-05 06:13:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41842, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855187.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT39-POSICIONAMIENTO WEB Y MARKETING DIGITAL EN BUSCADORES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4wdmb', 'isbn' => '978-84-1855-187-1', 'ean' => '9788418551871', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:33:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41843, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855195.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN066PO IMPUESTO SOBRE EL VALOR AÑADIDO (IVA'],
- ['id' => 41844, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855193.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM005PO-ESPECIALISTA EN TECNOLOGIAS DE RED CISCO_PREPARACION PARA LA CERTIFICACION CCNA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_myjn2', 'isbn' => '978-84-1855-193-2', 'ean' => '9788418551932', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:44:36', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41845, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855192.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG017PO DESARROLLO TIC PARA LA FIDELIZACIÓN Y ACCIÓN COMERCIAL. GAMIFICACIÓN', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3u8hm', 'isbn' => '978-84-1855-192-5', 'ean' => '9788418551925', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:47:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41846, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855191.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMM071PO POLÍTICAS DE MARKETING EN EL SECTOR DE PUBLICIDAD', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lg8c1', 'isbn' => '978-84-1855-191-8', 'ean' => '9788418551918', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:49:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41847, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855190.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD28 DESARROLLO DE VIDEOJUEGOS Y REALIDAD VIRTUAL CON UNITY 3D', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pqyil', 'isbn' => '978-84-1855-190-1', 'ean' => '9788418551901', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 444, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 444, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:51:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41848, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855189.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT114PO LINUX', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_91x82', 'isbn' => '978-84-1855-189-5', 'ean' => '9788418551895', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:53:41', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41849, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855188.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT073PO ORACLE 11G', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_19t8e', 'isbn' => '978-84-1855-188-8', 'ean' => '9788418551888', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 558, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 558, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 12:55:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41850, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855186.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT013PO AJAX PARA APLICACIONES DE ESCRITORIO EN SERVIDORES WEB', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qdbih', 'isbn' => '978-84-1855-186-4', 'ean' => '9788418551864', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 13:01:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41851, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855194.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD188PO NÓMINAS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8g9lh', 'isbn' => '978-84-1855-194-9', 'ean' => '9788418551949', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 136, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-12 13:04:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41879, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855185.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Python para finanzas', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ey2qf', 'isbn' => '978-84-1855-185-7', 'ean' => '9788418551857', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 390, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 390, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-07-21 11:33:21', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41937, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897105.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT101PO PLANIFICACIÓN DE LA SEGURIDAD INFORMÁTICA EN LA EMPRESA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p74h1', 'isbn' => '978-84-1897-105-1', 'ean' => '9788418971051', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:19:29', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41938, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897104.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT024PO BASES DE DATOS AVANZADAS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7k0tb', 'isbn' => '978-84-1897-104-4', 'ean' => '9788418971044', 'editorial' => 'Ra-Ma Editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:21:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41939, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897103.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT016PO ARQUITECTURA DEL PC. MANTENIMIENTO HARDWARE', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0u95a', 'isbn' => '978-84-1897-103-7', 'ean' => '9788418971037', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 248, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:23:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41940, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897102.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT030PO CREACIÓN, PROGRAMACIÓN Y DISEÑO DE PÁGINAS WEB', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p6y9o', 'isbn' => '978-84-1897-102-0', 'ean' => '9788418971020', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 552, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 552, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:27:23', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41941, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897101.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT095PO PYTHON Y DJANGO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_py06k', 'isbn' => '978-84-1897-101-3', 'ean' => '9788418971013', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 518, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 518, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:29:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41942, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897100.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT108PO TECNOLOGÍA XML', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pjk0i', 'isbn' => '978-84-1897-100-6', 'ean' => '9788418971006', 'editorial' => 'ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:32:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41943, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855199.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD026PO GESTOR DE PROYECTOS (MS PROJECT'],
- ['id' => 41944, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855198.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD012PO DATA MINING: PRINCIPIOS Y APLICACIONES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q4fsd', 'isbn' => '978-84-1855-198-7', 'ean' => '9788418551987', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 572, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 572, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:37:51', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41945, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855197.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT047PO ELABORACIÓN DE CONTENIDOS MULTIMEDIA SCORM PARA E-LEARNING', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cbl6y', 'isbn' => '978-84-1855-197-0', 'ean' => '9788418551970', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:39:57', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 41946, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855196.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM019PO PROGRAMACIÓN DE APLICACIONES IPHONE', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9b3i8', 'isbn' => '978-84-1855-196-3', 'ean' => '9788418551963', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-08-05 14:42:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42035, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897106.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD135PO GESTIÓN DEL TIEMPO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bov4x', 'isbn' => '978-84-1897-106-8', 'ean' => '9788418971068', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:39:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42036, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897107.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG057PO OFIMÁTICA: APLICACIONES INFORMÁTICAS DE GESTIÓN', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2xpjc', 'isbn' => '978-84-1897-107-5', 'ean' => '9788418971075', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:41:01', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42037, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897108.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGG053PO OFIMÁTICA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u4gn0', 'isbn' => '978-84-1897-108-2', 'ean' => '9788418971082', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:42:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42038, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897109.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD181PO MEJORA DE PROCESOS: SEIS SIGMA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5ecf2', 'isbn' => '978-84-1897-109-9', 'ean' => '9788418971099', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 312, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 312, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:43:37', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42039, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897110.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD152PO HABLAR EN PÚBLICO. PRESENTACIONES EFICACES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pm1rx', 'isbn' => '978-84-1897-110-5', 'ean' => '9788418971105', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:44:45', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42040, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897111.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD261PO TÉCNICAS PARA HABLAR EN PÚBLICO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_87l64', 'isbn' => '978-84-1897-111-2', 'ean' => '9788418971112', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 182, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 182, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:46:36', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42041, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897115.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD137PO GESTIÓN EMPRESARIAL', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3a10z', 'isbn' => '978-84-1897-115-0', 'ean' => '9788418971150', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:49:42', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42042, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897116.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD186PO NEGOCIACIÓN CON PROVEEDORES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0jz94', 'isbn' => '978-84-1897-116-7', 'ean' => '9788418971167', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:50:53', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42043, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897117.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD126PO GESTIÓN DE PROYECTOS NO INFORMÁTICOS AVANZADO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jx51k', 'isbn' => '978-84-1897-117-4', 'ean' => '9788418971174', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:52:01', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42044, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897118.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN02EXP EXCEL FINANCIERO', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_di108', 'isbn' => '978-84-1897-118-1', 'ean' => '9788418971181', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 292, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 292, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:53:08', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42045, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897119.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD089PO EMPRENDIMIENTO: NOCIONES', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a1qew', 'isbn' => '978-84-1897-119-8', 'ean' => '9788418971198', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-07 09:55:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42084, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897120.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking ético de redes y comunicaciones Curso práctico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ldsv9', 'isbn' => '978-84-1897-120-4', 'ean' => '9788418971204', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-16 08:48:04', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42115, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897122.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis de Datos con Power Bi, R-Rstudio y Knime Curso Práctico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_53mrh', 'isbn' => '978-84-1897-122-8', 'ean' => '9788418971228', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-21 11:16:34', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42162, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897124.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis Forense Informatico', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_to2vr', 'isbn' => '978-84-1897-124-2', 'ean' => '9788418971242', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-09-30 07:28:11', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42194, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897125.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Publicidad en internet Técnicas para aumentar las ventas online en tu negocio', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xmhtk', 'isbn' => '978-84-1897-125-9', 'ean' => '9788418971259', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-06 11:27:59', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42206, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897127.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 17. Fundamentos prácticos de programación', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0uhnk', 'isbn' => '978-84-1897-127-3', 'ean' => '9788418971273', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 410, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 410, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-08 08:53:21', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42246, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897126.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM112PO PUBLICIDAD EN INTERNET', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_13j6e', 'isbn' => '978-84-1897-126-6', 'ean' => '9788418971266', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-18 08:58:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42247, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897123.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Normativa de Ciberseguridad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vnkej', 'isbn' => '978-84-1897-123-5', 'ean' => '9788418971235', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-19 07:34:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42292, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897129.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT143PO - Gestión de los ciberriesgos', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nq47o', 'isbn' => '978-84-18971-29-7', 'ean' => '9788418971297', 'editorial' => 'Ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:08:36', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42293, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897130.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD062PO - HTML5 Y CSS3', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cf59k', 'isbn' => '978-84-18971-30-3', 'ean' => '9788418971303', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:09:35', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42294, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897131.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD067PO - Introducción Wndows Server', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r13yp', 'isbn' => '978-84-18971-31-0', 'ean' => '9788418971310', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:10:46', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42295, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897132.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM029PO - Switching de Cisco. CCNP', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s582u', 'isbn' => '978-84-18971-32-7', 'ean' => '9788418971327', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:11:48', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42296, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897133.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT098PO - Routing de Cisco. CCNP', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uhv1t', 'isbn' => '978-84-18971-33-4', 'ean' => '9788418971334', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 380, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 380, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:13:53', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42297, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897134.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD066PO - Joomla, sistema de gestión de contenidos web', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tmrai', 'isbn' => '978-84-18971-34-1', 'ean' => '9788418971341', 'editorial' => 'Ra-ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:15:09', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42298, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897135.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM014PO - Managing Cisco Network Segurity (MCNS'],
- ['id' => 42299, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897136.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM122PO - Uso empresarial de las redes sociales', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ky34f', 'isbn' => '978-84-18971-36-5', 'ean' => '9788418971365', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-10-26 04:17:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42401, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897137.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Java 17 Programación Avanzada', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ilhuy', 'isbn' => '978-84-1897-137-2', 'ean' => '9788418971372', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 526, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 526, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-11-15 04:32:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42554, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841855143.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM021PO - REDES CISCO CCNA', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ps6ay', 'isbn' => '978-84-1855-143-7', 'ean' => '9788418551437', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-15 07:13:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42577, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897160.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad y Sostenibilidad de Sistemas de Información en la Práctica', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lu1z4', 'isbn' => '978-84-1897-160-0', 'ean' => '9788418971600', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 588, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 588, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 09:46:06', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42578, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897159.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FMEM012PO Solid Edge, Diseño paramétrico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_s2r5t', 'isbn' => '978-84-18971-59-4', 'ean' => '9788418971594', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 704, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 704, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 13:57:19', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42579, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897158.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FMEM001PO Autodesk Inventor', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tmefv', 'isbn' => '978-84-18971-58-7', 'ean' => '9788418971587', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 614, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 614, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 13:58:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42580, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897157.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SSCE099PO La pizarra digital en la enseñanza', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5m0hb', 'isbn' => '978-84-18971-57-0', 'ean' => '9788418971570', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:00:52', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42581, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897156.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SSCE027PO Creación de contenidos y recursos didácticos en internet (MOODLE'],
- ['id' => 42582, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897155.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ELEE019PO Programación y robótica en el aula', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_unq9h', 'isbn' => '978-84-18971-55-6', 'ean' => '9788418971556', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 384, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 384, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:02:56', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42583, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897154.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG076PO SPSS: Aplicación y análisis estadístico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wrkul', 'isbn' => '978-84-18971-54-9', 'ean' => '9788418971549', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:03:49', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42584, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897153.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG106PO Competencias digitales en construcción', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cfp62', 'isbn' => '978-84-18971-53-2', 'ean' => '9788418971532', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:04:41', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42585, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897152.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD06 Desarrollo de aplicaciones web con PHP y MYSQL', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dr6p9', 'isbn' => '978-84-18971-52-5', 'ean' => '9788418971525', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:05:30', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42586, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897151.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD32CP Programación en Python', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_36bfn', 'isbn' => '978-84-18971-51-8', 'ean' => '9788418971518', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 560, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:06:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42587, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897150.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCD37CP Desarrollo de aplicaciones para dispositivos móviles', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mlcbg', 'isbn' => '978-84-18971-50-1', 'ean' => '9788418971501', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:07:17', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42588, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897149.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT27 Introducción a las bases de datos Microsoft SQL Server', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gn7yi', 'isbn' => '978-84-18971-49-5', 'ean' => '9788418971495', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:08:07', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42589, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897148.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD09 Programación orientada a objetos con Java', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6ws90', 'isbn' => '978-84-18971-48-8', 'ean' => '9788418971488', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 588, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 588, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2021-12-21 14:08:58', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42706, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897170.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT25 MCSA SQL Server', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y6nkv', 'isbn' => '978-84-18971-70-9', 'ean' => '9788418971709', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 732, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 732, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 05:47:50', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42707, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897169.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM040PO Implantación y gestión de una red informática', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jqaip', 'isbn' => '978-84-18971-69-3', 'ean' => '9788418971693', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 638, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 638, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 05:48:39', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42708, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897168.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD344PO Microsoft Project iniciación', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xqez1', 'isbn' => '978-84-18971-68-6', 'ean' => '9788418971686', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 05:49:24', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42709, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897167.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD071PO Unity avanzado', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7xz9h', 'isbn' => '978-84-18971-67-9', 'ean' => '9788418971679', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 444, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 444, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 05:50:10', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42710, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897166.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'SIFCT134PO Ciberseguridad en la empresa química - pyme', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_azfus', 'isbn' => '978-84-18971-66-2', 'ean' => '9788418971662', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 05:51:13', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42711, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897165.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT076PO Fundamentos De SQL en Oracle Database', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6bkp4', 'isbn' => '978-84-18971-65-5', 'ean' => '9788418971655', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 530, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 530, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 06:46:03', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42712, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897164.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT075PO Oracle Database 11g Administration I', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qh3d5', 'isbn' => '978-84-18971-64-8', 'ean' => '9788418971648', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 902, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 902, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 06:47:10', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42713, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897163.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT017PO AutoCad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bwpkj', 'isbn' => '978-84-18971-63-1', 'ean' => '9788418971631', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 546, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 06:55:47', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42714, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897162.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD037PO - Microsoft Windows Server 2008', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zdlf2', 'isbn' => '978-84-18971-62-4', 'ean' => '9788418971624', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 232, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 232, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 06:56:33', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42715, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897161.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT094PO - Programar con Scratch', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_irlpm', 'isbn' => '978-84-18971-61-7', 'ean' => '9788418971617', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 456, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 456, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 07:01:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42716, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897128.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT125PO Sistemas operativos: administración de Microsoft Windows', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9daq8', 'isbn' => '978-84-18971-28-0', 'ean' => '9788418971280', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-20 07:02:12', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42722, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897171.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Criminal Compliance La responsabilidad social corporativa', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_csg8f', 'isbn' => '978-84-18971-71-6', 'ean' => '9788418971716', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 122, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 122, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-01-21 09:24:54', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42723, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Calidad y Sostenibilidad de Sistemas de Información en la Práctica', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_es10o', 'isbn' => null, 'ean' => null, 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 588, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2022-01-21 09:34:16', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42779, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897173.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de incidentes de ciberseguridad', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nxhvb', 'isbn' => '978-84-1897-173-0', 'ean' => '9788418971730', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-02-04 11:44:20', 'updated_at' => '2025-04-20 15:55:22', 'deleted_at' => null],
- ['id' => 42834, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897178.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Scratch Proyectos prácticos', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1gk63', 'isbn' => '978-84-1897-178-5', 'ean' => '9788418971785', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 174, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 174, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-02-15 10:26:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42861, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897179.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking Ético', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5mrkp', 'isbn' => '978-84-18971-79-2', 'ean' => '9788418971792', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-02-24 03:37:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42862, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897172.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Inteligencia Artificial Casos prácticos con Aprendizaje Profundo', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4k3ob', 'isbn' => '978-84-1897-172-3', 'ean' => '9788418971723', 'editorial' => 'Ra-Ma editorial', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 336, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 336, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-02-24 03:41:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42918, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897175.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Json Curso Práctico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pi9bf', 'isbn' => '978-84-1897-175-4', 'ean' => '9788418971754', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-03-08 16:38:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42919, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897176.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Node JS Curso Práctico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2omq5', 'isbn' => '978-84-1897-176-1', 'ean' => '9788418971761', 'editorial' => 'RA-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-03-08 16:45:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42920, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897177.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Laravel Curso Práctico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j6poy', 'isbn' => '978-84-1897-177-8', 'ean' => '9788418971778', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 478, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 478, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-03-08 16:53:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42954, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897180.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Edison Robots, Barcodes, Edblocks y EdScratch', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4mnjg', 'isbn' => '978-84-18-971-808', 'ean' => '9788418971808', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 248, 'tipo_impresion' => 'colorhq', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 248, 'color_papel_id' => 2, 'color_gramaje' => 90, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 90, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-03-16 07:33:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 42997, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897185.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprendizaje automático y profundo en Python. Una mirada hacia la inteligencia artificial', 'autor' => 'Carlos M. Pineda Pertuz', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6wia9', 'isbn' => '978-84-1897--185-3', 'ean' => '9788418971853', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 346, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 346, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-03-30 08:29:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43026, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897194.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Curso de programación Bash Shell', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r20b1', 'isbn' => '978-84-1897-194-5', 'ean' => '9788418971945', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-04-06 05:01:06', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43054, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897193.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Auditoria de Seguridad Informática. Curso Práctico', 'autor' => 'Silvia Clara Menéndez Arante', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7hzge', 'isbn' => '978-84-1897-193-8', 'ean' => '9788418971938', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-04-11 11:32:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43083, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897190.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estructuras de datos Fundamentación práctica', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e1nzb', 'isbn' => '978-84-1897-190-7', 'ean' => '9788418971907', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 404, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 404, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-04-20 11:58:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43084, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897191.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Análisis de circuitos eléctricos. Un enfoque teórico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_aoudm', 'isbn' => '978-84-1897-191-4', 'ean' => '9788418971914', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 584, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 584, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-04-20 12:04:35', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43139, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897197.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Kali Linux Curso Práctico', 'autor' => 'Alonso E. Caballero Quezada', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bd4m6', 'isbn' => '978-84-1897-197-6', 'ean' => '9788418971976', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-04-29 04:38:20', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43169, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897183.gif', 'ancho' => 220.00, 'alto' => 220.00, 'peso' => null, 'titulo' => 'Mi unicornio poliester', 'autor' => 'Miguel Ángel San Juan y Antonio Cano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'FÁBULAS POR LA DIVERSIDAD', 'isk' => 'isk_libro_20250420_mu4as', 'isbn' => '978-84-1897-183-9', 'ean' => '9788418971839', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 40, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 40, 'color_papel_id' => 2, 'color_gramaje' => 160, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 160, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 2, 'cubierta_gramaje' => 170, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 2, 'cubierta_pod_gramaje' => 170, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 1, 'ubicacion' => null, 'created_at' => '2022-05-09 13:52:56', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43171, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897182.gif', 'ancho' => 220.00, 'alto' => 220.00, 'peso' => null, 'titulo' => 'Mateo tiene tres abuelas', 'autor' => 'Miguel Ángel San Juan y Antonio Cano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => 'FÁBULAS POR LA DIVERSIDAD', 'isk' => 'isk_libro_20250420_zxbm9', 'isbn' => '978-84-1897-182-2', 'ean' => '9788418971822', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 44, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 44, 'color_papel_id' => 2, 'color_gramaje' => 160, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 160, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 2, 'cubierta_gramaje' => 170, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 2, 'cubierta_pod_gramaje' => 170, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 1, 'ubicacion' => null, 'created_at' => '2022-05-10 06:43:27', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43196, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897192.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'Auditoría de Seguridad Informatica MF0487_3', 'autor' => 'Silvia Clara Menéndez ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g5xqm', 'isbn' => '978-84-18971-92-1', 'ean' => '9788418971921', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 198, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 198, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-05-17 08:31:01', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43273, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897147.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Alfabetización y competencias digitales', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t9zwb', 'isbn' => '978-84-1897-147-1', 'ean' => '9788418971471', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-05-31 11:38:21', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43322, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897199.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT46-Competencias Digitales Avanzadas', 'autor' => 'José Baldomero Martínez ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_362ex', 'isbn' => '978-84-1897-199-0', 'ean' => '9788418971990', 'editorial' => 'RA-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-08 11:00:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43323, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944402.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Competencias digitales para mayores ', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6odp1', 'isbn' => '978-84-1944-402-8', 'ean' => '9788419444028', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-08 11:07:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43337, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897196.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Estatica para ingeniería', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ef4wo', 'isbn' => '978-84-1897-196-9', 'ean' => '9788418971969', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 322, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 322, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-10 10:22:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43346, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944406.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad Informática para mayores', 'autor' => 'Juan Andrés Maíllo Fernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a30wb', 'isbn' => '978-84-1944-406-6', 'ean' => '9788419444066', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 176, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 176, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-13 09:01:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43402, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944405.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Psicotrading y gestión de riesgo ¡Como no quemar una cuenta, 2ª Edición!', 'autor' => 'Fernando García Arias', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gnfy1', 'isbn' => '978-84-1944-405-9', 'ean' => '9788419444059', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 192, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-24 09:50:56', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43403, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944403.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Arduino Curso completo 2ª edición', 'autor' => 'Daniel Schmidt', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r6m78', 'isbn' => '978-84-1944-403-5', 'ean' => '9788419444035', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 380, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 380, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-06-24 09:55:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43441, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944410.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Minecraft 2022 Guía completa: trucos, secretos y construcciones', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6sa1v', 'isbn' => '978-84-1944-410-3', 'ean' => '9788419444103', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 122, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 122, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-07-05 05:54:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43447, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944407.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La Metodología Wyckoff en Profundidad-3ª Edición', 'autor' => 'Rubén Villahermosa Chaves', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_47ab2', 'isbn' => '978-84-1944-407-3', 'ean' => '9788419444073', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-07-06 11:28:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43448, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944408.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Trading e Inversión para principiantes -3ª Edición!', 'autor' => 'Rubén Villahermosa Chaves', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rn8bp', 'isbn' => '978-84-1944-408-0', 'ean' => '9788419444080', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-07-06 11:33:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43461, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944409.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Wyckoff 2.0 Estructuras, Volume Profile y Order Flow', 'autor' => 'Rubén Villahermosa Chaves', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bgmcw', 'isbn' => '978-84-1944-409-7', 'ean' => '9788419444097', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 216, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 216, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-07-11 06:15:26', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43485, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944412.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Proyectos Minecraft Education Edition', 'autor' => 'Pablo E. Fernandez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_059u8', 'isbn' => '978-84-19444-12-7', 'ean' => '9788419444127', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 126, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 126, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-07-19 14:07:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43600, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944404.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Raspberry Pi Configuración y programación con Python', 'autor' => 'Daniel Schmidt', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o8mya', 'isbn' => '978-84-1944-404-2', 'ean' => '9788419444042', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 270, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 270, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-09-06 10:57:56', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43620, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944413.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Ciberseguridad para niños con Minecraft', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fe1wt', 'isbn' => '978-84-1944-413-4', 'ean' => '9788419444134', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 78, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 78, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-09-12 16:12:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43621, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944427.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Hacking Curso completo', 'autor' => 'Fernando Castillo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bra0h', 'isbn' => '978-84-1944-427-1', 'ean' => '9788419444271', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-09-12 16:18:06', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43646, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944426.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Reparación de teléfonos móviles', 'autor' => 'Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_589u0', 'isbn' => '978-84-1944-426-4', 'ean' => '9788419444264', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-09-20 11:28:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43675, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944429.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Fórmulas y funciones matemáticas con Excel', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rdja1', 'isbn' => '978-84-1944-429-5', 'ean' => '9788419444295', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-09-30 10:14:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43711, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788418/978841897195.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Puesta en producción segura', 'autor' => 'Máximo Fernandez Riera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ou1cs', 'isbn' => '978-84-1897-195-2', 'ean' => '9788418971952', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 338, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 338, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-10-13 16:27:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43741, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944430.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de contratos inteligentes en la Red Blockchain de Ethereum con Solidity', 'autor' => 'Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k3ruz', 'isbn' => '978-84-1944-430-1', 'ean' => '9788419444301', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 438, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 438, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-10-20 13:41:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43799, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944433.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Metaverso Comprende qué es y cómo funciona para explicárselo a tu cuñado', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6rotl', 'isbn' => '978-84-1944-433-2', 'ean' => '9788419444332', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-11-06 16:18:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43800, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944434.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Instagram Trucos y consejos para conseguir seguidores', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ez4vy', 'isbn' => '978-84-1944-434-9', 'ean' => '9788419444349', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 164, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-11-06 16:23:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43820, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944436.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ingeniería inversa Curso práctico', 'autor' => 'Cayetano de Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fyuia', 'isbn' => '978-84-19444-36-3', 'ean' => '9788419444363', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-11-14 15:32:20', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43839, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944438.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'HARDWARE Y SISTEMAS OPERATIVOS- VOL 1', 'autor' => 'Eva María Campos Monge, Maribel Campos Monge, Jorge López Querol', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c573r', 'isbn' => '978-84-19444-38-7', 'ean' => '9788419444387', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 288, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 288, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-11-18 09:13:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43886, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944442.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'BASES DE DATOS AVANZADAS E INGENIERÍA DEL SOFTWARE', 'autor' => 'Maribel Campos Monge, Eva María Campos Monge, Jorge López Querol', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cmhgo', 'isbn' => '978-84-19444-42-4', 'ean' => '9788419444424', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-11-28 04:06:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43933, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944428.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Masterización en el audio Teoría, metodología y praxis', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n7bwx', 'isbn' => '978-84-1944-428-8', 'ean' => '9788419444288', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-12-07 04:18:15', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 43965, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944455.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Robótica, Biónica y Domótica usando Arduino y Tinkercad', 'autor' => 'Starlearn', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0o9fy', 'isbn' => '978-84-19444-55-4', 'ean' => '9788419444554', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 170, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 170, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2022-12-19 08:20:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44015, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944440.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Algoritmia y Bases De Datos', 'autor' => 'Jorge López Querol, Eva María Campos Monge, Maribel Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qksru', 'isbn' => '978-84-19444-40-0', 'ean' => '9788419444400', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-03 10:50:08', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44016, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944458.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Big Data, machine learning y data science en python', 'autor' => 'Jose Manuel Ortega ', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3jx4n', 'isbn' => '978-84-1944-458-5', 'ean' => '9788419444585', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-03 10:57:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44037, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944444.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'GESTIÓN DE PROYECTOS, REDES Y SISTEMAS MULTIMEDIA', 'autor' => 'Maribel Campos Monge, Jorge López Querol, Eva María Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_aqf6w', 'isbn' => '978-84-19444-44-8', 'ean' => '9788419444448', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 304, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 304, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-13 09:12:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44056, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944466.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'DAX: Lenguaje para el análisis de datos', 'autor' => 'Antonio Menchén Peñuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5kf21', 'isbn' => '978-84-19444-66-0', 'ean' => '9788419444660', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-20 05:46:02', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44075, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944463.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'REPRESENTACIÓN DE LA INFORMACIÓN, HARDWARE Y ESTRUCTURAS DE DATOS', 'autor' => 'Maribel Campos Monge, Eva María Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f6bzl', 'isbn' => '978-84-1944-463-9', 'ean' => '9788419444639', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-25 11:37:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44091, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944464.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SISTEMAS OPERATIVOS, SISTEMAS INFORMÁTICOS Y LENGUAJES DE PROGRAMACIÓN', 'autor' => 'Eva María Campos Monge, Maribel Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zrku7', 'isbn' => '978-84-1944-464-6', 'ean' => '9788419444646', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-29 09:06:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44096, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944462.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'LENGUAJE C, BASES DE DATOS Y APLICACIONES INFORMÁTICAS', 'autor' => 'Maribel Campos Monge, Eva María Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bd8pq', 'isbn' => '978-84-1944-462-2', 'ean' => '9788419444622', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-01-30 15:22:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44115, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944465.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SISTEMAS MULTIMEDIA Y REDES', 'autor' => 'Eva María Campos Monge, Maribel Campos Monge', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4t6x7', 'isbn' => '978-84-1944-465-3', 'ean' => '9788419444653', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-02-05 16:09:06', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44127, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944456.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Robótica con Arduino', 'autor' => 'Starlearn', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2u0g5', 'isbn' => '978-84-1944-456-1', 'ean' => '9788419444561', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 96, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 96, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-02-07 14:59:48', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44128, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944457.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Biónica y Domótica con Tinkercad', 'autor' => 'Starlearn', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rp62k', 'isbn' => '978-84-1944-457-8', 'ean' => '9788419444578', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 116, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 116, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-02-07 15:08:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44161, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944471.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Las claves para adentrarse en la CryptoJungla', 'autor' => 'Emanuele Giusto Kantfish', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c9rlm', 'isbn' => '978-84-19444-71-4', 'ean' => '9788419444714', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 322, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 322, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-02-19 15:35:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44162, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944473.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciberseguridad IoT y su aplicación en Ciudades Inteligentes', 'autor' => 'Enrique Villa Crespo, Ismael Morales Alonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g5qa0', 'isbn' => '978-84-19444-73-8', 'ean' => '9788419444738', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-02-19 15:38:40', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44223, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944479.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Kali Linux para Hackers Técnicas y metodologías avanzadas de seguridad informática ofensiva', 'autor' => 'Arturo Enrique Mata García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_uwrf4', 'isbn' => '978-84-19444-79-0', 'ean' => '9788419444790', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-01 08:30:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44232, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944482.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Aprendizaje Automático con Tensorflow y Pytorch', 'autor' => 'Jaime Duque Domingo, Jaime Gómez García-Bermejo, Eduardo Zalama Casanova', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jukd1', 'isbn' => '978-84-1944-482-0', 'ean' => '9788419444820', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 358, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 358, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-04 16:38:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44254, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944484.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de la tesorería en la empresa Curso práctico', 'autor' => 'Juan Jose Villate Alonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a23d9', 'isbn' => '978-84-1944-484-4', 'ean' => '9788419444844', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-14 11:52:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44260, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944483.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Robótica educativa con Lego© Boost. 32 divertidos proyectos', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y40wq', 'isbn' => '978-84-1944-483-7', 'ean' => '9788419444837', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 100, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 100, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 270, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 270, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-15 08:24:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44309, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944487.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Minecraft y Scratch Herramientas lúdicas para la educación', 'autor' => 'Starlearn', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kqybs', 'isbn' => '978-84-19444-87-5', 'ean' => '9788419444875', 'editorial' => 'RA_MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-27 06:47:59', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44319, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944495.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT151PO CIBERSEGURIDAD. SECTOR HOSTELERÍA', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_81g7w', 'isbn' => '978-84-19444-95-0', 'ean' => '9788419444950', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:41:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44320, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944494.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM15 ESPECIALISTA EN MARKETING DIGITAL', 'autor' => 'Yi Min Shum Xie', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5hqxp', 'isbn' => '978-84-19444-94-3', 'ean' => '9788419444943', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:43:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44321, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944493.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD084PO HACKING ÉTICO Y CIBERSEGURIDAD', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1qus6', 'isbn' => '978-84-19444-93-6', 'ean' => '9788419444936', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:45:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44322, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944492.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT107 RESPONSABLE EXPERTO DE DATA', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7ce45', 'isbn' => '978-84-19444-92-9', 'ean' => '9788419444929', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:47:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44323, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944491.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT100PO SEGURIDAD DE LOS SISTEMAS INFORMÁTICOS Y DE COMUNICACIÓN', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ujipq', 'isbn' => '978-84-19444-91-2', 'ean' => '9788419444912', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:49:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44324, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944490.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0009 GESTOR DE INCIDENTES DE CIBERSEGURIDAD EC COUNCIL', 'autor' => 'Maite Moreno García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lnx91', 'isbn' => '978-84-19444-90-5', 'ean' => '9788419444905', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:50:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44325, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944488.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'GESTIÓN DE TESORERÍA', 'autor' => 'JUAN JOSE VILLATE ALONSO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kes31', 'isbn' => '978-84-1944-488-2', 'ean' => '9788419444882', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:53:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44326, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944486.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN125PO TESORERÍA', 'autor' => 'Juan Jose Villate Alonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d13eu', 'isbn' => '978-84-19444-86-8', 'ean' => '9788419444868', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:55:02', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44327, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944469.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM03 GESTIÓN DE LA CIBERSEGURIDAD EN PYMES. COMERCIO ELECTRÓNICO SEGURO', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d2yp7', 'isbn' => '978-84-19444-69-1', 'ean' => '9788419444691', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-03-29 07:56:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44343, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944496.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'TikTok Trucos y consejos para conseguir seguidores', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3zsl4', 'isbn' => '978-84-1944-496-7', 'ean' => '9788419444967', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 142, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 142, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-04-03 06:18:27', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44431, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944497.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de Aprendizaje Automático', 'autor' => 'Emilio Soria Olivas, Manuel Antonio Sánchez-Montañés Isla, Ruth Gamero Cruz, Borja Castillo Caballero, Pedro Cano Michelena', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o4dbt', 'isbn' => '978-84-1944-497-4', 'ean' => '9788419444974', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-04-25 10:35:40', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44432, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944499.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Programación de Inteligencia Artificial Curso Práctico', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7fz9h', 'isbn' => '978-84-1944-499-8', 'ean' => '9788419444998', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-04-25 10:39:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44457, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985710.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD070PO SISTEMA OPERATIVO LINUX', 'autor' => 'Sebastián Sánchez Prieto, Óscar García Población', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h87e6', 'isbn' => '978-84-1985-710-1', 'ean' => '9788419857101', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-02 12:43:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44458, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985711.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT57 REPARACIÓN DE MÓVILES', 'autor' => 'Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9ib8m', 'isbn' => '978-84-1985-711-8', 'ean' => '9788419857118', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-02 12:48:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44459, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985712.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'EOCO073PO MODELADO Y GESTIÓN DE INSTALACIONES BIM CON REVIT MEP', 'autor' => 'Luis Carlos De la Peña Arribas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_08qtn', 'isbn' => '978-84-1985-712-5', 'ean' => '9788419857125', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-02 12:51:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44460, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985713.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD68 INTRODUCCIÓN A LA PROGRAMACIÓN EN PYTHON', 'autor' => 'Omar Iván Trejos Buriticá, Luis Eduardo Muñoz Guerrero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r71ji', 'isbn' => '978-84-1985-713-2', 'ean' => '9788419857132', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-02 12:54:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44476, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985716.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Construcción y diseño de páginas web con HTML, CSS y JavaScript', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_yobs5', 'isbn' => '978-84-1985-716-3', 'ean' => '9788419857163', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-05 07:06:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44506, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985719.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CONSTRUCCIÓN DE PÁGINAS WEB 2ª EDICIÓN', 'autor' => 'PABLO ENRIQUE FERNÁNDEZ CASADO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 2, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2j1wk', 'isbn' => '978-84-19857-19-4', 'ean' => '9788419857194', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 246, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 246, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-09 12:11:50', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44507, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Construcción y diseño de páginas web con HTML, CSS y JavaScript', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_txv0j', 'isbn' => null, 'ean' => null, 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2023-05-09 12:15:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44519, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985722.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD65EXP JAVASCRIPT AVANZADO E IONIC', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cirfl', 'isbn' => '978-84-19857-22-4', 'ean' => '9788419857224', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 438, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 438, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:11:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44520, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985723.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI06 INICIACIÓN EN COMPETENCIAS DIGITALES BÁSICAS', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_40nxw', 'isbn' => '978-84-19857-23-1', 'ean' => '9788419857231', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:13:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44521, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9978841/997884198574.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD82 JAVASCRIPT', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ersp8', 'isbn' => '9978-84-19857-41-5', 'ean' => '99788419857415', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:15:47', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44522, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985740.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD55 DESARROLLO WEB FRONT END', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k2wm7', 'isbn' => '978-84-19857-40-8', 'ean' => '9788419857408', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:17:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44523, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985736.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD077PO MACHINE LEARNING E INTELIGENCIA ARTIFICIAL', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4yprw', 'isbn' => '978-84-19857-36-1', 'ean' => '9788419857361', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:18:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44524, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985735.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM04 INTRODUCCIÓN A LA INTELIGENCIA ARTIFICIAL APLICADA AL MARKETING', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gexrh', 'isbn' => '978-84-19857-35-4', 'ean' => '9788419857354', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:19:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44525, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985734.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT155PO INTRODUCCIÓN A LA INTELIGENCIA ARTIFICIAL Y LOS ALGORITMOS', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hqno5', 'isbn' => '978-84-19857-34-7', 'ean' => '9788419857347', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:21:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44526, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985733.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD107 ESPECIALISTA EN INTELIGENCIA ARTIFICIAL', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mcpye', 'isbn' => '978-84-19857-33-0', 'ean' => '9788419857330', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:23:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44527, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985732.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT163PO INTELIGENCIA ARTIFICIAL APLICADA A LA EMPRESA', 'autor' => 'Wilmar Alonso Ramírez Gil, Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pjk6w', 'isbn' => '978-84-19857-32-3', 'ean' => '9788419857323', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:25:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44528, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985731.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD11 BLOCKCHAIN: APLICACIONES EN EMPRESA', 'autor' => 'María Isabel Rojo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m5ndh', 'isbn' => '978-84-19857-31-6', 'ean' => '9788419857316', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:26:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44529, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985730.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD57 PROGRAMACIÓN PARA VIDEOJUEGOS EN UNITY', 'autor' => 'Luis Ruelas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6igh7', 'isbn' => '978-84-19857-30-9', 'ean' => '9788419857309', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 444, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 444, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:27:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44530, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985729.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD51 DESARROLLO DE APLICACIONES PARA DISPOSITIVOS ANDROID', 'autor' => 'Jorge Santiago Nolasco Valenzuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3fypk', 'isbn' => '978-84-19857-29-3', 'ean' => '9788419857293', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:28:56', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44531, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985728.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD45 LARAVEL (PHP FRAMEWORK'],
- ['id' => 44532, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985727.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI04 BLOCKCHAIN AVANZADO', 'autor' => 'Marta Beltrán, Dioni Nespral, Roberto Fernández Hergueta', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o96uv', 'isbn' => '978-84-19857-27-9', 'ean' => '9788419857279', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:31:42', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44533, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985726.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI03 BLOCKCHAIN BÁSICO', 'autor' => 'María Isabel Rojo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6e9za', 'isbn' => '978-84-19857-26-2', 'ean' => '9788419857262', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:33:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44534, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985725.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG026PO FUNDAMENTOS TECNOLOGÍAS INFORMACIÓN Y COMUNICACIÓN', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2435l', 'isbn' => '978-84-19857-25-5', 'ean' => '9788419857255', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:34:29', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44535, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985724.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT164PO MODELADO 3D E INFOGRAFÍA CON BLENDER', 'autor' => 'Marcos Lidon Mañas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rm17g', 'isbn' => '978-84-19857-24-8', 'ean' => '9788419857248', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 494, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 06:35:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44538, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985737.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD090PO CONFECCIÓN DE PÁGINAS WEB CON JOOMLA', 'autor' => 'Fernando Rodríguez Diéguez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qvfh6', 'isbn' => '978-84-19857-37-8', 'ean' => '9788419857378', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 308, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 308, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 14:24:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44539, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985738.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD40 DISEÑO DE VIDEOJUEGOS Y CONCEPTUALIZACIÓN', 'autor' => 'Nelson Mauricio García Arias, Yohiner Moreno Salamanca', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9qfh6', 'isbn' => '978-84-1985-738-5', 'ean' => '9788419857385', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-16 14:26:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44540, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985720.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Comunicación, Branding y Eventos Corporativos Estrategias de comunicación para un entorno digital e inclusivo', 'autor' => 'Miguel Ángel San Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c7nxh', 'isbn' => '978-84-19857-20-0', 'ean' => '9788419857200', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-17 06:10:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44567, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985715.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD093PO MACHINE LEARNING APLICADO USANDO PYTHON', 'autor' => 'Emilio Soria Olivas, Manuel Antonio Sánchez-Montañés Isla, Ruth Gamero Cruz, Borja Castillo Caballero, Pedro Cano Michelena,', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oped3', 'isbn' => '978-84-1985-715-6', 'ean' => '9788419857156', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-22 10:16:08', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44592, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985718.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de Big Data', 'autor' => 'Victor Lopez Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8oaib', 'isbn' => '978-84-19857-18-7', 'ean' => '9788419857187', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-25 16:23:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44594, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985742.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Diseño de páginas web con HTML y CSS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jeclk', 'isbn' => '978-84-19857-42-2', 'ean' => '9788419857422', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 246, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 246, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-05-26 05:47:26', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44641, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985745.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciberinteligencia de la amenaza en Entornos Corporativos', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ndy8w', 'isbn' => '978-84-19857-45-3', 'ean' => '9788419857453', 'editorial' => 'RA-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 774, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 774, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-06-02 07:14:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44653, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciberinteligencia de la amenaza en entornos corporativos', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_haqdp', 'isbn' => null, 'ean' => null, 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 774, 'tipo_impresion' => 'colorhq', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2023-06-08 11:52:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44705, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985750.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Tecnologías Disruptivas. Comprende las herramientas de la sociedad digital', 'autor' => 'Jorge Santiago Nolasco Valenzuela, Javier Gamboa Cruzado, Jymmy Stuwart Dextre Alarcon, Luz Elena Nolasco Valenzuela, Julio Palacios Ormeño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dq2um', 'isbn' => '978-84-1985-750-7', 'ean' => '9788419857507', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 406, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 406, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-06-28 11:25:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44736, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985747.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de Bases de Datos', 'autor' => 'Rafael Núñez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kq18a', 'isbn' => '978-84-1985-747-7', 'ean' => '9788419857477', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-07-11 10:00:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44746, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985752.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Sistemas de audio para sonido en directo', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wa3ep', 'isbn' => '978-84-1985-752-1', 'ean' => '9788419857521', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 318, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 318, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-07-14 06:31:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44754, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985754.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Publicación de páginas web', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_czra0', 'isbn' => '978-84-1985-754-5', 'ean' => '9788419857545', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-07-18 10:40:29', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44773, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985757.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Creación de componentes en JavaScript. Curso práctico', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zgbiq', 'isbn' => '978-84-19857-57-6', 'ean' => '9788419857576', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => '', 'created_at' => '2023-07-28 09:56:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44774, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841944470.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF0225_3 - Gestión de Bases de Datos. 2ª Edición', 'autor' => 'Rafael Núñez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_u0tho', 'isbn' => '978-84-1944-470-7', 'ean' => '9788419444707', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-07-28 10:03:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44775, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985756.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF0952_2 - Publicación de páginas web', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_b6e2v', 'isbn' => '978-84-19857-56-9', 'ean' => '9788419857569', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-07-28 10:06:04', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44789, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985760.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Principios de Derecho Mercantil. 4ª Edición actualizada', 'autor' => 'José Daniel Cuadrado Ramos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_l63fy', 'isbn' => '978-84-1985-760-6', 'ean' => '9788419857606', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-08-07 08:39:35', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44808, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985759.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'INTEGRACIÓN DE COMPONENTES SOFTWARE EN PÁGINAS WEB', 'autor' => 'PABLO ENRIQUE FERNÁNDEZ CASADO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7k3ef', 'isbn' => '978-84-19857-59-0', 'ean' => '9788419857590', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-08-22 11:48:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44837, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985765.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD098PO-Estrategia y Comunicación Empresarial', 'autor' => 'Miguel Ángel San Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ia2yn', 'isbn' => '978-84-19857-65-1', 'ean' => '9788419857651', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-05 11:36:50', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44883, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985771.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de la publicidad y de la comunicación corporativa', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_axi3e', 'isbn' => '978-84-19857-71-2', 'ean' => '9788419857712', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-18 04:38:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44885, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985766.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ASP.NET Aplicaciones web Edición 2023', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1aw3p', 'isbn' => '978-84-1985-766-8', 'ean' => '9788419857668', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-18 04:41:13', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44898, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985763.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Inbound Marketing Curso práctico 2ª edición', 'autor' => 'David Tomás, Laia Cardona, Marina Sala, Dany Ortiz, Helena Alcoverro, Shanon Roberts, Oier Gil, Tanit de Pouplana e Irene Riart', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g9567', 'isbn' => '978-84-19857-63-7', 'ean' => '9788419857637', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-18 14:30:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44906, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985778.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM102PO INBOUND BUSINESS STRATEGY', 'autor' => 'David Tomás, Laia Cardona, Marina Sala, Dany Ortiz, Helena Alcoverro, Shanon Roberts, Oier Gil, Tanit de Pouplana e Irene Riart', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_53mjq', 'isbn' => '978-84-19857-78-1', 'ean' => '9788419857781', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-20 11:43:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44907, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985777.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM101PO INBOUND MARKETING', 'autor' => 'David Tomás, Laia Cardona, Marina Sala, Dany Ortiz, Helena Alcoverro, Shanon Roberts, Oier Gil, Tanit de Pouplana e Irene Riart', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_awe9m', 'isbn' => '978-84-19857-77-4', 'ean' => '9788419857774', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-20 11:46:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44908, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985776.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM098PO ESTRATEGIAS DE INBOUND MARKETING', 'autor' => 'David Tomás, Laia Cardona, Marina Sala, Dany Ortiz, Helena Alcoverro, Shanon Roberts, Oier Gil, Tanit de Pouplana e Irene Riart', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g5or9', 'isbn' => '978-84-19857-76-7', 'ean' => '9788419857767', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 146, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 146, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-20 11:47:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44926, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985775.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD018PO-Desarrollo de Aplicaciones web con ASP.NET', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w234l', 'isbn' => '978-84-19857-75-0', 'ean' => '9788419857750', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-22 09:15:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44941, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985770.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Windows 11. Curso completo', 'autor' => 'Claudio Alejandro Peña Millahual, Ernesto Agüero', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7u8aq', 'isbn' => '978-84-1985-770-5', 'ean' => '9788419857705', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-09-26 11:11:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44971, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985762.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT126PO INTRODUCCIÓN A LAS EMPRESAS 4.0', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6jh9x', 'isbn' => '978-84-19857-62-0', 'ean' => '9788419857620', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-10-03 04:30:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44972, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985774.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM110PO GESTIÓN DE LA PUBLICIDAD Y DE LA COMUNICACIÓN CORPORATIVA', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8txey', 'isbn' => '978-84-1985-774-3', 'ean' => '9788419857743', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-10-03 04:32:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 44999, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985781.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Macros en Excel. Ejemplos prácticos', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bs9kw', 'isbn' => '978-84-19857-81-1', 'ean' => '9788419857811', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-10-10 05:03:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45019, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985767.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'React. Curso práctico', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pov2g', 'isbn' => '978-84-1985-767-5', 'ean' => '9788419857675', 'editorial' => 'Ra-Ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-10-13 10:08:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45039, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985768.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'PHP Avanzado Edición 2023', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x2jq5', 'isbn' => '978-84-1985-768-2', 'ean' => '9788419857682', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 340, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-10-22 18:38:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45110, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985783.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Minecraft 2024 Guía completa: trucos, secretos y construcciones', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nsyh1', 'isbn' => '978-84-1985-783-5', 'ean' => '9788419857835', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 108, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 108, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-07 05:23:13', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45119, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985769.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Visual Studio Code', 'autor' => 'Fernando Gamarra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y6bpr', 'isbn' => '978-84-1985-769-9', 'ean' => '9788419857699', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-08 11:33:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45127, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985773.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Montaje, configuración, actualización y reparación del PC Edición 2023', 'autor' => 'Mariano Manciamelli, Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o2rjn', 'isbn' => '978-84-1985-773-6', 'ean' => '9788419857736', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-13 09:03:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45130, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985784.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Psicotrading Mente y Emociones Un profundo aprendizaje basado en casos reales', 'autor' => 'Germán Antelo Solozábal', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rku65', 'isbn' => '978-84-1985-784-2', 'ean' => '9788419857842', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-13 14:16:47', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45151, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985779.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Industria y Logística 4.0', 'autor' => 'Luis Anibal Mora García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g450d', 'isbn' => '978-84-1985-779-8', 'ean' => '9788419857798', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-21 04:27:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45177, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985786.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COML02 TRANSFORMACIÓN LOGÍSTICA EN UN ENTORNO DE INDUSTRIA 4.0', 'autor' => 'Luis Anibal Mora García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m4o7i', 'isbn' => '978-84-1985-786-6', 'ean' => '9788419857866', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-11-28 13:11:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45194, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985797.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD087PO TECNOLOGÍAS HABILITADORAS DE LA INDUSTRIA 4.0', 'autor' => 'Jorge Santiago Nolasco Valenzuela Javier Gamboa Cruzado Jymmy Stuwart Dextre Alarcon Luz Elena Nolasco Valenzuela Julio Palacios Ormeño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zt604', 'isbn' => '978-84-19857-97-2', 'ean' => '9788419857972', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 400, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 400, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-04 16:59:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45195, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985798.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM08EXP MARKETING Y COMUNICACIÓN EN LA RED', 'autor' => 'Yi Min Shum Xie', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h5rb9', 'isbn' => '978-84-19857-98-9', 'ean' => '9788419857989', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 368, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 368, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-04 17:02:26', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45200, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985791.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF0486 SEGURIDAD DE EQUIPOS INFORMÁTICOS EDICIÓN 2024', 'autor' => 'ARTURO E. MATA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vlwn6', 'isbn' => '978-84-1985-791-0', 'ean' => '9788419857910', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-06 08:28:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45201, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985789.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad de Equipos Informáticos Edición 2024', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 3, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y8wl5', 'isbn' => '978-84-1985-789-7', 'ean' => '9788419857897', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 310, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 310, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-06 08:29:51', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45205, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9978841/997884198578.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Macros con VBA 2021 Curso completo', 'autor' => 'Luis Gimón', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n9p82', 'isbn' => '978-84-19857-87-3', 'ean' => '9788419857873', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 592, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-11 07:38:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45233, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985794.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Kotlin y Jetpack Compose Desarrollo de aplicaciones Android', 'autor' => 'Raúl Pedro Aceñero Eixarch', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p9sd8', 'isbn' => '978-84-1985-794-1', 'ean' => '9788419857941', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 354, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 354, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-14 14:27:27', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45235, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Macros con VBA Excel 2021 Curso completo', 'autor' => 'Luis Domingo Gimón Rodríguez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rfxu1', 'isbn' => null, 'ean' => null, 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 592, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => null, 'negro_papel_id' => null, 'negro_gramaje' => null, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => null, 'color_paginas' => null, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => null, 'cubierta_gramaje' => null, 'cubierta_acabado_id' => null, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => null, 'cubierta_pod_gramaje' => null, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => null, 'ubicacion' => null, 'created_at' => '2023-12-15 08:28:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45236, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985792.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Marketing Personal Promociona, Posiciona y Vende tu marca Curso práctico', 'autor' => 'Jorge Eliécer Prieto Herrera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ws4my', 'isbn' => '978-84-19857-92-7', 'ean' => '9788419857927', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-15 08:30:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45237, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985796.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0034 DESARROLLO DE APLICACIONES CON KOTLIN PARA DISPOSITIVOS MÓVILES ANDROID', 'autor' => 'Raúl Pedro Aceñero Eixarch', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k31pl', 'isbn' => '978-84-1985-796-5', 'ean' => '9788419857965', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 354, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 354, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-15 08:33:39', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45267, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788419/978841985799.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Autismo y nuevas tecnologías Herramientas para una vida de calidad', 'autor' => 'Celia Nohemí Crespo Cortés, José Rafael Cortés León, Emilio Soria • Jaime Duque Domingo Eduardo Zalama Casanova • Jaime Gómez García-Bermejo', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8b4d5', 'isbn' => '978-84-1985-799-6', 'ean' => '9788419857996', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2023-12-26 10:55:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45338, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018104.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ChatGPT Obtén el máximo rendimiento a la Inteligencia Artificial Generativa', 'autor' => 'Javier Gamboa Cruzado Jorge Santiago Nolasco Valenzuela Luz Elena Nolasco Valenzuela Roberto Casas Miranda', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vi9yu', 'isbn' => '978-84-10181-04-5', 'ean' => '9788410181045', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-01-16 09:55:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45339, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018100.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La guía Trisman Manual de Trading de FOREX y CFDs', 'autor' => 'Raymond Trisman', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zrkwo', 'isbn' => '978-84-1018-100-7', 'ean' => '9788410181007', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 242, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 242, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-01-16 09:58:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45370, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018108.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo de aplicaciones móviles para Android con Kodular', 'autor' => 'Axel Daniel Saldívar Zaldivar Daniel Zaldivar Navarro Erik Cuevas Jiménez Marco A. Pérez Cisneros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_efquo', 'isbn' => '978-84-10181-08-3', 'ean' => '9788410181083', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 236, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 236, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-01-29 04:30:01', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45389, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018112.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ELEE003PO FUNDAMENTOS BÁSICOS DE ELECTRICIDAD', 'autor' => 'David Arboledas Brihuega', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_y1mag', 'isbn' => '978-84-1018-112-0', 'ean' => '9788410181120', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 156, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 156, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:29:26', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45390, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018113.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD95 HACKING ÉTICO', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pi7a2', 'isbn' => '978-84-1018-113-7', 'ean' => '9788410181137', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:30:59', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45391, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018114.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0040 INTRODUCCIÓN AL HACKING ÉTICO CERTIFICACIÓN EHA', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_q7hy5', 'isbn' => '978-84-1018-114-4', 'ean' => '9788410181144', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:32:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45392, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018115.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0094 INTELIGENCIA ARTIFICIAL APLICADA A LA INGENIERÍA: DEL MACHINE LEARNING AL CHATGPT', 'autor' => 'Javier Gamboa Cruzado Jorge Santiago Nolasco Valenzuela Luz Elena Nolasco Valenzuela Roberto Casas Miranda', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8912k', 'isbn' => '978-84-1018-115-1', 'ean' => '9788410181151', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:34:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45393, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018116.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0049 CHATGPT E INTELIGENCIA ARTIFICIAL', 'autor' => 'Javier Gamboa Cruzado Jorge Santiago Nolasco Valenzuela Luz Elena Nolasco Valenzuela Roberto Casas Miranda', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7ack8', 'isbn' => '978-84-1018-116-8', 'ean' => '9788410181168', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:36:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45394, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018117.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOO08 CREACIÓN Y GESTIÓN DE LA MARCA PERSONAL Y REDES SOCIALES EN LA BÚSQUEDA DE EMPLEO', 'autor' => 'Jorge Eliécer Prieto Herrera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6wgdq', 'isbn' => '978-84-1018-117-5', 'ean' => '9788410181175', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:38:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45395, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018118.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'HOTR0006 CREACIÓN Y GESTIÓN DE LA MARCA PERSONAL EN HOSTELERÍA', 'autor' => 'Jorge Eliécer Prieto Herrera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dxpsj', 'isbn' => '978-84-10181-18-2', 'ean' => '9788410181182', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-01 17:39:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45396, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018119.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT085PO PROGRAMACIÓN DE MACROS EXCEL CON VISUAL BASIC (NIVEL I'],
- ['id' => 45412, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018134.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMSV010PO MEZCLA DE SONIDOS ELECTRÓNICOS', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8mu62', 'isbn' => '978-84-1018-134-2', 'ean' => '9788410181342', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-07 04:16:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45413, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018133.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMSV0016 MEZCLA DE SONIDOS ELECTRÓNICOS', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8735t', 'isbn' => '978-84-1018-133-5', 'ean' => '9788410181335', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-07 04:18:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45414, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018132.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMSV0007 EL SONIDO EN DIRECTO', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5wlja', 'isbn' => '978-84-1018-132-8', 'ean' => '9788410181328', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-07 04:20:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45415, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018131.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMSV013PO EL SONIDO EN DIRECTO', 'autor' => 'Julián Zafra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wxlup', 'isbn' => '978-84-1018-131-1', 'ean' => '9788410181311', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 274, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 274, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-07 04:22:40', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45477, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018135.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Excel 365 Curso práctico', 'autor' => 'Ricardo Cirelli', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5e61u', 'isbn' => '978-84-1018-135-9', 'ean' => '9788410181359', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 366, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 366, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-20 17:58:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45493, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018136.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOO01 INSERCIÓN LABORAL Y TÉCNICAS DE BÚSQUEDA DE EMPLEO', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a4c36', 'isbn' => '978-84-1018-136-6', 'ean' => '9788410181366', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 82, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 82, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-02-23 06:48:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45540, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018166.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRO0003 PERSONAL BRANDING', 'autor' => 'Miguel Ángel San Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kqadf', 'isbn' => '978-84-10181-66-3', 'ean' => '9788410181663', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:33:48', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45541, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018165.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM003 POBRANDING EN EL SECTOR DE PUBLICIDAD', 'autor' => 'Miguel Ángel San Juan', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mong1', 'isbn' => '978-84-10181-65-6', 'ean' => '9788410181656', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 144, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 144, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:37:29', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45542, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018164.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'FCOI30 TELETRABAJO: HERRAMIENTAS IMPRESCINDIBLES', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_28g9q', 'isbn' => '978-84-10181-64-9', 'ean' => '9788410181649', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:42:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45543, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018163.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI28 APLICACIÓN DE LA HOJA DE CÁLCULO EXCEL (NIVEL AVANZADO'],
- ['id' => 45544, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018162.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI27 APLICACIÓN DE LA HOJA DE CÁLCULO EXCEL (NIVEL INICIAL'],
- ['id' => 45545, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018161.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'FCOI29 TELETRABAJO: HERRAMIENTAS Y RENTABILIDAD', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_478on', 'isbn' => '978-84-10181-61-8', 'ean' => '9788410181618', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:48:42', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45546, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018160.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI26 SEGURIDAD Y CIVISMO EN EL ENTORNO DIGITAL (NIVEL AVANZADO'],
- ['id' => 45547, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018159.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI24 SEGURIDAD Y CIVISMO EN EL ENTORNO DIGITAL (NIVEL BÁSICO'],
- ['id' => 45548, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018158.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI14 INICIACIÓN A LA INFORMÁTICA Y COMPETENCIAS DIGITALES BÁSICAS PARA EL EMPLEO', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2hguv', 'isbn' => '978-84-10181-58-8', 'ean' => '9788410181588', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:55:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45549, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018157.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI13 INICIACIÓN A LA INFORMÁTICA Y EN COMPETENCIAS DIGITALES BÁSICAS', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fncz3', 'isbn' => '978-84-10181-57-1', 'ean' => '9788410181571', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:56:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45550, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018156.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI08 INICIACIÓN EN COMPETENCIAS DIGITALES BÁSICAS PARA EL EMPRENDIMIENTO', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h9b46', 'isbn' => '978-84-10181-56-4', 'ean' => '9788410181564', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 06:58:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45551, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018155.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI07 COMPETENCIAS DIGITALES BÁSICAS PARA EL EMPLEO', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dwhjn', 'isbn' => '978-84-10181-55-7', 'ean' => '9788410181557', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:00:16', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45552, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018154.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI02 ALFABETIZACION INFORMATICA: INFORMATICA E INTERNET', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hkdcm', 'isbn' => '978-84-10181-54-0', 'ean' => '9788410181540', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:01:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45553, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018153.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOI01 ALFABETIZACIÓN INFORMÁTICA: INFORMÁTICA E INTERNET', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h1u95', 'isbn' => '978-84-10181-53-3', 'ean' => '9788410181533', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 124, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 124, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:03:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45554, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018152.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0022 OFIMÁTICA: APLICACIONES INFORMÁTICAS DE GESTIÓN', 'autor' => 'Handz Valentin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5kh8a', 'isbn' => '978-84-10181-52-6', 'ean' => '9788410181526', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 284, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 284, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:05:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45555, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018151.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'CTRD0009 POLIVALENTE EN GESTIÓN INFORMÁTICA', 'autor' => 'Francisco Manuel Rosado Alcántara - Ana Belén Jorge Blázquez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6m4y3', 'isbn' => '978-84-10181-51-9', 'ean' => '9788410181519', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 234, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 234, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:08:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45556, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018150.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0010 INICIACIÓN AL TRABAJO CON HOJAS DE CÁLCULO', 'autor' => 'Handz Valentin', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vi6s2', 'isbn' => '978-84-10181-50-2', 'ean' => '9788410181502', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:09:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45557, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018149.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0007 COMPETENCIAS BÁSICAS EN RELACIÓN A LA OFIMÁTICA', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bzvrx', 'isbn' => '978-84-10181-49-6', 'ean' => '9788410181496', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 07:11:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45563, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018137.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SCRUM Teoría e Implementación práctica', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r8ukv', 'isbn' => '978-84-10181-37-3', 'ean' => '9788410181373', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 378, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 378, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-05 17:39:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45597, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018110.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => '101 Funciones con Excel', 'autor' => 'Axel Daniel Saldívar Zaldivar Daniel Zaldivar Navarro Erik Cuevas Jiménez Marco A. Pérez Cisneros', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fqnb2', 'isbn' => '978-84-10181-10-6', 'ean' => '9788410181106', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 168, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 168, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-11 15:43:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45614, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018139.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0041 GESTIÓN DE PROYECTOS CON SCRUM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p8hqk', 'isbn' => '978-84-1018-139-7', 'ean' => '9788410181397', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 120, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 120, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:27:08', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45615, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018140.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD44 DESARROLLO DE SOFTWARE CON METODOLOGÍAS ÁGILES: SCRUM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cj8y4', 'isbn' => '978-84-1018-140-3', 'ean' => '9788410181403', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 126, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 126, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:28:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45616, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018143.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD28 SCRUM Y METODOLOGÍAS ÁGILES PARA PROYECTOS DIGITALES', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6xbad', 'isbn' => '978-84-1018-143-4', 'ean' => '9788410181434', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 108, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 108, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:30:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45617, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018142.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD069PO SCRUM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g1okq', 'isbn' => '978-84-1018-142-7', 'ean' => '9788410181427', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 100, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 100, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:31:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45618, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018141.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD048PO METODOLOGÍA DE GESTIÓN Y DESARROLLO DE PROYECTOS DE SOFTWARE CON SCRUM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1q3fd', 'isbn' => '978-84-1018-141-0', 'ean' => '9788410181410', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 126, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 126, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:32:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45619, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018148.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD342PO INTRODUCCIÓN A SCRUM (SDC TRACK'],
- ['id' => 45620, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018146.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD341PO GESTION ÁGIL DE PROYECTOS CON SCRUM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xveb2', 'isbn' => '978-84-1018-146-5', 'ean' => '9788410181465', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 108, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 108, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:35:50', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45621, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018145.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD338PO CERTIFIED SCRUM MASTER-CSM', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fmuyo', 'isbn' => '978-84-1018-145-8', 'ean' => '9788410181458', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 108, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 108, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:36:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45622, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018144.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD337PO CERTIFIED SCRUM DEVELOPER-CSD', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4bg2o', 'isbn' => '978-84-1018-144-1', 'ean' => '9788410181441', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 258, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 258, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-13 06:38:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45668, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018171.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Reparaciones electrónicas', 'autor' => 'Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p6e1d', 'isbn' => '978-84-1018-171-7', 'ean' => '9788410181717', 'editorial' => 'RA_MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-21 11:06:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45669, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018170.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'FCOO02 SENSIBILIZACIÓN EN LA IGUALDAD DE OPORTUNIDADES', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4uhw8', 'isbn' => '978-84-1018-170-0', 'ean' => '9788410181700', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 116, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 116, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-21 11:15:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45685, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018181.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Iniciación a la creación de páginas web', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fdumz', 'isbn' => '978-84-10181-81-6', 'ean' => '9788410181816', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-03-27 10:13:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45696, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018193.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT056PO INSTALACIÓN Y MANTENIMIENTO DE ORDENADORES', 'autor' => 'Mariano Manciamelli Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_oglvc', 'isbn' => '978-84-1018-193-9', 'ean' => '9788410181939', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:08:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45697, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018192.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT016PO ARQUITECTURA DEL PC - MANTENIMIENTO HARDWARE', 'autor' => 'Mariano Manciamelli Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_w83sj', 'isbn' => '978-84-1018-192-2', 'ean' => '9788410181922', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:10:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45698, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018191.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD112 RESOLUCIÓN DE PROBLEMAS MULTISECTORIALES: MODELOS DE MACHINE LEARNING, DEEP LEARNING Y USO MASIVO DE DATOS', 'autor' => 'Jesús Bobadilla', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hlmno', 'isbn' => '978-84-1018-191-5', 'ean' => '9788410181915', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:22:40', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45699, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018190.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0062 FUNDAMENTOS DE PROGRAMACIÓN EN PYTHON', 'autor' => 'Ángel Pablo Hinojosa Gutiérrez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dnz8r', 'isbn' => '978-84-1018-190-8', 'ean' => '9788410181908', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:25:02', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45700, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018189.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0036 PYTHON AVANZADO', 'autor' => 'Alberto Cuevas Álvarez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nkm13', 'isbn' => '978-84-1018-189-2', 'ean' => '9788410181892', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 560, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 560, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:27:05', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45701, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018188.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT120 BIG DATA. ANALÍTICA DE DATOS', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5n02r', 'isbn' => '978-84-1018-188-5', 'ean' => '9788410181885', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:28:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45703, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018187.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'SSCG018PO CONCILIACIÓN DE LA VIDA LABORAL Y FAMILIAR', 'autor' => 'Jon Bruguera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8y17l', 'isbn' => '978-84-1018-187-8', 'ean' => '9788410181878', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:30:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45704, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018186.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ADGD96 GESTIÓN DEL TIEMPO PARA FACILITAR LA CONCILIACIÓN DE LA VIDA LABORAL Y FAMILIAR', 'autor' => 'Jon Bruguera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o05zj', 'isbn' => '978-84-1018-186-1', 'ean' => '9788410181861', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:32:05', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45705, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018185.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG039PO INTERNET Y FUNDAMENTOS DE DISEÑO DE PÁGINAS WEB', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ki2qw', 'isbn' => '978-84-10181-85-4', 'ean' => '9788410181854', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:33:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45706, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018184.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0072 CREACIÓN Y MANTENIMIENTO DE PÁGINAS WEB. BÁSICO', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_x2cve', 'isbn' => '978-84-10181-84-7', 'ean' => '9788410181847', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:34:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45707, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018183.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD010PO INICIACIÓN A LA CREACIÓN DE PÁGINAS WEB', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ukifj', 'isbn' => '978-84-10181-83-0', 'ean' => '9788410181830', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 150, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 150, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-01 10:36:01', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45746, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018106.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CURSO DE MARKETING DIGITAL CÓMO ELABORAR Y EJECUTAR UN PLAN DE MARKETING DIGITAL', 'autor' => 'ROSA MORENO COMPANY', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ob2yn', 'isbn' => '978-84-10181-06-9', 'ean' => '9788410181069', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 474, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:06:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45747, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018180.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMT02EXP MARKETING DIGITAL Y VENTA CONSULTIVA', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g1mpc', 'isbn' => '978-84-1018-180-9', 'ean' => '9788410181809', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:10:51', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45748, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018179.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM120PO SEGUIMIENTO Y EVALUACIÓN DEL PLAN DE MARKETING DIGITAL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_89m1n', 'isbn' => '978-84-1018-179-3', 'ean' => '9788410181793', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:32:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45749, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018178.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COML01 MARKETING DIGITAL & E-COMMERCE PARA LA AUTOMOCIÓN', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_kyh9x', 'isbn' => '978-84-1018-178-6', 'ean' => '9788410181786', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:33:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45750, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018177.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM05EXP RESPONSABLE DE MARKETING DIGITAL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9pc3e', 'isbn' => '978-84-1018-177-9', 'ean' => '9788410181779', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:35:16', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45751, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018176.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM0029 ESTRATEGIAS DE MARKETING DIGITAL EN EL SECTOR DE PRODUCTOS Y SERVICIOS PARA NIÑOS Y JÓVENES', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1ifkd', 'isbn' => '978-84-1018-176-2', 'ean' => '9788410181762', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:36:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45752, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018175.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM119PO CÓMO ELABORAR UN PLAN DE MARKETING DIGITAL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_otplv', 'isbn' => '978-84-1018-175-5', 'ean' => '9788410181755', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:38:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45753, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018174.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM025PO FUNDAMENTOS DEL PLAN DE MARKETING EN INTERNET', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1agq2', 'isbn' => '978-84-1018-174-8', 'ean' => '9788410181748', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-05 16:39:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45849, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897592.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La gestión por Calidad Total en la empresa moderna', 'autor' => 'José Ruiz-Canela López', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gyapi', 'isbn' => '978-84-7897-592-6', 'ean' => '9788478975926', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 512, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 512, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-04-22 09:02:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45949, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036001.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT124 RESPUESTA A INCIDENTES DE CIBERSEGURIDAD', 'autor' => 'Maite Moreno García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hyubq', 'isbn' => '978-84-10360-01-3', 'ean' => '9788410360013', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-08 10:42:13', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45950, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036002.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT103 CIBERSEGURIDAD: PREVENCIÓN, ANÁLISIS Y RESPUESTA A INCIDENTES DE SEGURIDAD', 'autor' => 'Maite Moreno García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wit7g', 'isbn' => '978-84-1036-002-0', 'ean' => '9788410360020', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 202, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 202, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-08 10:43:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45951, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036003.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD083PO INFORMÁTICA FORENSE Y CIBERSEGURIDAD', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qkurs', 'isbn' => '978-84-1036-003-7', 'ean' => '9788410360037', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 464, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 464, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-08 10:44:48', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45952, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036004.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT010PO ANÁLISIS CON UML (MODELIZACIÓN'],
- ['id' => 45961, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018198.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD022PO DESARROLLO WEB PARA COMERCIO ELECTRÓNICO', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ac20m', 'isbn' => '978-84-10181-98-4', 'ean' => '9788410181984', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-09 06:16:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 45987, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018169.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Matemáticas y gráficos con Python', 'autor' => 'José Luis Prieto Morlanés', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nizcs', 'isbn' => '978-84-1018-169-4', 'ean' => '9788410181694', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 482, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 482, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-14 08:40:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46001, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018196.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Desarrollo web para comercio electrónico', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gu3mq', 'isbn' => '978-84-10181-96-0', 'ean' => '9788410181960', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-17 05:41:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46013, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036000.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Contabilidad de las Entidades Aseguradoras Economía del seguro', 'autor' => 'Mª Isabel de Lara Bueno Antonio José Fernández Ruiz', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wr2kc', 'isbn' => '978-84-1036-000-6', 'ean' => '9788410360006', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-18 17:19:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46036, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036020.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT165PO BIG DATA PARA INGENIERÍAS', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_afucm', 'isbn' => '978-84-10360-20-4', 'ean' => '9788410360204', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:09:06', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46037, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036019.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT127PO ARQUITECTURA BIG DATA', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n9tdh', 'isbn' => '978-84-10360-19-8', 'ean' => '9788410360198', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:10:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46038, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036018.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT01 ANALISTA DE BIG DATA Y CIENTÍFICO DE DATOS', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_glrk6', 'isbn' => '978-84-10360-18-1', 'ean' => '9788410360181', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:11:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46039, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036017.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT128PO BIG DATA', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2qk7y', 'isbn' => '978-84-10360-17-4', 'ean' => '9788410360174', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:12:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46040, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036016.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT119 BIG DATA Y BUSINESS INTELLIGENCE', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ao6u9', 'isbn' => '978-84-10360-16-7', 'ean' => '9788410360167', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:14:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46041, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036015.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD71EXP HERRAMIENTAS DE BIG DATA Y DATA ANALYTICS', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3meto', 'isbn' => '978-84-10360-15-0', 'ean' => '9788410360150', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:16:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46042, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018167.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Visión Artificial Componentes de los sistemas de visión y nuevas tendencias en Deep Learning', 'autor' => 'Jaime Duque Domingo Jaime Gómez García-Bermejo Eduardo Zalama Casanova', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dgxzk', 'isbn' => '978-84-1018-167-0', 'ean' => '9788410181670', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 502, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 502, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-22 15:17:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46045, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036009.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ciberseguridad Curso práctico', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_07l2u', 'isbn' => '978-84-10360-09-9', 'ean' => '9788410360099', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-23 09:50:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46060, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036011.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT133PO CIBERSEGURIDAD', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cjogp', 'isbn' => '978-84-10360-11-2', 'ean' => '9788410360112', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-24 14:56:05', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46074, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036014.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM0032 REVOLUCIÓN ARTIFICIAL: USO Y APLICACIONES DE CHATGPT EN EL ENTORNO DIGITAL', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jyedq', 'isbn' => '978-84-1036-014-3', 'ean' => '9788410360143', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-29 08:03:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46078, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036012.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ChatGPT para redes sociales', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6wrbd', 'isbn' => '978-84-1036-012-9', 'ean' => '9788410360129', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-05-29 09:41:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46112, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018168.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD088P VISIÓN ARTIFICIAL Y SU APLICACIÓN EN LA INDUSTRIA 4.0', 'autor' => 'Jaime Duque Domingo Jaime Gómez García-Bermejo Eduardo Zalama Casanova', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xhp0z', 'isbn' => '978-84-1018-168-7', 'ean' => '9788410181687', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 502, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 502, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-06-05 05:43:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46133, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036021.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'People Analytics Big Data al servicio de los recursos humanos', 'autor' => 'Emilio Soria-Olivas Héctor Casado Antonio Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hgbzj', 'isbn' => '978-84-1036-021-1', 'ean' => '9788410360211', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 362, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 362, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-06-10 10:54:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46197, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036025.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Inteligencia artificial para pintores y artistas', 'autor' => 'Ramón Tenreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hp0x8', 'isbn' => '978-84-1036-025-9', 'ean' => '9788410360259', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 164, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 164, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-06-25 11:27:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46238, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036027.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Proxmox Curso práctico', 'autor' => 'Eduardo Taboada Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8aogp', 'isbn' => '978-84-10360-23-5', 'ean' => '9788410360235', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 432, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 432, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-05 11:00:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46303, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036030.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'POSICIONAMIENTO SEO CURSO PRÁCTICO', 'autor' => 'PABLO E. FERNÁNDEZ CASADO', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h3za4', 'isbn' => '978-84-1036-030-3', 'ean' => '9788410360303', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:40:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46304, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036032.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD211PO POSICIONAMIENTO WEB EN BUSCADORES', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tvi5d', 'isbn' => '978-84-1036-032-7', 'ean' => '9788410360327', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:47:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46305, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036033.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD212PO POSICIONAMIENTO WEB EN BUSCADORES EN EL SECTOR DE PUBLICIDAD', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9qa1c', 'isbn' => '978-84-1036-033-4', 'ean' => '9788410360334', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:50:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46306, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036034.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD385PO INTRODUCCIÓN A LAS TÉCNICAS DE POSICIONAMIENTO WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bui23', 'isbn' => '978-84-10360-34-1', 'ean' => '9788410360341', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:53:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46307, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036035.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM061PO POSICIONAMIENTO EN LA WEB PARA EL EMPRENDIMIENTO', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hzbn0', 'isbn' => '978-84-1036-035-8', 'ean' => '9788410360358', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:57:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46308, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036036.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ITADG0014 POSICIONAMIENTO WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8rvmz', 'isbn' => '978-84-1036-036-5', 'ean' => '9788410360365', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 04:59:39', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46313, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036028.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Adobe InDesign Curso Práctico', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hk394', 'isbn' => '978-84-1036-028-0', 'ean' => '9788410360280', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 10:26:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46314, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036027.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'La Ley de la Inteligencia Artificial Parte I', 'autor' => 'Álvaro Pablo López-Amo Sainz', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0kz5a', 'isbn' => '978-84-10360-27-3', 'ean' => '9788410360273', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 362, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 362, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-24 10:27:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46328, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036038.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG019PO MAQUETACIÓN DIGITAL CON ADOBE INDESIGN', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7esd9', 'isbn' => '978-84-1036-038-9', 'ean' => '9788410360389', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-30 10:16:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46329, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036039.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG021PO DISEÑO, MAQUETACIÓN E IMPRESIÓN DE CATÁLOGOS', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ws5gc', 'isbn' => '978-84-1036-039-6', 'ean' => '9788410360396', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-30 10:18:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46330, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036040.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGN002PO DISEÑO Y MAQUETACIÓN CON ADOBE INDESIGN', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gzh63', 'isbn' => '978-84-1036-040-2', 'ean' => '9788410360402', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-07-30 10:21:06', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46419, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036005.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG10 VISUALIZACIÓN DE DATOS CON POWER BI', 'autor' => 'JOFEBEUS IRYOPOGU', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6bw0g', 'isbn' => '978-84-1036-005-1', 'ean' => '9788410360051', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 128, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 128, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-08-28 10:07:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46430, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036050.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0083 ACESIBILIDAD WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gsqw8', 'isbn' => '978-84-1036-050-1', 'ean' => '9788410360501', 'editorial' => 'RA-MAº', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 228, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 228, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:22:04', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46431, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036051.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0132 JOOMLA, SISTEMA DE GESTIÓN DE CONTENIDOS WEB', 'autor' => 'Antonio Menchén Peñuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t7l8e', 'isbn' => '978-84-1036-051-8', 'ean' => '9788410360518', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:29:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46432, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036052.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT100 DESARROLLO DE APLICACIONES WEB CON ASP.NET MVC', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ecrby', 'isbn' => '978-84-1036-052-5', 'ean' => '9788410360525', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:33:04', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46433, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036053.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0073 DESARROLLO WEB CON NODE JS', 'autor' => 'Luciano Pucciarelli', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4eu91', 'isbn' => '978-84-1036-053-2', 'ean' => '9788410360532', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 268, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 268, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:35:25', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46434, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036054.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT116 GESTIÓN DE LA SEGURIDAD INFORMÁTICA EN LA EMPRESA', 'autor' => 'Luis Herrero Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4eybf', 'isbn' => '978-84-1036-054-9', 'ean' => '9788410360549', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 316, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 316, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:37:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46435, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036055.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0081 PROGRAMACIÓN BÁSICA DE PÁGINAS WEB CON JAVASCRIPT Y PHP', 'autor' => 'Mercedes Escarcena', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_o97gl', 'isbn' => '978-84-1036-055-6', 'ean' => '9788410360556', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 178, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 178, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:40:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46436, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036056.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0121 PROGRAMACIÓN WEB CON PHP', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zokmd', 'isbn' => '978-84-1036-056-3', 'ean' => '9788410360563', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 340, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 340, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:41:20', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46437, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036057.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0078 CREACIÓN, PROGRAMACIÓN Y DISEÑO DE PÁGINAS WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_28hwr', 'isbn' => '978-84-1036-057-0', 'ean' => '9788410360570', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:42:51', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46438, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036058.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD59 PROGRAMACIÓN WEB CON .NET', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2wfht', 'isbn' => '978-84-1036-058-7', 'ean' => '9788410360587', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:44:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46439, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036059.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0127 DESARROLLO WEB PARA COMERCIO ELECTRÓNICO', 'autor' => 'Pablo E. Fernandez Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3tm6a', 'isbn' => '978-84-1036-059-4', 'ean' => '9788410360594', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 80, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 15:59:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46440, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036060.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGA03 INTRODUCCIÓN AL DIBUJO 2D CON AUTOCAD', 'autor' => 'Castell Cebolla Cebolla Jaime Santoro Recio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1ibrt', 'isbn' => '978-84-1036-060-0', 'ean' => '9788410360600', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 548, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 546, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-02 16:00:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46449, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036044.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0073 MEJORA TU PRODUCTIVIDAD CON INTELIGENCIA ARTIFICIAL', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_d2r9y', 'isbn' => '978-84-1036-044-0', 'ean' => '9788410360440', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-09 12:05:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46450, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036045.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Herramientas IA para impulsar tu productividad', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qa6ic', 'isbn' => '978-84-1036-045-7', 'ean' => '9788410360457', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-09 12:06:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46473, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018147.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD49 TRATAMIENTO DE IMÁGENES PARA WEB Y MÓVIL', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xwe54', 'isbn' => '978-84-1018-147-2', 'ean' => '9788410181472', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 216, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 216, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-17 01:32:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46474, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018194.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Canva Curso completo', 'autor' => 'Fernandez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nfjg8', 'isbn' => '9788410181946', 'ean' => '9788410181946', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 216, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 216, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-17 01:33:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46507, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036041.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Certificación ISTQB Certified Foundation Level 4.0', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_otxc5', 'isbn' => '978-84-1036-041-9', 'ean' => '9788410360419', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 430, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 430, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-09-24 18:20:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46548, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788478/978847897627.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Domine Microsoft Access 2003 2002 y 2000', 'autor' => 'César Pérez López', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r1pl6', 'isbn' => '978-84-7897-627-2', 'ean' => '9788478976272', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 752, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 752, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-04 05:02:04', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46566, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036063.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT062PO ISTQB - CERTIFIED TESTER ADVANCED TEST ANALYST: PREPARATION COURSE', 'autor' => 'Alejandro J. Canosa Ferreiro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qxwhb', 'isbn' => '978-84-1036-063-1', 'ean' => '9788410360631', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 450, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 450, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 17:54:27', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46567, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036049.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG014PO - PHOTOSHOP BÁSICO', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4o5mi', 'isbn' => '978-84-1036-049-5', 'ean' => '9788410360495', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 186, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 18:43:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46568, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036048.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG018PO - TRATAMIENTO DIGITAL DE IMÁGENES', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_f4loi', 'isbn' => '978-84-1036-048-8', 'ean' => '9788410360488', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 186, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 18:48:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46569, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036062.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMST013PO - PHOTOSHOP', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lxzps', 'isbn' => '978-84-1036-062-4', 'ean' => '9788410360624', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 186, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 19:25:07', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46570, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036061.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMST0009 - PHOTOSHOP PARA DISEÑADORES', 'autor' => 'José Luis Armentia', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ib2wh', 'isbn' => '978-84-1036-061-7', 'ean' => '9788410360617', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 186, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 19:29:30', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46571, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841018172.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Scratch 3 Programación creativa', 'autor' => 'Claudio Alejandro Peña Millahual', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mgt2o', 'isbn' => '978-84-1018-172-4', 'ean' => '9788410181724', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 184, 'color_papel_id' => 3, 'color_gramaje' => 80, 'color_pod_papel_id' => 3, 'color_pod_gramaje' => 80, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-09 19:31:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46656, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => null, 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Oratoria Experiencial. Conecta con tu público y sus emociones - 2.ª edición', 'autor' => 'Nuria Neira', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ea2dj', 'isbn' => '978-84-10360-71-6', 'ean' => '9788410360716', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => null, 'color_pod_papel_id' => null, 'color_pod_gramaje' => null, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-28 17:19:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46657, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036070.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'Oratoria Experiencial Conecta con tu público y sus emociones 2ª edición', 'autor' => 'Nuria Neira', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_us9pl', 'isbn' => '978-84-1036-070-9', 'ean' => '9788410360709', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 186, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 186, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-29 04:57:21', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46669, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036065.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Minecraft 2025 Guía no oficial: trucos, secretos y construcciones', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ieatk', 'isbn' => '978-84-10360-65-5', 'ean' => '9788410360655', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 136, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 0, 'negro_papel_id' => null, 'negro_gramaje' => 0, 'negro_pod_papel_id' => null, 'negro_pod_gramaje' => 0, 'color_paginas' => 136, 'color_papel_id' => 2, 'color_gramaje' => 120, 'color_pod_papel_id' => 2, 'color_pod_gramaje' => 120, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-10-30 09:59:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46714, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036072.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Prevención de riesgos laborales Conceptos generales', 'autor' => 'Elsa Rubio Duce', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4ye6x', 'isbn' => '978-84-10360-72-3', 'ean' => '9788410360723', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-18 07:08:02', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46715, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036074.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRR0012 (FCOS0012'],
- ['id' => 46734, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036067.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Ingeniería de datos Diseño, implementación y optimización de flujos de datos en Python', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0nxp7', 'isbn' => '978-84-10360-67-9', 'ean' => '9788410360679', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-21 08:40:11', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46736, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036075.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Power BI Curso práctico', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i9ub2', 'isbn' => '978-84-1036-075-4', 'ean' => '9788410360754', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-21 08:41:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46740, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036077.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT153 ANÁLISIS DE DATOS CON EXCEL: POWER QUERY, POWER PIVOT Y POWER BI', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r6py1', 'isbn' => '978-84-1036-077-8', 'ean' => '9788410360778', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-21 10:56:30', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46741, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036078.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG10 VISUALIZACIÓN DE DATOS CON POWER BI', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_wh3ne', 'isbn' => '978-84-1036-078-5', 'ean' => '9788410360785', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-21 10:57:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46742, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036079.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT161PO ANÁLISIS DE DATOS Y PROGRAMACIÓN CON MICROSOFT POWER BI', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e40a7', 'isbn' => '978-84-1036-079-2', 'ean' => '9788410360792', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 282, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 282, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-21 10:58:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46758, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036085.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0035 REVOLUCIÓN ARTIFICIAL: APLICACIONES BASADAS EN INTELIGENCIA ARTIFICIAL', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tce4y', 'isbn' => '978-84-1036-085-3', 'ean' => '9788410360853', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:10:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => '`id`', 'cliente_id' => '`cliente_id`', 'proveedor_id' => '`proveedor_id`', 'user_created_id' => '`user_created_id`', 'user_update_id' => '`user_update_id`', 'cubierta_archivo' => '`cubierta_archivo`', 'cubierta_url' => '`cubierta_url`', 'ancho' => '`ancho`', 'alto' => '`alto`', 'peso' => '`peso`', 'titulo' => '`titulo`', 'autor' => '`autor`', 'autor_entidad' => '`autor_entidad`', 'traductor' => '`traductor`', 'ilustrador' => '`ilustrador`', 'idioma' => '`idioma`', 'num_edic' => '`num_edic`', 'fecha_disponibilidad' => '`fecha_disponibilidad`', 'fecha_public' => '`fecha_public`', 'num_fotos' => '`num_fotos`', 'num_ilustr' => '`num_ilustr`', 'num_ilustr_color' => '`num_ilustr_color`', 'num_ilustr_bn' => '`num_ilustr_bn`', 'coleccion' => '`coleccion`', 'isk' => '`isk`', 'isbn' => '`isbn`', 'ean' => '`ean`', 'editorial' => '`editorial`', 'resumen' => '`resumen`', 'resumen_breve' => '`resumen_breve`', 'sello' => '`sello`', 'paginas' => '`paginas`', 'tipo_impresion' => '`tipo_impresion`', 'comentarios' => '`comentarios`', 'negro_paginas' => '`negro_paginas`', 'negro_papel_id' => '`negro_papel_id`', 'negro_gramaje' => '`negro_gramaje`', 'negro_pod_papel_id' => '`negro_pod_papel_id`', 'negro_pod_gramaje' => '`negro_pod_gramaje`', 'color_paginas' => '`color_paginas`', 'color_papel_id' => '`color_papel_id`', 'color_gramaje' => '`color_gramaje`', 'color_pod_papel_id' => '`color_pod_papel_id`', 'color_pod_gramaje' => '`color_pod_gramaje`', 'cubierta_paginas' => '`cubierta_paginas`', 'cubierta_papel_id' => '`cubierta_papel_id`', 'cubierta_gramaje' => '`cubierta_gramaje`', 'cubierta_acabado_id' => '`cubierta_acabado_id`', 'cubierta_ancho_solapas' => '`cubierta_ancho_solapas`', 'cubierta_pod_papel_id' => '`cubierta_pod_papel_id`', 'cubierta_pod_gramaje' => '`cubierta_pod_gramaje`', 'sobrecubierta_paginas' => '`sobrecubierta_paginas`', 'sobrecubierta_papel_id' => '`sobrecubierta_papel_id`', 'sobrecubierta_gramaje' => '`sobrecubierta_gramaje`', 'sobrecubierta_acabado_id' => '`sobrecubierta_acabado_id`', 'sobrecubierta_ancho_solapas' => '`sobrecubierta_ancho_solapas`', 'sobrecubierta_pod_papel_id' => '`sobrecubierta_pod_papel_id`', 'sobrecubierta_pod_gramaje' => '`sobrecubierta_pod_gramaje`', 'encuadernacion_id' => '`encuadernacion_id`', 'ubicacion' => '`ubicacion`', 'created_at' => '`created_at`', 'updated_at' => '`updated_at`', 'deleted_at' => '`deleted_at`'],
- ['id' => 46759, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036086.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0099 INTELIGENCIA ARTIFICIAL GENERATIVA Y MEJORA DE LA PRODUCTIVIDAD', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t6n1m', 'isbn' => '978-84-1036-086-0', 'ean' => '9788410360860', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 190, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 190, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:11:40', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46760, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036087.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'CTRL0005 COMUNICACIÓN EN LENGUA CASTELLANA PARA EL EMPLEO. NIVEL 2', 'autor' => 'Mª Del Mar Alique Pérez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k4mjp', 'isbn' => '978-84-1036-087-7', 'ean' => '9788410360877', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 256, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 256, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:12:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46761, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036088.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'CTRG0005 GESTIÓN DEL TIEMPO Y PRODUCTIVIDAD', 'autor' => 'Jon Bruguera', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5kmdi', 'isbn' => '978-84-1036-088-4', 'ean' => '9788410360884', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 192, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 192, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:14:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46762, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036089.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0087 SEGURIDAD DIGITAL BÁSICA', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_145rl', 'isbn' => '978-84-1036-089-1', 'ean' => '9788410360891', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:15:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46763, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036090.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0077 ARQUITECTURA DEL PC - MANTENIMIENTO HARDWARE', 'autor' => 'Mariano Manciamelli Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rnm7b', 'isbn' => '978-84-1036-090-7', 'ean' => '9788410360907', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:16:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46764, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036091.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0084 INSTALACIÓN Y MANTENIMIENTO DE ORDENADORES', 'autor' => 'Mariano Manciamelli Pier Ciccariello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gbs42', 'isbn' => '978-84-1036-091-4', 'ean' => '9788410360914', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 610, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 610, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-11-26 11:17:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46765, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036092.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IMSV0033 (IMSV29'],
- ['id' => 46791, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036093.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ChatGPT para Excel Curso práctico', 'autor' => 'Claudio A. Peña Millahual', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_um0i2', 'isbn' => '978-84-10360-93-8', 'ean' => '9788410360938', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 162, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 162, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-04 10:49:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46799, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036081.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM0033 REVOLUCIÓN ARTIFICIAL: HERRAMIENTAS DE INTELIGENCIA ARTIFICIAL APLICADAS AL COMERCIO TRADICIONAL', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9712z', 'isbn' => '978-84-10360-81-5', 'ean' => '9788410360815', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-10 11:42:09', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46801, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036080.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Inteligencia Artificial aplicada al comercio', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_853w7', 'isbn' => '978-84-10360-80-8', 'ean' => '9788410360808', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-10 11:45:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46826, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036084.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT150 COMPETENCIAS DIGITALES PARA LA CIUDADANÍA BÁSICO ACCESIBLE DOBLE-A', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vkotr', 'isbn' => '978-84-10360-84-6', 'ean' => '9788410360846', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 188, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 188, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-16 16:44:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46827, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036095.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT151 COMPETENCIAS DIGITALES PARA LA CIUDADANÍA INTERMEDIO ACCESIBLE DOBLE-A', 'autor' => 'José Baldomero Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_0i5tz', 'isbn' => '978-84-1036-095-2', 'ean' => '9788410360952', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 148, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 148, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-16 16:46:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46831, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764200.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CURSO PRÁCTICO DE COMERCIO EN INTERNET ESTRATEGIAS PARA OPTIMIZAR RECURSOS Y MAXIMIZAR BENEFICIOS', 'autor' => 'BEATRIZ CORONADO GARCÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qd4kr', 'isbn' => '979-13-87642-00-6', 'ean' => '9791387642006', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'color', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-18 10:51:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46836, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764202.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMT0008 (COMT066PO'],
- ['id' => 46841, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036083.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Arduino. Proyectos prácticos. Edición 2025', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mhg45', 'isbn' => '978-84-10360-83-9', 'ean' => '9788410360839', 'editorial' => '', 'resumen' => null, 'resumen_breve' => null, 'sello' => '', 'paginas' => 264, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 264, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2024-12-20 06:19:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46878, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036097.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'El Arte de Enseñar Metodologías y Habilidades para la Docencia', 'autor' => 'Ana Varela Echeverria', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_irbwt', 'isbn' => '978-84-10360-97-6', 'ean' => '9788410360976', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-07 12:06:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46879, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764210.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Seguridad GNU/Linux Curso práctico', 'autor' => 'Alejandro Belmar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tq0vp', 'isbn' => '979-13-8764-210-5', 'ean' => '9791387642105', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-07 12:11:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46884, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036099.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SSCE077PO FORMACIÓN DE FORMADORES PARA FORMACIÓN PROFESIONAL PARA EL EMPLEO', 'autor' => 'Ana Varela Echeverria', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_5bghi', 'isbn' => '978-84-1036-099-0', 'ean' => '9788410360990', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-08 09:53:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46943, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764205.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT79 CONFIGURACIÓN DE REDES', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_movy3', 'isbn' => '979-13-8764-205-1', 'ean' => '9791387642051', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:23:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46944, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764208.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0032 PROGRAMACIÓN EN C++', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_avzfe', 'isbn' => '979-13-8764-208-2', 'ean' => '9791387642082', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 804, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 804, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:26:29', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46945, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764213.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD47 PROGRAMACIÓN CON SQL Y BASES DE DATOS RELACIONALES', 'autor' => 'Rafael Núñez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4hv1y', 'isbn' => '979-13-8764-213-6', 'ean' => '9791387642136', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 254, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 254, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:28:39', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46946, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764214.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT78 ADMINISTRACIÓN DE SISTEMAS LINUX', 'autor' => 'Sebastián Sánchez Prieto Óscar García Población', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g0jph', 'isbn' => '979-13-8764-214-3', 'ean' => '9791387642143', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:30:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46947, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764212.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD53 DESARROLLO EN JAVA CON FRAMEWORK SPRING', 'autor' => 'Eugenia Pérez Martínez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3atnm', 'isbn' => '979-13-8764-212-9', 'ean' => '9791387642129', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 298, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 298, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:32:02', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46948, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764204.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0029 PROGRAMACIÓN JAVA BÁSICO', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4wf5u', 'isbn' => '979-13-8764-204-4', 'ean' => '9791387642044', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 524, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 524, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:34:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46949, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764211.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0088 MICROSOFT VISUAL C++ CON .NET', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ozjqa', 'isbn' => '979-13-8764-211-2', 'ean' => '9791387642112', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1118, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 1118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:38:12', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46950, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764206.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0030 GESTIÓN DE LA CIBERSEGURIDAD CON CSS', 'autor' => '', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9zyh7', 'isbn' => '979-13-8764-206-8', 'ean' => '9791387642068', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:39:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46951, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764221.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'CTRD0025/CTRD0026 MICROSOFT EXCEL 2019', 'autor' => 'Mariano Gallego', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_81jzk', 'isbn' => '979-13-8764-221-1', 'ean' => '9791387642211', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 350, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 350, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:42:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46952, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764207.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0135 PROGRAMACIÓN CON ASP.NET CORE 6.0 PARA APLICACIONES DE COMERCIO ELECTRÓNICO', 'autor' => 'Santiago Aguirre', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_g84hd', 'isbn' => '979-13-8764-207-5', 'ean' => '9791387642075', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 238, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 238, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:47:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46953, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764215.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD52 DESARROLLO DE APLICACIONES PARA DISPOSITIVOS IOS', 'autor' => 'Enrique Blasco Blanquer', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_zs5xt', 'isbn' => '979-13-8764-215-0', 'ean' => '9791387642150', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-24 04:49:08', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46958, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764217.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Gestión de sitios web Curso práctico', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ejbps', 'isbn' => '979-13-8764-217-4', 'ean' => '9791387642174', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-27 12:51:05', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46959, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764216.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG027PO GESTIÓN DE SITIOS WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gd7ic', 'isbn' => '979-13-8764-216-7', 'ean' => '9791387642167', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 392, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 392, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-27 12:52:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46965, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764218.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Excel y Power Bi El cóctel perfecto', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bhgvs', 'isbn' => '979-13-8764-218-1', 'ean' => '9791387642181', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 328, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-29 10:56:26', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 46966, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764220.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT56 EXCEL AVANZADO Y POWER BI', 'autor' => 'Francisco José Carrasco Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_7o34l', 'isbn' => '979-13-8764-220-4', 'ean' => '9791387642204', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 328, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 328, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-01-29 10:57:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47003, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764203.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Open AI API Modelo GPT personalizado', 'autor' => 'Claudio Bottini', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_bzt65', 'isbn' => '979-13-8764-203-7', 'ean' => '9791387642037', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 110, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 110, 'negro_papel_id' => 3, 'negro_gramaje' => 90, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 90, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-05 11:48:19', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47020, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764222.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF1016_2 APOYO EN LA ORGANIZACIÓN DE INTERVENCIONES EN EL ÁMBITO INSTITUCIONAL', 'autor' => 'BEATRIZ CORONADO GARCÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2hf9u', 'isbn' => '979-13-8764-222-8', 'ean' => '9791387642228', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-11 08:36:46', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47029, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764226.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Coolhunting 3ª Edición', 'autor' => 'Paula Riveros Tovar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_4x7he', 'isbn' => '979-13-8764-226-6', 'ean' => '9791387642266', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-12 08:30:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47045, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036037.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGA001PO AUTOEDICIÓN, DISEÑO Y MAQUETACIÓN', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_14i6e', 'isbn' => '978-84-1036-037-2', 'ean' => '9788410360372', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:03:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47046, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764228.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM011PO COOLHUNTING EN CALZADO', 'autor' => 'Paula Riveros Tovar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cmgo9', 'isbn' => '979-13-8764-228-0', 'ean' => '9791387642280', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:05:23', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47047, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764229.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM012PO COOLHUNTING EN CERÁMICA', 'autor' => 'Paula Riveros Tovar', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6vxnd', 'isbn' => '979-13-8764-229-7', 'ean' => '9791387642297', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:06:55', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47048, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764230.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SEAD025PO / FCOS02 BÁSICO DE GESTIÓN DE LA PREVENCIÓN DE RIESGOS LABORALES', 'autor' => 'Elsa Rubio Duce', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2rdsw', 'isbn' => '979-13-8764-230-3', 'ean' => '9791387642303', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 184, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 184, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:09:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47049, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764231.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0021 POSICIONAMIENTO WEB Y MARKETING DIGITAL EN BUSCADORES', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lyqr1', 'isbn' => '979-13-8764-231-0', 'ean' => '9791387642310', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 270, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 270, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:11:39', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47050, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764232.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGD0031 (ADGD129PO'],
- ['id' => 47051, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764233.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD0061 CONTABILIDAD BÁSICA', 'autor' => 'Manuel Gutiérrez Viguera Álvaro Couso Ruano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ze2bs', 'isbn' => '979-13-8764-233-4', 'ean' => '9791387642334', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:15:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47052, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764234.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD041PO CONTABILIDAD SUPERIOR DE SEGUROS', 'autor' => 'Mª Isabel de Lara Bueno Antonio José Fernández Ruiz', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_k8fx3', 'isbn' => '979-13-8764-234-1', 'ean' => '9791387642341', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 296, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 296, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:16:52', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47053, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764235.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'CTRO0008 USO Y APLICACIONES DEL TELETRABAJO', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_i57fa', 'isbn' => '979-13-8764-235-8', 'ean' => '9791387642358', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-14 11:18:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47060, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764236.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'CTRR0010 (FCOS0010'],
- ['id' => 47061, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764237.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'CTRR0014 (FCOS0014'],
- ['id' => 47062, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764238.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM0008 ORGANIZACIÓN DE EVENTOS Y PROTOCOLO', 'autor' => 'Raúl Morueco Gómez Cristina Arroyo Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_hvbyx', 'isbn' => '979-13-87642-38-9', 'ean' => '9791387642389', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 152, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 152, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-17 10:32:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47063, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764239.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ARGG0008 / ARGG0011 ADOBE INDESIGN', 'autor' => 'Mª Teresa López Jiménez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ar3dl', 'isbn' => '979-13-8764-239-6', 'ean' => '9791387642396', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-17 10:34:34', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47073, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764223.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'INTELIGENCIA ARTIFICIAL APLICADA AL MARKETING CURSO PRÁCTICO', 'autor' => 'ELSA RUBIO DUCE', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1aklu', 'isbn' => '979-13-8764-223-5', 'ean' => '9791387642235', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 226, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 226, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-22 16:00:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47075, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764240.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0019 INTELIGENCIA ARTIFICIAL APLICADA A LA EMPRESA', 'autor' => 'Wilmar Alonso Ramírez Gil Carlos Mario Ramírez Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xp35o', 'isbn' => '979-13-8764-240-2', 'ean' => '9791387642402', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 10:37:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47076, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764241.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0022 BIG DATA', 'autor' => 'Víctor López Fandiño', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vx7bl', 'isbn' => '979-13-8764-241-9', 'ean' => '9791387642419', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 302, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 302, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 10:40:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47077, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764242.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT0020 IOT (INTERNET DE LAS COSAS'],
- ['id' => 47078, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764243.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGG010PO COMERCIO ELECTRÓNICO', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_alh2g', 'isbn' => '979-13-8764-243-3', 'ean' => '9791387642433', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 10:46:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47079, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764244.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT118 SOCIAL MEDIA, REDES SOCIALES Y COMMUNITY MANAGEMENT', 'autor' => 'Alberto Dotras Rodríguez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ectqp', 'isbn' => '979-13-8764-244-0', 'ean' => '9791387642440', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 10:49:41', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47080, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764246.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT154 RED TEAM. SEGURIDAD OFENSIVA', 'autor' => 'Juan Andrés Maíllo Fernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lnt3v', 'isbn' => '979-13-8764-246-4', 'ean' => '9791387642464', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 474, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 10:52:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47081, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764247.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT155 RED TEAM. SEGURIDAD DEFENSIVA', 'autor' => 'Juan Andrés Maíllo Fernández', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_inlm3', 'isbn' => '979-13-8764-247-1', 'ean' => '9791387642471', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 474, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 474, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:07:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47082, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764248.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT186PO SWIFT 4', 'autor' => 'Enrique Blasco Blanquer', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_9pc01', 'isbn' => '979-13-8764-248-8', 'ean' => '9791387642488', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 324, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 324, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:09:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47083, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764249.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0042 UNITY CERTIFIED USER. PROGRAMACIÓN DE VIDEOJUEGOS CON UNITY', 'autor' => 'Adrián Domínguez Díaz Fernando Navarro Pulido Javier Manuel Castro González', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rhx31', 'isbn' => '979-13-8764-249-5', 'ean' => '9791387642495', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 314, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 314, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:12:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47084, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764250.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM0005 PROGRAMACIÓN DE APLICACIONES ANDROID', 'autor' => 'Jorge Santiago Nolasco Valenzuela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ubfi1', 'isbn' => '979-13-8764-250-1', 'ean' => '9791387642501', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 576, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 576, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:15:10', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47085, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764251.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT087PO PROGRAMACIÓN EN VISUAL C++', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lsnmv', 'isbn' => '979-13-8764-251-8', 'ean' => '9791387642518', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 1118, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 1118, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:17:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47086, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764252.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT087PO JAVA', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_j3flb', 'isbn' => '979-13-8764-252-5', 'ean' => '9791387642525', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:20:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47087, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764253.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCM01 ADMINISTRADOR DE REDES CISCO SYSTEMS MÓDULO 1 CCNA: INTRODUCCIÓN A LAS REDES', 'autor' => 'Ernesto Ariganello', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_3f6ab', 'isbn' => '979-13-8764-253-2', 'ean' => '9791387642532', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 528, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 528, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:23:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47088, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764254.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT116 GESTIÓN DE LA SEGURIDAD INFORMÁTICA EN LA EMPRESA', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_cxejv', 'isbn' => '979-13-8764-254-9', 'ean' => '9791387642549', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:26:22', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47089, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764255.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT157 DISEÑO TRIDIMENSIONAL CON BLENDER', 'autor' => 'Marcos Lidon Mañas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_xan9m', 'isbn' => '979-13-8764-255-6', 'ean' => '9791387642556', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 494, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 494, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:28:35', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47090, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764256.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT123 IMPLANTACIÓN Y GESTIÓN DE LA CIBERSEGURIDAD', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tdmxh', 'isbn' => '979-13-8764-256-3', 'ean' => '9791387642563', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:30:37', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47091, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764257.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT158 SEGURIDAD INFORMÁTICA EN ENTORNOS DE TELETRABAJO', 'autor' => 'Arturo E. Mata', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_2s5hq', 'isbn' => '979-13-8764-257-0', 'ean' => '9791387642570', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:35:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47092, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764258.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD112 RESOLUCIÓN DE PROBLEMAS MULTISECTORIALES: MODELOS DE MACHINE LEARNING, DEEP LEARNING Y USO MASIVO DE DATOS', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jro8f', 'isbn' => '979-13-8764-258-7', 'ean' => '9791387642587', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 408, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 408, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:37:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47093, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764259.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT185PO ADMINISTRACIÓN DE SERVIDORES LINUX', 'autor' => 'Sebastián Sánchez Prieto Óscar García Población', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_rh9z2', 'isbn' => '979-13-8764-259-4', 'ean' => '9791387642594', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 402, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 402, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:40:21', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47094, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764260.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT034PO DESARROLLO DE APLICACIONES CON JAVA', 'autor' => 'Miguel Ángel Lozano Ortega Antonio Javier Gallego Sánchez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8cs10', 'isbn' => '979-13-8764-260-0', 'ean' => '9791387642600', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 434, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 434, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:42:35', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47095, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764261.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD004PO ANÁLISIS Y PROGRAMACIÓN EN JAVA', 'autor' => 'José María Vegas Gertrudix', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r921e', 'isbn' => '979-13-8764-261-7', 'ean' => '9791387642617', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 412, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 412, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:44:33', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47096, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764262.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD092PO DESARROLLO DE APLICACIONES BASADAS EN DEEP LEARNING USANDO TENSORFLOW/KERAS', 'autor' => 'Jesús Bobadilla', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fjlsc', 'isbn' => '979-13-8764-262-4', 'ean' => '9791387642624', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 294, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 294, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:47:03', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47097, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764263.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCD027PO GESTOR DE REDES', 'autor' => 'Mario Guerra Soto', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_e9uo8', 'isbn' => '979-13-8764-263-1', 'ean' => '9791387642631', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 212, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 212, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-02-24 11:49:24', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47134, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764245.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT069PO MICROSOFT SQL SERVER', 'autor' => 'Santiago Medina Serrano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_od35q', 'isbn' => '979-13-8764-245-7', 'ean' => '9791387642457', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 732, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 732, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 06:58:57', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47135, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764264.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCT011PO PROGRAMACIÓN .NET', 'autor' => 'Fco. Javier Ceballos Sierra', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dmi0p', 'isbn' => '979-13-8764-264-8', 'ean' => '9791387642648', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 514, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 514, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 07:02:18', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47136, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764265.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'IFCT079PO PROCESAMIENTO DE DATOS CON JAVA', 'autor' => 'José Eduardo Córcoles Tendero Francisco Montero Simarro', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_t7mzi', 'isbn' => '979-13-8764-265-5', 'ean' => '9791387642655', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 07:04:47', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47137, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764270.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMM083PO MERCHANDISING EN EL PUNTO DE VENTA (STAND'],
- ['id' => 47138, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764271.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMM075PO ORGANIZACIÓN DEL PUNTO DE VENTA Y CONTROL DE ACCIONES PROMOCIONALES', 'autor' => 'Ana Cruz Herradón', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vs6al', 'isbn' => '979-13-8764-271-6', 'ean' => '9791387642716', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 07:15:32', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47139, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764272.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM062PO MERCADOTECNIA EN INTERNET', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jid3z', 'isbn' => '979-13-8764-272-3', 'ean' => '9791387642723', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 07:21:01', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47140, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764273.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM06 MARKETING ESTRATÉGICO Y DIGITAL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_h5bua', 'isbn' => '979-13-8764-273-0', 'ean' => '9791387642730', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 07:56:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47141, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764274.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ADGG13 TRABAJO REMOTO. PRINCIPIOS Y HERRAMIENTAS', 'autor' => 'Ana Varela', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ryfu6', 'isbn' => '979-13-8764-274-7', 'ean' => '9791387642747', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 154, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 154, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 08:01:14', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47142, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764275.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM43 MARKETING DIGITAL EN LA INDUSTRIA DE LA PIEL Y EL CALZADO', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_fo63q', 'isbn' => '979-13-8764-275-4', 'ean' => '9791387642754', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 08:36:13', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47144, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764276.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'COMM026PO PROMOCIONES COMERCIALES EN EL PUNTO DE VENTA', 'autor' => 'Ana Cruz Herradón', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_dr6j4', 'isbn' => '979-13-8764-276-1', 'ean' => '9791387642761', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 172, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 172, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 08:52:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47145, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764277.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGN0005 FINANZAS DE EMPRESA PARA NO FINANCIEROS', 'autor' => 'Carles Carrasco Zújar Joan Pallerola Comamala', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_n36oa', 'isbn' => '979-13-8764-277-8', 'ean' => '9791387642778', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:00:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47146, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764278.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN0010 FISCALIDAD OPERATIVA', 'autor' => 'Sandra de Prado Morante', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_lab0p', 'isbn' => '979-13-8764-278-5', 'ean' => '9791387642785', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 194, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 194, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:05:30', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47147, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764279.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM049PO TÉCNICAS DE MARKETING ON LINE, BUSCADORES, SOCIAL MEDIA Y MÓVIL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_klnm7', 'isbn' => '979-13-8764-279-2', 'ean' => '9791387642792', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:09:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47148, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764280.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD0026 GESTIÓN DE TESORERÍA', 'autor' => 'Juan Jose Villate Alonso', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_gu2ho', 'isbn' => '979-13-8764-280-8', 'ean' => '9791387642808', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 200, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 200, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:11:28', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47149, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764281.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGD47 PLANIFICACIÓN Y CONTROL DE PROYECTOS CON MICROSOFT PROJECT', 'autor' => 'Antonio Colmenar Santos David Borge Díez Francisco Javier Cruz Castañón Manuel Castro Gil', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c1r6o', 'isbn' => '979-13-8764-281-5', 'ean' => '9791387642815', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 332, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 332, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:13:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47150, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764282.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGD45 VALORACIÓN Y SEGUIMIENTO DE PROYECTOS', 'autor' => 'Raquel Campo Arranz María del Campo Domínguez Víctor Rodrigo Raya', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_mo75r', 'isbn' => '979-13-8764-282-2', 'ean' => '9791387642822', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:15:35', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47151, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764283.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGD44 PLANIFICACIÓN DE PROYECTOS', 'autor' => 'Raquel Campo Arranz María del Campo Domínguez Víctor Rodrigo Raya', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_c2gap', 'isbn' => '979-13-8764-283-9', 'ean' => '9791387642839', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:17:38', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47152, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764284.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SSCE071PO EXPERTO EN E-LEARNING', 'autor' => 'David Roldán Martínez ● Félix Buendía García Elena Ejarque González ● Pablo García Molina Antonio Hervás Jorge ● José Luis Martín Núñez Olga C. Santos', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ofimc', 'isbn' => '979-13-8764-284-6', 'ean' => '9791387642846', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 196, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 196, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:19:39', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47153, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764285.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMT027PO NEGOCIOS ONLINE Y COMERCIO ELECTRÓNICO', 'autor' => 'Beatriz Coronado García', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_akqtg', 'isbn' => '979-13-8764-285-3', 'ean' => '9791387642853', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 260, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 260, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:21:30', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47154, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764286.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COML0015- ADGD117PO - COMT043PO - ADGD116PO - ADGD116PO GESTIÓN DE COMPRAS Y APROVISIONAMIENTOS', 'autor' => 'Alberto Montoya Palacio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_a7p3q', 'isbn' => '979-13-8764-286-0', 'ean' => '9791387642860', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 272, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 272, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:23:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47155, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764287.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMT040PO GESTIÓN DE VENTAS, MARKETING DIRECTO Y UTILIZACIÓN DE REDES SOCIALES EN LA GESTIÓN COMERCIAL', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_qk8co', 'isbn' => '979-13-8764-287-7', 'ean' => '9791387642877', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:25:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47156, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764288.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'SSCE110PO ORIENTACIÓN LABORAL Y EMPRENDIMIENTO', 'autor' => 'José María Carpintero Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_vzxob', 'isbn' => '979-13-8764-288-4', 'ean' => '9791387642884', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 306, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 306, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:27:54', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47157, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764289.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGD128PO GESTIÓN DE PROYECTOS', 'autor' => 'Raquel Campo Arranz María del Campo Domínguez Víctor Rodrigo Raya', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_en362', 'isbn' => '979-13-8764-289-1', 'ean' => '9791387642891', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 214, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 214, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:29:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47158, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764290.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM040PO GESTIÓN DEL MARKETING 2.0', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_p64bu', 'isbn' => '979-13-8764-290-7', 'ean' => '9791387642907', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:31:49', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47159, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764291.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM032PO GESTIÓN DEL MARKETING Y LA FUERZA DE VENTAS EN LA DIRECCIÓN ESTRATÉGICA DE LA EMPRESA', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_6e5fr', 'isbn' => '979-13-8764-291-4', 'ean' => '9791387642914', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:35:36', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47160, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764292.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGN043PO FINANZAS PARA NO FINANCIEROS', 'autor' => 'Carles Carrasco Zújar Joan Pallerola Comamala', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_icnr2', 'isbn' => '979-13-8764-292-1', 'ean' => '9791387642921', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:38:43', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47161, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764293.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGN07 FINANZAS PARA DIRECTIVOS', 'autor' => 'Carles Carrasco Zújar Joan Pallerola Comamala', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_nmjpb', 'isbn' => '979-13-8764-293-8', 'ean' => '9791387642938', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 222, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 222, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:41:00', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47162, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764294.gif', 'ancho' => 200.00, 'alto' => 245.00, 'peso' => null, 'titulo' => 'ADGN025PO CONTABILIDAD: CUENTA PÉRDIDAS Y GANANCIAS, ANÁLISIS DE INVERSIONES Y FINANCIACIÓN', 'autor' => 'Manuel Gutiérrez Viguera Eduardo Couso Ruano', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_jwuz9', 'isbn' => '979-13-8764-294-5', 'ean' => '9791387642945', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 206, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 206, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:43:15', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47163, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764295.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM053PO ESTRATEGIAS DE PLANIFICACIÓN Y MARKETING CORPORATIVO', 'autor' => 'Lina María Echeverri Cañas', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_1c9lu', 'isbn' => '979-13-8764-295-2', 'ean' => '9791387642952', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 210, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 210, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:45:42', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47164, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764296.gif', 'ancho' => 150.00, 'alto' => 210.00, 'peso' => null, 'titulo' => 'ADGN077PO MATEMÁTICAS FINANCIERAS', 'autor' => 'Joan Pallerola Comamala', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pbdsu', 'isbn' => '979-13-8764-296-9', 'ean' => '9791387642969', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 208, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 208, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:49:53', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47165, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764297.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM27 DIGITAL MARKETING & AUTOMATION MARKETING', 'autor' => 'Rosa Moreno Company', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_ic8e0', 'isbn' => '979-13-8764-297-6', 'ean' => '9791387642976', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 370, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 370, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:51:45', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47166, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764298.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'COMM41 MARKETING EN BUSCADORES: SEO, SEM Y ANALÍTICA WEB', 'autor' => 'Pablo E. Fernández Casado', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_z3hp0', 'isbn' => '979-13-8764-298-3', 'ean' => '9791387642983', 'editorial' => 'ra-ma', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 240, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 240, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-07 09:54:44', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47167, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764299.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ADGN068PO IMPUESTO SOBRE SOCIEDADES (IS'],
- ['id' => 47193, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138764266.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'Office + Copilot Optimiza Word, Excel, Powerpoint y Team', 'autor' => 'Chema Gómez', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_m5yvk', 'isbn' => '979-13-8764-266-2', 'ean' => '9791387642662', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 268, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 268, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-12 11:52:51', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47213, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138776402.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'ChatGPT y OpenAI Desarrollo y uso de herramientas de inteligencia artificial generativa', 'autor' => 'Arturo Sánchez Palacio', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_tq5i8', 'isbn' => '979-13-8776-402-9', 'ean' => '9791387764029', 'editorial' => 'RA-MA', 'resumen' => '', 'resumen_breve' => '', 'sello' => null, 'paginas' => 266, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 266, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-19 10:46:51', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47236, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138776400.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF1017_2 INTERVENCIÓN EN LA ATENCIÓN HIGIÉNICO-ALIMENTARIA EN INSTITUCIONES', 'autor' => 'BEATRIZ CORONADO GARCÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_pbg9h', 'isbn' => '979-13-8776-400-5', 'ean' => '9791387764005', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 220, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 220, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-03-25 10:21:31', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47258, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138776408.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'DeepSeek. Explorando los límites de la Inteligencia Artificial', 'autor' => 'Elsa Rubio Duce', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_v8eay', 'isbn' => '979-13-87764-08-1', 'ean' => '9791387764081', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-04-01 11:01:47', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47277, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9791387/979138776407.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'MF1018_2 INTERVENCIÓN EN LA ATENCIÓN SOCIOSANITARIA EN INSTITUCIONES', 'autor' => 'BEATRIZ CORONADO GARCÍA', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_r05lz', 'isbn' => '979-13-8776-407-4', 'ean' => '9791387764074', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 230, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 230, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-04-08 08:26:58', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ['id' => 47280, 'cliente_id' => 251, 'proveedor_id' => null, 'user_created_id' => 1, 'user_update_id' => 1, 'cubierta_archivo' => null, 'cubierta_url' => 'https://static.cegal.es/imagenes/marcadas/9788410/978841036069.gif', 'ancho' => 170.00, 'alto' => 240.00, 'peso' => null, 'titulo' => 'IFCD0011 DESARROLLO Y VISUALIZACIÓN DE DATOS CON PYTHON', 'autor' => 'José Manuel Ortega Candel', 'autor_entidad' => null, 'traductor' => null, 'ilustrador' => null, 'idioma' => 'spa', 'num_edic' => 1, 'fecha_disponibilidad' => null, 'fecha_public' => null, 'num_fotos' => 0, 'num_ilustr' => 0, 'num_ilustr_color' => 0, 'num_ilustr_bn' => 0, 'coleccion' => '', 'isk' => 'isk_libro_20250420_8xvqg', 'isbn' => '978-84-1036-069-3', 'ean' => '9788410360693', 'editorial' => 'RA-MA', 'resumen' => null, 'resumen_breve' => null, 'sello' => null, 'paginas' => 326, 'tipo_impresion' => 'negro', 'comentarios' => '', 'negro_paginas' => 326, 'negro_papel_id' => 3, 'negro_gramaje' => 80, 'negro_pod_papel_id' => 3, 'negro_pod_gramaje' => 80, 'color_paginas' => 0, 'color_papel_id' => null, 'color_gramaje' => 0, 'color_pod_papel_id' => null, 'color_pod_gramaje' => 0, 'cubierta_paginas' => 2, 'cubierta_papel_id' => 5, 'cubierta_gramaje' => 240, 'cubierta_acabado_id' => 1, 'cubierta_ancho_solapas' => 0.00, 'cubierta_pod_papel_id' => 5, 'cubierta_pod_gramaje' => 240, 'sobrecubierta_paginas' => null, 'sobrecubierta_papel_id' => null, 'sobrecubierta_gramaje' => null, 'sobrecubierta_acabado_id' => null, 'sobrecubierta_ancho_solapas' => 0.00, 'sobrecubierta_pod_papel_id' => null, 'sobrecubierta_pod_gramaje' => null, 'encuadernacion_id' => 2, 'ubicacion' => null, 'created_at' => '2025-04-10 06:41:17', 'updated_at' => '2025-04-20 15:55:23', 'deleted_at' => null],
- ];
-
- $this->db->table('catalogo_libros')->insertBatch($data);
- }
-}
diff --git a/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php b/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
index 780d544d..c8a62e15 100644
--- a/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
+++ b/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
@@ -36,7 +36,7 @@ class CatalogoLibroEntity extends Entity
'num_ilustr_color' => 0,
'num_ilustr_bn' => 0,
'coleccion' => '',
- 'isk' => null,
+ 'iskn' => null,
'isbn' => null,
'ean' => null,
'editorial' => '',
diff --git a/ci4/app/Entities/Catalogo/IdentificadorIsk.php b/ci4/app/Entities/Catalogo/IdentificadorIskn.php
similarity index 76%
rename from ci4/app/Entities/Catalogo/IdentificadorIsk.php
rename to ci4/app/Entities/Catalogo/IdentificadorIskn.php
index 525c3922..d55131e9 100644
--- a/ci4/app/Entities/Catalogo/IdentificadorIsk.php
+++ b/ci4/app/Entities/Catalogo/IdentificadorIskn.php
@@ -4,7 +4,7 @@ namespace App\Entities\Catalogo;
use CodeIgniter\Entity\Entity;
-class IdentificadorIsk extends Entity
+class IdentificadorIskn extends Entity
{
protected $dates = ['created_at', 'updated_at'];
}
\ No newline at end of file
diff --git a/ci4/app/Models/Catalogo/CatalogoLibroModel.php b/ci4/app/Models/Catalogo/CatalogoLibroModel.php
index 5bc856ba..8a9fa27a 100644
--- a/ci4/app/Models/Catalogo/CatalogoLibroModel.php
+++ b/ci4/app/Models/Catalogo/CatalogoLibroModel.php
@@ -93,12 +93,12 @@ class CatalogoLibroModel extends Model
protected $validationMessages = [];
protected $skipValidation = false;
- protected $beforeInsert = ['asignarIsk', 'asignarEan', 'asignarCubiertaUrl'];
+ protected $beforeInsert = ['asignarIskn', 'asignarEan', 'asignarCubiertaUrl'];
protected $beforeUpdate = ['asignarEan', 'asignarCubiertaUrl'];
- protected function asignarIsk(array $data): array
+ protected function asignarIskn(array $data): array
{
- $data['data']['isk'] = model('App\Models\Catalogo\IdentificadorIskModel')->newIsk();
+ $data['data']['iskn'] = model('App\Models\Catalogo\IdentificadorIsknModel')->newIskn();
return $data;
}
diff --git a/ci4/app/Models/Catalogo/IdentificadorIskModel.php b/ci4/app/Models/Catalogo/IdentificadorIskModel.php
deleted file mode 100644
index dbcdf289..00000000
--- a/ci4/app/Models/Catalogo/IdentificadorIskModel.php
+++ /dev/null
@@ -1,79 +0,0 @@
-generarIskUnico($contexto);
- $this->insert(['isk' => $isk]);
-
- return $isk;
- }
-
- /**
- * Genera un ISK único validado contra la base de datos.
- */
- private function generarIskUnico(string $contexto): string
- {
- do {
- $isk = $this->generarIsk($contexto);
- } while ($this->where('isk', $isk)->countAllResults() > 0);
-
- return $isk;
- }
-
- /**
- * Formato legible de ISK, ejemplo: isk_libro_20250419_ab12c
- */
- private function generarIsk(string $contexto): string
- {
- $fecha = date('Ymd');
- $random = substr(str_shuffle('abcdefghijklmnopqrstuvwxyz0123456789'), 0, 5);
- return "isk_{$contexto}_{$fecha}_{$random}";
- }
-
- /**
- * Hook para generar el ISK automáticamente al insertar.
- */
- protected function agregarIsk(array $data): array
- {
- if (!isset($data['data']['isk']) || empty($data['data']['isk'])) {
- $data['data']['isk'] = $this->generarIskUnico('registro');
- }
-
- return $data;
- }
-
- // Bloqueo total de eliminaciones
- public function delete($id = null, bool $purge = false)
- {
- throw new RuntimeException('La eliminación de registros está deshabilitada.');
- }
-
- public function deleteWhere($where)
- {
- throw new RuntimeException('La eliminación de registros está deshabilitada.');
- }
-
- public function deleteBatch($where)
- {
- throw new RuntimeException('La eliminación de registros está deshabilitada.');
- }
-}
diff --git a/ci4/app/Models/Catalogo/IdentificadorIsknModel.php b/ci4/app/Models/Catalogo/IdentificadorIsknModel.php
new file mode 100644
index 00000000..cec92df6
--- /dev/null
+++ b/ci4/app/Models/Catalogo/IdentificadorIsknModel.php
@@ -0,0 +1,79 @@
+generarIsknUnico($contexto);
+ $this->insert(['iskn' => $iskn]);
+
+ return $iskn;
+ }
+
+ /**
+ * Genera un ISKN único validado contra la base de datos.
+ */
+ private function generarIsknUnico(string $contexto): string
+ {
+ do {
+ $iskn = $this->generarIskn($contexto);
+ } while ($this->where('iskn', $iskn)->countAllResults() > 0);
+
+ return $iskn;
+ }
+
+ /**
+ * Formato legible de ISKN, ejemplo: iskn_libro_20250419_ab12c
+ */
+ private function generarIskn(string $contexto): string
+ {
+ $fecha = date('Ymd');
+ $random = substr(str_shuffle('abcdefghijklmnopqrstuvwxyz0123456789'), 0, 5);
+ return "iskn_{$contexto}_{$fecha}_{$random}";
+ }
+
+ /**
+ * Hook para generar el ISKN automáticamente al insertar.
+ */
+ protected function agregarIskn(array $data): array
+ {
+ if (!isset($data['data']['iskn']) || empty($data['data']['iskn'])) {
+ $data['data']['iskn'] = $this->generarIsknUnico('registro');
+ }
+
+ return $data;
+ }
+
+ // Bloqueo total de eliminaciones
+ public function delete($id = null, bool $purge = false)
+ {
+ throw new RuntimeException('La eliminación de registros está deshabilitada.');
+ }
+
+ public function deleteWhere($where)
+ {
+ throw new RuntimeException('La eliminación de registros está deshabilitada.');
+ }
+
+ public function deleteBatch($where)
+ {
+ throw new RuntimeException('La eliminación de registros está deshabilitada.');
+ }
+}
diff --git a/ci4/app/Views/themes/vuexy/form/catalogo/_datosGeneralesFormItems.php b/ci4/app/Views/themes/vuexy/form/catalogo/_datosGeneralesFormItems.php
index 86c09735..77cbefbf 100644
--- a/ci4/app/Views/themes/vuexy/form/catalogo/_datosGeneralesFormItems.php
+++ b/ci4/app/Views/themes/vuexy/form/catalogo/_datosGeneralesFormItems.php
@@ -70,9 +70,9 @@