diff --git a/.vscode/sftp.json b/.vscode/sftp.json
index 89ef7722..e3778a2f 100755
--- a/.vscode/sftp.json
+++ b/.vscode/sftp.json
@@ -24,10 +24,15 @@
"username": "sk-dev",
"password": "KXvYsubai9v*g61~"
},
- "prod":{
+ "sk-prod":{
"host": "erp.safekat.es",
"username": "erp-demo",
"password": "lNkEyukTc1~*3yy9"
+ },
+ "sk-dev":{
+ "host": "erp-dev.safekat.es",
+ "username": "erp-dev",
+ "password": "snqyxNZIhg8m3!9~"
}
}
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/Config/Auth.php b/ci4/app/Config/Auth.php
index f111d63a..fb343677 100755
--- a/ci4/app/Config/Auth.php
+++ b/ci4/app/Config/Auth.php
@@ -154,7 +154,7 @@ class Auth extends ShieldAuth
* --------------------------------------------------------------------
* Determines whether users can register for the site.
*/
- public bool $allowRegistration = true;
+ public bool $allowRegistration = false;
/**
* --------------------------------------------------------------------
diff --git a/ci4/app/Config/Email.php b/ci4/app/Config/Email.php
index 09d27f0b..ba66787b 100755
--- a/ci4/app/Config/Email.php
+++ b/ci4/app/Config/Email.php
@@ -6,14 +6,14 @@ use CodeIgniter\Config\BaseConfig;
class Email extends BaseConfig
{
- public string $fromEmail = 'soporte_erp@safekat.es';
- public string $fromName = 'Safekat ERP';
+ public string $fromEmail = 'no-reply@safekat.es';
+ public string $fromName = 'ERP Safekat 2.0';
public string $recipients = '';
/**
* The "user agent"
*/
- public string $userAgent = 'Safekat SL';
+ public string $userAgent = 'ERP Safekat 2.0';
/**
* The mail sending protocol: mail, sendmail, smtp
@@ -28,22 +28,22 @@ class Email extends BaseConfig
/**
* SMTP Server Hostname
*/
- public string $SMTPHost = 'localhost';
+ public string $SMTPHost = 'smtp.ionos.es';
/**
* SMTP Username
*/
- public string $SMTPUser = 'soporte_erp@safekat.es';
+ public string $SMTPUser = 'no-reply@safekat.es';
/**
* SMTP Password
*/
- public string $SMTPPass = '';
+ public string $SMTPPass = '5LKHH^CR#ecR#l55x7ke';
/**
* SMTP Port
*/
- public int $SMTPPort = 465;
+ public int $SMTPPort = 587;
/**
* SMTP Timeout (in seconds)
diff --git a/ci4/app/Config/OrdenTrabajo.php b/ci4/app/Config/OrdenTrabajo.php
index 4f8be2d4..787f5c9d 100755
--- a/ci4/app/Config/OrdenTrabajo.php
+++ b/ci4/app/Config/OrdenTrabajo.php
@@ -12,14 +12,14 @@ class OrdenTrabajo extends BaseConfig
"interior_bn_at" => "interior_bn_user_id",
"interior_color_at" => "interior_color_user_id",
"cubierta_at" => "cubierta_user_id",
- "sobrecubierta_at" => "sobrecubierta_user_id", //TODO
- "guarda_at" => "guarda_user_id", //TODO
+ "sobrecubierta_at" => "sobrecubierta_user_id",
+ "guarda_at" => "guarda_user_id",
//ACABADO
"plastificado_at" => "plastificado_user_id",
- "plakene_at" => "plakene_user_id", //TODO
+ "plakene_at" => "plakene_user_id",
"retractilado_at" => "retractilado_user_id",
- "estampado_at" => "estampado_user_id", //TODO
- "uvi_at" => "uvi_user_id", //TODO
+ "estampado_at" => "estampado_user_id",
+ "uvi_at" => "uvi_user_id",
"encuadernacion_at" => "encuadernacion_user_id",
"corte_at" => "corte_user_id",
"preparacion_interiores_at" => "preparacion_interior_user_id",
@@ -121,6 +121,14 @@ class OrdenTrabajo extends BaseConfig
"default" => ["bg" => "white", "color" => "black"],
];
+ public array $OT_TAREA_STATUS_COLOR = [
+ "P" => '#FFB22C',
+ "F" => '#67AE6E',
+ "S" => '#EB5B00',
+ "I" => '#3A59D1',
+ "E" => '#FF0B55',
+ "D" => '#FFA725',
+ ];
public function __construct()
diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php
index a0d6df47..5a096f89 100755
--- a/ci4/app/Config/Routes.php
+++ b/ci4/app/Config/Routes.php
@@ -34,8 +34,8 @@ foreach (glob(APPPATH . 'Config/Routes/*Routes.php') as $routeFile) {
$routes->group('users', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
$routes->get('', 'Users::index', ['as' => 'userList']);
- $routes->get('maquinista/change/user','Users::index_maquinista_change_user',['as' => 'maquinistaUserChangeList']);
- $routes->get('maquinista/change/session/(:num)','Users::change_user_session/$1',['as' => 'maquinistaChangeUserSession']);
+ $routes->get('maquinista/change/user', 'Users::index_maquinista_change_user', ['as' => 'maquinistaUserChangeList']);
+ $routes->get('maquinista/change/session/(:num)', 'Users::change_user_session/$1', ['as' => 'maquinistaChangeUserSession']);
$routes->get('list', 'Users::index', ['as' => 'userList2']);
$routes->get('add', 'Users::add', ['as' => 'newUser']);
$routes->post('add', 'Users::add', ['as' => 'createUser']);
@@ -546,6 +546,7 @@ $routes->group('facturas', ['namespace' => 'App\Controllers\Facturacion'], funct
$routes->post('updateTotales/(:any)', 'Facturas::updateTotales/$1', ['as' => 'updateFacturaTotales']);
$routes->post('updateCabecera/(:any)', 'Facturas::updateCabecera/$1', ['as' => 'updateCabecera']);
$routes->post('datatablePagos/(:any)', 'FacturasPagos::datatable/$1', ['as' => 'dataTableOfPagosFacturas']);
+ $routes->post('conformarFactura', 'FacturasPagos::addPagoRectificativa');
$routes->post('editorPagos', 'FacturasPagos::datatable_editor', ['as' => 'editorOfPagosFacturas']);
$routes->post('deleteFacturaLineaPago', 'Facturas::deleteLineaPago', ['as' => 'deleteLineaPago']);
$routes->post('datatablePedidos', 'Facturas::datatablePedidos', ['as' => 'dataTableOfFacturasPedido']);
@@ -568,6 +569,7 @@ $routes->group(
function ($routes) {
$routes->get('index/(:num)', 'PrintAlbaranes::index/$1', ['as' => 'viewAlbaranPDF']);
$routes->get('generar/(:num)', 'PrintAlbaranes::generar/$1', ['as' => 'albaranToPdf']);
+ $routes->get('generar-anonimo/(:num)', 'PrintAlbaranes::generarAnonimo/$1', ['as' => 'albaranAnonimoToPdf']);
}
);
@@ -639,6 +641,8 @@ $routes->group('messages', ['namespace' => 'App\Controllers\Chat'], function ($r
$routes->get('datatable/pedido', 'ChatController::datatable_pedido_messages', ['as' => 'getDatatablePedidoMessages']);
$routes->get('datatable/factura', 'ChatController::datatable_factura_messages', ['as' => 'getDatatableFacturaMessages']);
$routes->get('datatable/ots', 'ChatController::datatable_ot_messages', ['as' => 'getDatatableOtMessages']);
+ $routes->get('datatable/direct', 'ChatController::datatable_direct_messages', ['as' => 'getDatatableDirectMessages']);
+
$routes->post('direct', 'ChatController::store_new_direct_message', ['as' => 'storeNewDirectMessage']);
$routes->post('direct/client', 'ChatController::store_new_direct_message_client', ['as' => 'storeNewDirectMessageClient']);
@@ -736,19 +740,29 @@ $routes->group('soporte', ['namespace' => 'App\Controllers\Soporte'], function (
$routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
$routes->group('ordentrabajo', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
+ /** VIEWS */
$routes->get('', 'Ordentrabajo::index', ['as' => 'viewOrdenTrabajoIndex']);
$routes->get('edit/(:num)', 'Ordentrabajo::edit/$1', ['as' => 'viewOrdenTrabajoEdit']);
- $routes->delete('reset/tareas/(:num)', 'Ordentrabajo::reset_tareas/$1');
- $routes->delete('tareas/(:num)', 'Ordentrabajo::delete_tarea/$1');
+
+ /** GET */
$routes->get('summary/(:num)', 'Ordentrabajo::get_orden_trabajo_summary/$1', ['as' => 'getOrdenTrabajoSumary']);
+ $routes->get("tarea/progress/(:num)", "Ordentrabajo::get_orden_trabajo_progress_date/$1");
+ $routes->get('tarea/(:num)', 'Ordentrabajo::find_tarea/$1');
+ $routes->get('tarea/dates/(:num)', 'Ordentrabajo::get_orden_trabajo_tareas_dates/$1');
+ $routes->get('tareas/maquina/(:num)/(:num)','Ordentrabajo::get_tareas_ot_maquina/$1/$2');
+ /** DATATABLES */
$routes->get('datatable', 'Ordentrabajo::datatable');
$routes->get('datatable_pendientes', 'Ordentrabajo::datatable_pendientes');
$routes->get('datatable_ferro_pendiente', 'Ordentrabajo::datatable_ferro_pendiente');
$routes->get('datatable_ferro_ok', 'Ordentrabajo::datatable_ferro_ok');
+ $routes->get('datatable_news', 'Ordentrabajo::datatable_news');
+ $routes->get('datatable_prod', 'Ordentrabajo::datatable_prod');
+ $routes->get('datatable_waiting', 'Ordentrabajo::datatable_waiting');
+ $routes->get('datatable_revision_com', 'Ordentrabajo::datatable_revision_com');
$routes->get('tareas/datatable/(:num)', 'Ordentrabajo::tareas_datatable/$1', ['as' => 'datatableTareasOrdenTrabajo']);
- $routes->get("tarea/progress/(:num)", "Ordentrabajo::get_orden_trabajo_progress_date/$1");
- $routes->get('tarea/(:num)', 'Ordentrabajo::find_tarea/$1');
- $routes->get('tarea/dates/(:num)','Ordentrabajo::get_orden_trabajo_tareas_dates/$1');
+ $routes->get('maquinas/ots/datatable/(:num)','Ordentrabajo::datatable_maquina_ordenes_trabajo/$1');
+ $routes->get('maquinas/ots/(:num)','Ordentrabajo::get_maquina_ots/$1');
+
/**======================
* UPDATES
*========================**/
@@ -757,18 +771,28 @@ $routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], func
$routes->post("reset/date", 'Ordentrabajo::reset_orden_trabajo_date');
$routes->post("update/pedido/date", 'Ordentrabajo::update_orden_trabajo_pedido_date');
$routes->post("reset/pedido/date", 'Ordentrabajo::reset_orden_trabajo_pedido_date');
- $routes->post("update/pod/pedido/date/(:num)",'Ordentrabajo::update_pod_pedido_dates/$1');
+ $routes->post("update/pod/pedido/date/(:num)", 'Ordentrabajo::update_pod_pedido_dates/$1');
$routes->post("update/pedido", 'Ordentrabajo::update_orden_trabajo_pedido');
$routes->post("update/user", 'Ordentrabajo::update_orden_trabajo_user');
$routes->post("update", 'Ordentrabajo::update_orden_trabajo');
$routes->post("upload/portada", 'Ordentrabajo::upload_orden_trabajo_portada');
- $routes->delete("portada/(:num)", 'Ordentrabajo::delete_orden_trabajo_portada/$1');
$routes->get("color/(:num)", 'Ordentrabajo::get_orden_trabajo_color_status/$1');
$routes->post("update/tarea/progress", "Ordentrabajo::store_orden_trabajo_progress_date");
$routes->post("update/tarea/pliegos", "Ordentrabajo::update_orden_trabajo_pliegos");
$routes->post("update/tarea/proveedor", "Ordentrabajo::update_presupuesto_tarea_proveedor");
- $routes->delete("tarea/progress/(:num)", "Ordentrabajo::delete_orden_trabajo_progress_date/$1");
+ $routes->post("fa/tareas/update", 'Ordentrabajo::update_orden_trabajo_fa_tareas');
+ $routes->post("fa/tareas/reset",'Ordentrabajo::delete_orden_trabajo_fa_tareas');
+ $routes->post('maquinas/ots','Ordentrabajo::store_maquina_ordenes_trabajo');
+ $routes->post('maquinas/ots/estado','Ordentrabajo::update_maquina_ordenes_trabajo_estado');
+
+ /**DELETES */
+ $routes->delete("portada/(:num)", 'Ordentrabajo::delete_orden_trabajo_portada/$1');
+ $routes->delete("tarea/progress/(:num)", "Ordentrabajo::delete_orden_trabajo_progress_date/$1");
+ $routes->delete('reset/tareas/(:num)', 'Ordentrabajo::reset_tareas/$1');
+ $routes->delete('tareas/(:num)', 'Ordentrabajo::delete_tarea/$1');
+ $routes->delete('maquinas/ots/(:num)', 'Ordentrabajo::delete_maquina_orden_trabajo_tarea/$1');
+ $routes->delete('maquinas/ots/all/(:num)', 'Ordentrabajo::delete_maquina_orden_trabajo_all/$1');
/**======================
* FILES
*========================**/
@@ -779,9 +803,11 @@ $routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], func
* PDF
*========================**/
$routes->get('pdf/(:num)', 'Ordentrabajo::get_pdf/$1');
+ $routes->get('pdf/content/(:num)', 'Ordentrabajo::get_ot_pdf_content/$1');
$routes->get('pdf/ferro/(:num)', 'Ordentrabajo::get_ferro_pdf/$1');
$routes->get('pdf/prototipo/(:num)', 'Ordentrabajo::get_prototipo_pdf/$1');
$routes->get('portada/(:num)', 'Ordentrabajo::get_portada_img/$1');
+ /** PLANNING */
$routes->group('planning', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
$routes->get('select/maquina/rotativa', 'Ordentrabajo::select_maquina_planning_rot');
$routes->get('select/papel/rotativa', 'Ordentrabajo::select_papel_planning_rot');
@@ -791,18 +817,31 @@ $routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], func
$routes->get('rotativa', 'Ordentrabajo::index_planning_rotativa');
$routes->get('papel/datatable', 'Ordentrabajo::papel_gramaje_datatable');
$routes->get('papel/plana/datatable', 'Ordentrabajo::papel_pliego_datatable');
+ $routes->get('maquina/plana/datatable', 'Ordentrabajo::maquina_plana_datatable');
$routes->get('rotativa/datatable', 'Ordentrabajo::planning_rotativa_datatable');
$routes->get('plana/datatable', 'Ordentrabajo::planning_plana_datatable');
$routes->post('tarea/toggle/corte/(:num)', 'Ordentrabajo::tarea_toggle_corte/$1');
});
$routes->group('maquinista', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
+ /**
+ * VIEWS
+ */
$routes->get('maquinas/view', 'Ordentrabajo::maquinista_maquinas_view', ['as' => 'viewProduccionMaquinistaMaquinas']);
$routes->get('maquinas/view/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_list/$1', ['as' => 'viewProduccionMaquinaTareasList']);
- $routes->get('maquinas/tareas/datatable/(:alpha)/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_datatable/$1/$2', ['as' => 'viewMaquinistaMaquinaTareaDatatable']);
-
+ $routes->get('maquinas/view/auto/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_fichaje_automatico/$1', ['as' => 'viewMaquinistaFichajeAutomatico']);
+ $routes->get('maquinas/view/scan/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_scan/$1', ['as' => 'viewMaquinistaTareaScan']);
$routes->get('maquinas/view/tarea/(:num)', 'Ordentrabajo::maquinista_maquina_tarea_view/$1', ['as' => 'viewProduccionMaquinistaTareaView']);
+ $routes->get('maquinas/view/maquina/ot/tareas/(:num)', 'Ordentrabajo::maquinista_maquina_ot_tareas_view/$1', ['as' => 'viewProduccionMaquinistaOtTareasView']);
+
$routes->get('colas/view', 'Ordentrabajo::maquinista_colas_view', ['as' => 'viewProduccionMaquinistaColas']);
+
+ /** DATATABLE */
+ $routes->get('maquinas/tareas/datatable/(:alpha)/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_datatable/$1/$2', ['as' => 'viewMaquinistaMaquinaTareaDatatable']);
+ $routes->get('maquinas/tareas/aplazadas/datatable/(:num)', 'Ordentrabajo::maquinista_maquina_tareas_aplazada_datatable/$1', ['as' => 'viewMaquinistaMaquinaTareaAplazadaDatatable']);
+
+ /** POST */
+ $routes->post('maquinas/tareas/printLabels', 'Ordentrabajo::printPackagingLabels');
});
});
});
@@ -812,6 +851,7 @@ $routes->group('logistica', ['namespace' => 'App\Controllers\Logistica'], functi
$routes->get('panel', 'LogisticaController::panel', ['as' => 'LogisticaPanel']);
$routes->get('envios', 'LogisticaController::gestionEnvios', ['as' => 'gestionEnvios']);
$routes->get('enviosFerros', 'LogisticaController::gestionEnviosFerros', ['as' => 'gestionEnviosFerros']);
+ $routes->get('etiquetasLogistica', 'LogisticaController::etiquetasLogistica', ['as' => 'etiquetasLogistica']);
$routes->get('datatableEnvios', 'LogisticaController::datatable_envios');
$routes->get('datatableLineasEnvios/(:num)', 'LogisticaController::datatable_enviosEdit/$1');
$routes->get('envio/(:num)', 'LogisticaController::editEnvio/$1');
@@ -830,9 +870,29 @@ $routes->group('logistica', ['namespace' => 'App\Controllers\Logistica'], functi
$routes->get('selectForNewEnvio', 'LogisticaController::findForNewEnvio');
$routes->get('selectDireccionForEnvio', 'LogisticaController::selectDireccionForEnvio');
$routes->post('imprimirEtiquetas', 'LogisticaController::imprimirEtiquetas');
+ $routes->post('ficharEmbalaje', 'LogisticaController::ficharEmbalaje');
+ $routes->get('datatableProximosEnvios/(:num)', 'LogisticaController::datatable_proximosEnvios/$1');
$routes->get('listAlbaranes', 'LogisticaController::listAlbaranes', ['as' => 'albaranesList']);
-
+});
+
+$routes->group('etiquetasTitulos', ['namespace' => 'App\Controllers\Logistica'], function ($routes) {
+
+ $routes->get('otList', 'EtiquetasTitulosController::findOTs');
+ $routes->get('addList', 'EtiquetasTitulosController::findAddresses');
+ $routes->post('newEtiquetaTitulos', 'EtiquetasTitulosController::addEtiqueta');
+ $routes->get('datatable', 'EtiquetasTitulosController::datatable');
+ $routes->post('delete', 'EtiquetasTitulosController::deleteEtiqueta');
+ $routes->get('edit/(:num)', 'EtiquetasTitulosController::edit/$1');
+ $routes->get('datatableLineas/(:num)', 'EtiquetasTitulosController::datatableLineasEtiquetas/$1');
+ $routes->get('findOts', 'EtiquetasTitulosController::findOtsWithAddress');
+ $routes->post('addLineas', 'EtiquetasTitulosController::addLineasEtiqueta');
+ $routes->post('deleteLineas', 'EtiquetasTitulosController::deleteLineasEtiqueta');
+ $routes->post('updateLineas', 'EtiquetasTitulosController::updateLineasEtiqueta');
+ $routes->post('updateComentarios', 'EtiquetasTitulosController::updateComentarios');
+ $routes->post('updateOrdenCajas', 'EtiquetasTitulosController::updateOrdenCajas');
+ $routes->post('renumber', 'EtiquetasTitulosController::renumberCajas');
+ $routes->post('imprimirEtiquetas', 'EtiquetasTitulosController::imprimirEtiquetas');
});
/*
diff --git a/ci4/app/Config/Routes/CatalogoRoutes.php b/ci4/app/Config/Routes/CatalogoRoutes.php
index bbade431..143bd072 100644
--- a/ci4/app/Config/Routes/CatalogoRoutes.php
+++ b/ci4/app/Config/Routes/CatalogoRoutes.php
@@ -23,6 +23,7 @@ $routes->group('catalogo', ['namespace' => 'App\Controllers\Catalogo'], function
* AJAX
*========================**/
$routes->get('clientlist', 'CatalogoLibros::getClientList', ['as' => 'catalogoLibrosClientList']);
+ $routes->get('pedidosAntiguos', 'CatalogoLibros::datatablePedidosAntiguos', ['as' => 'catalogoLibrosPedidosAntiguosDT']);
});
diff --git a/ci4/app/Config/Routes/ImportadoresRoutes.php b/ci4/app/Config/Routes/ImportadoresRoutes.php
index 2706aa8c..f3e20ae5 100644
--- a/ci4/app/Config/Routes/ImportadoresRoutes.php
+++ b/ci4/app/Config/Routes/ImportadoresRoutes.php
@@ -32,6 +32,7 @@ $routes->group('importador', ['namespace' => 'App\Controllers\Importadores'], fu
/**======================
* AJAX
*========================**/
+ $routes->post('validar-fila', 'ImportadorBubok::validarFila');
$routes->post('importar-fila', 'ImportadorBubok::importarFila');
});
diff --git a/ci4/app/Config/Routes/PresupuestosRoutes.php b/ci4/app/Config/Routes/PresupuestosRoutes.php
index a4e9dd37..4097a69e 100755
--- a/ci4/app/Config/Routes/PresupuestosRoutes.php
+++ b/ci4/app/Config/Routes/PresupuestosRoutes.php
@@ -30,6 +30,11 @@ $routes->group('presupuestoadmin', ['namespace' => 'App\Controllers\Presupuestos
$routes->get('presupuestosCliente', 'Presupuestoadmin::tablaClienteForm');
$routes->get('getSumCliente/(:num)', 'Presupuestoadmin::obtenerTotalPresupuestosCliente/$1');
+
+ $routes->get('hasFiles', 'Presupuestoadmin::hasFiles');
+ $routes->post('reprint', 'Presupuestoadmin::reprintPresupuesto');
+
+ $routes->post('download_zip', 'Presupuestocliente::download_zip', ['as' => 'descargarAdminArchivos']);
});
//$routes->resource('presupuestoadmin', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Presupuestoadmin', 'except' => 'show,new,create,update']);
@@ -51,6 +56,7 @@ $routes->group('presupuestocliente', ['namespace' => 'App\Controllers\Presupuest
$routes->post('calcular', 'Presupuestocliente::calcular', ['as' => 'calcularPresupuesto']);
$routes->post('calcularsolapas', 'Presupuestocliente::calcularMaxSolapas', ['as' => 'calcularSolapas']);
$routes->post('checklomo', 'Presupuestocliente::check_lomo_interior');
+ $routes->post('download_zip', 'Presupuestocliente::download_zip', ['as' => 'descargarClienteArchivos']);
});
//$routes->resource('presupuestocliente', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Presupuestocliente', 'except' => 'show,new,create,update']);
diff --git a/ci4/app/Config/Routes/ScriptsRoutes.php b/ci4/app/Config/Routes/ScriptsRoutes.php
new file mode 100644
index 00000000..d3744033
--- /dev/null
+++ b/ci4/app/Config/Routes/ScriptsRoutes.php
@@ -0,0 +1,13 @@
+group('scripts', ['namespace' => 'App\Controllers\Scripts'], function ($routes) {
+
+ //$routes->get('completar-identidades', 'UsersIntegrity::completarIdentidades');
+
+
+});
\ No newline at end of file
diff --git a/ci4/app/Config/Validation.php b/ci4/app/Config/Validation.php
index f8c5881c..13f8d14f 100755
--- a/ci4/app/Config/Validation.php
+++ b/ci4/app/Config/Validation.php
@@ -172,6 +172,44 @@ class Validation extends BaseConfig
"label" => "Orden trabajo"
],
+ ];
+ public array $orden_trabajo_fichaje_auto = [
+ "orden_trabajo_id" => [
+ "rules" => "required|integer",
+ "label" => "Orden trabajo"
+ ],
+ "maquina_id" => [
+ "rules" => "required|integer",
+ "label" => "Máquina"
+ ],
+ "estado" => [
+ "rules" => "required|in_list[P,I,S,D,F,E]",
+ "label" => "estado"
+ ],
+ "tareas" => [
+ "rules" => "required",
+ "label" => "Tareas"
+ ],
+ "click_init" => [
+ "rules" => "required|integer",
+ "label" => "Click init"
+ ],
+ "click_end" => [
+ "rules" => "required|integer",
+ "label" => "Click end"
+ ],
+
+ ];
+ public array $maquina_ordenes_trabajo = [
+ "ordenes_trabajo" => [
+ "rules" => "required",
+ "label" => "Orden trabajo"
+ ],
+ "maquina_id" => [
+ "rules" => "required|integer",
+ "label" => "Máquina"
+ ],
+
];
public array $chat_department =
[
diff --git a/ci4/app/Controllers/Albaranes/Albaran.php b/ci4/app/Controllers/Albaranes/Albaran.php
index 8682fb99..91915ead 100755
--- a/ci4/app/Controllers/Albaranes/Albaran.php
+++ b/ci4/app/Controllers/Albaranes/Albaran.php
@@ -411,6 +411,14 @@ class Albaran extends \App\Controllers\BaseResourceController
return ' ';
})
+ ->edit('cajas', function ($q) {
+ return ' ';
+ })
+ ->edit('unidades_cajas', function ($q) {
+ return ' ';
+ })
->edit('total', function ($q) {
return ' ';
@@ -468,10 +476,29 @@ class Albaran extends \App\Controllers\BaseResourceController
$model_linea->update($id, $linea->toArray());
+ if($fieldName == 'cajas'){
+ $cajas = $model_linea->where('albaran_id', $linea->albaran_id)
+ ->where('cajas > 0')
+ ->select('SUM(cajas) as total_cajas')
+ ->get();
+
+ $albaranModel = model('App\Models\Albaranes\AlbaranModel');
+ $albaran = $albaranModel->find($linea->albaran_id);
+ if($albaran != false) {
+ $albaran->cajas = $cajas->getRow()->total_cajas;
+ $albaran->user_updated_id = auth()->user()->id;
+ $albaran->updated_at = date('Y-m-d H:i:s');
+ $albaranModel->update($linea->albaran_id, $albaran->toArray());
+ }
+ }
+
$data = [
'success' => true,
'message' => lang('Basic.global.updateSuccess', [lang('Basic.global.record')]) . '.',
];
+ if($fieldName == 'cajas') {
+ $data['cajas'] = $cajas->getRow()->total_cajas;
+ };
return $this->respond($data);
} else {
diff --git a/ci4/app/Controllers/BaseController.php b/ci4/app/Controllers/BaseController.php
index 3e1c82a1..11e04e12 100755
--- a/ci4/app/Controllers/BaseController.php
+++ b/ci4/app/Controllers/BaseController.php
@@ -35,7 +35,7 @@ class BaseController extends Controller
*
* @var array
*/
- protected $helpers = ['general', 'go_common', 'rbac'];
+ protected $helpers = ['general', 'go_common', 'rbac', 'assets'];
/**
* Constructor.
diff --git a/ci4/app/Controllers/BaseResourceController.php b/ci4/app/Controllers/BaseResourceController.php
index ce3d7952..2da29e8b 100755
--- a/ci4/app/Controllers/BaseResourceController.php
+++ b/ci4/app/Controllers/BaseResourceController.php
@@ -85,7 +85,7 @@ abstract class BaseResourceController extends \CodeIgniter\RESTful\ResourceContr
*
* @var array
*/
- protected $helpers = ['session', 'go_common', 'form', 'text', 'general', 'rbac']; //JJO
+ protected $helpers = ['session', 'go_common', 'form', 'text', 'general', 'rbac', 'assets']; //JJO
/**
* Initializer method.
diff --git a/ci4/app/Controllers/Catalogo/CatalogoLibros.php b/ci4/app/Controllers/Catalogo/CatalogoLibros.php
index 4e5bbb2a..1d451c6d 100644
--- a/ci4/app/Controllers/Catalogo/CatalogoLibros.php
+++ b/ci4/app/Controllers/Catalogo/CatalogoLibros.php
@@ -5,6 +5,7 @@ use App\Controllers\BaseResourceController;
use App\Entities\Catalogo\CatalogoLibroEntity;
use App\Models\Catalogo\CatalogoLibroModel;
use App\Models\Clientes\ClienteModel;
+use App\Models\Presupuestos\ImportadorModel;
use Hermawan\DataTables\DataTable;
class CatalogoLibros extends BaseResourceController
@@ -48,7 +49,6 @@ class CatalogoLibros extends BaseResourceController
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Catalogo.catalogo')]),
'catalogoLibrosEntity' => new CatalogoLibroEntity(),
'usingServerSideDataTable' => true,
-
];
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
@@ -67,7 +67,7 @@ class CatalogoLibros extends BaseResourceController
$sanitizedData = $this->sanitized($postData, true);
$sanitizedData['user_created_id'] = auth()->user()->id;
- unset($sanitizedData['isk']);
+ unset($sanitizedData['iskn']);
$noException = true;
if ($successfulResult = $this->canValidate()):
@@ -132,11 +132,11 @@ class CatalogoLibros extends BaseResourceController
$postData = $this->request->getPost();
$sanitizedData = $this->sanitized($postData, true);
- unset($sanitizedData['isk']);
+ unset($sanitizedData['iskn']);
$sanitizedData['user_update_id'] = auth()->user()->id;
$noException = true;
-
+
if ($successfulResult = $this->canValidate()): // if ($successfulResult = $this->validate($this->formValidationRules) ) :
@@ -174,7 +174,7 @@ class CatalogoLibros extends BaseResourceController
endif; // $noException && $successfulResult
endif; // ($requestMethod === 'post')
-
+
$this->viewData['catalogoLibrosEntity'] = $catalogoLibrosEntity;
$this->viewData['formAction'] = route_to('catalogoLibrosEdit', $id);
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('Catalogo.moduleTitle') . ' ' . lang('Basic.global.edit3');
@@ -225,7 +225,6 @@ class CatalogoLibros extends BaseResourceController
}
-
/* IMN */
public function getClientList()
{
@@ -235,5 +234,41 @@ class CatalogoLibros extends BaseResourceController
}
+ /* Historico de pedidos ERP antiguo */
+ public function datatablePedidosAntiguos()
+ {
+ $reqData = $this->request->getGet();
+ $start = $reqData['start'] ?? 0;
+ $length = $reqData['length'] ?? 10;
+ $catalogoId = $reqData['catalogo_id'] ?? null;
+
+ // Instanciar el modelo directamente
+ $importadorModel = new ImportadorModel();
+
+ $q = $importadorModel->getHistoricoPedidosCatalogo($catalogoId);
+
+ return DataTable::of($q)
+ ->setSearchableColumns([
+ 't1.id',
+ 't1.created_at',
+ 't1.tirada',
+ '(CASE WHEN t1.tirada > 0 THEN t1.total / t1.tirada ELSE 0 END)',
+ 't1.total',
+ 't1.estado'
+ ])
+ ->edit('total', fn($row) => number_format((float) $row->total, 2, ',', '.') . ' €')
+ ->edit('precio_ud', fn($row) => number_format((float) $row->precio_ud, 2, ',', '.') . ' €')
+ ->edit('created_at', fn($row) => date('d/m/Y', strtotime($row->created_at)))
+ ->add('actionBtns', function ($row) {
+ return '
';
+ }, 'last')
+ ->toJson(returnAsObject: true);
+ }
+
+
}
diff --git a/ci4/app/Controllers/Chat/ChatController.php b/ci4/app/Controllers/Chat/ChatController.php
index 1df0f469..2c70160d 100755
--- a/ci4/app/Controllers/Chat/ChatController.php
+++ b/ci4/app/Controllers/Chat/ChatController.php
@@ -363,14 +363,13 @@ class ChatController extends BaseController
$query = $this->userModel->builder()->select(
[
"id",
- "CONCAT(first_name,' ',last_name,'(',username,')') as name"
+ "CONCAT(first_name,' ',last_name) as name"
]
)
->where("deleted_at", null)
->whereNotIn("id", [auth()->user()->id]);
if ($this->request->getGet("q")) {
$query->groupStart()
- ->orLike("users.username", $this->request->getGet("q"))
->orLike("CONCAT(first_name,' ',last_name)", $this->request->getGet("q"))
->groupEnd();
}
@@ -538,6 +537,23 @@ class ChatController extends BaseController
->toJson(true);
}
+ public function datatable_direct_messages()
+ {
+ $auth_user_id = auth()->user()->id;
+ $isAdmin = auth()->user()->inGroup('admin');
+ $query = $this->chatModel->getQueryDatatableDirectMessages($auth_user_id);
+ return DataTable::of($query)
+ ->edit('created_at', fn($q) => $q->created_at ? Time::createFromFormat('Y-m-d H:i:s', $q->created_at)->format("d/m/Y H:i") : "")
+ ->edit('updated_at', fn($q) => $q->updated_at ? Time::createFromFormat('Y-m-d H:i:s', $q->updated_at)->format("d/m/Y H:i") : "")
+ ->edit("creator",fn($q) => $q->userId == $auth_user_id ? ''.lang("App.me").' ' : $q->creator)
+ ->add("viewed", fn($q) => $this->chatModel->isMessageChatViewed($q->chatMessageId))
+ ->add("action", fn($q) => ["type" => "direct", "modelId" => $q->id, "isAdmin" => $isAdmin,"chatMessageId" => $q->chatMessageId, "lang" => [
+ "view_chat" => lang('Chat.view_chat'),
+ "view_by_alt_message" => lang('Chat.view_by_alt_message')
+ ]])
+
+ ->toJson(true);
+ }
public function get_notifications_not_viewed_from_message(int $chat_message_id)
{
$unviewedNotifications = $this->chatModel->getUsersNotificationNotViewedFromChat($chat_message_id);
@@ -605,14 +621,13 @@ class ChatController extends BaseController
$query = $this->userModel->builder()->select(
[
"id",
- "CONCAT(first_name,' ',last_name,'(',username,')') as name"
+ "CONCAT(first_name,' ',last_name) as name"
]
)
->where("deleted_at", null)
->whereNotIn("id", $chat_users_id);
if ($this->request->getGet("q")) {
$query->groupStart()
- ->orLike("users.username", $this->request->getGet("q"))
->orLike("CONCAT(first_name,' ',last_name)", $this->request->getGet("q"))
->groupEnd();
}
diff --git a/ci4/app/Controllers/Configuracion/Imposiciones.php b/ci4/app/Controllers/Configuracion/Imposiciones.php
index e47ad6be..b798a2c2 100755
--- a/ci4/app/Controllers/Configuracion/Imposiciones.php
+++ b/ci4/app/Controllers/Configuracion/Imposiciones.php
@@ -67,6 +67,7 @@ class Imposiciones extends BaseController
['title' => lang("App.menu_imposiciones"), 'route' => route_to("imposicionList"), 'active' => true],
];
+ $this->viewData["method"] = "add";
return view(static::$viewPath . 'viewImposicionNewForm', $this->viewData);
}
public function add_esquema()
@@ -88,6 +89,7 @@ class Imposiciones extends BaseController
];
}
+ $this->viewData["method"] = "edit";
return view(static::$viewPath . 'viewImposicionForm', $this->viewData);
}
public function edit_imposicion_esquema($imposicion_esquema_id = null)
diff --git a/ci4/app/Controllers/Configuracion/Maquinas.php b/ci4/app/Controllers/Configuracion/Maquinas.php
index 384f0026..3ee7c046 100755
--- a/ci4/app/Controllers/Configuracion/Maquinas.php
+++ b/ci4/app/Controllers/Configuracion/Maquinas.php
@@ -207,6 +207,9 @@ class Maquinas extends \App\Controllers\BaseResourceController
if ($this->request->getPost('is_inkjet') == null) {
$sanitizedData['is_inkjet'] = false;
}
+ if ($this->request->getPost('etiqueta_envio') == null) {
+ $sanitizedData['etiqueta_envio'] = false;
+ }
// JJO
$sanitizedData['user_updated_id'] = auth()->user()->id;
diff --git a/ci4/app/Controllers/Facturacion/Facturas.php b/ci4/app/Controllers/Facturacion/Facturas.php
index ea45c3c7..6f19d4b4 100755
--- a/ci4/app/Controllers/Facturacion/Facturas.php
+++ b/ci4/app/Controllers/Facturacion/Facturas.php
@@ -234,6 +234,13 @@ class Facturas extends \App\Controllers\BaseResourceController
$factura->showDeleteButton = model('App\Models\Facturas\FacturaPagoModel')
->where('factura_id', $factura->id)->countAllResults() == 0;
+ if($factura->numero != null && $factura->numero != '' && strpos($factura->numero, "REC ") === 0) {
+ $modelPagos = model('App\Models\Facturas\FacturaPagoModel');
+ if($modelPagos->where('factura_id', $factura->id)->countAllResults() > 0) {
+ $factura->facturaRectificativaPagada = 1;
+ }
+ }
+
$this->viewData['facturaEntity'] = $factura;
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('Facturas.factura') . ' ' . lang('Basic.global.edit3');
@@ -831,11 +838,15 @@ class Facturas extends \App\Controllers\BaseResourceController
'user_updated_id' => auth()->user()->id,
];
- if ((strpos($numero, "REC ") === 0)) {
- $data['estado_pago'] = 'pagada';
- }
-
$this->model->update($factura_id, $data);
+
+ if ((strpos($numero, "REC ") === 0)) {
+
+ $this->model->where('numero', $factura->factura_rectificada_id)->set([
+ 'factura_rectificativa_id' => $numero,
+ 'user_updated_id' => auth()->user()->id,
+ ])->update();
+ }
}
diff --git a/ci4/app/Controllers/Facturacion/FacturasLineas.php b/ci4/app/Controllers/Facturacion/FacturasLineas.php
index 0c12c403..386aa70b 100755
--- a/ci4/app/Controllers/Facturacion/FacturasLineas.php
+++ b/ci4/app/Controllers/Facturacion/FacturasLineas.php
@@ -92,7 +92,7 @@ class FacturasLineas extends \App\Controllers\BaseResourceController
Field::inst('id'),
Field::inst('base'),
Field::inst('total_iva'),
- Field::inst('total'),
+ Field::inst('total')->set(Field::SET_BOTH),
Field::inst('cantidad')
->validator(
'Validate::numeric',
@@ -126,19 +126,6 @@ class FacturasLineas extends \App\Controllers\BaseResourceController
'message' => lang('Facturas.validation.requerido')
)
),
- Field::inst('total')
- ->validator(
- 'Validate::numeric',
- array(
- 'message' => lang('Facturas.validation.numerico')
- )
- )
- ->validator(
- 'Validate::notEmpty',
- array(
- 'message' => lang('Facturas.validation.requerido')
- )
- ),
Field::inst('pedido_linea_impresion_id')
->setFormatter(function ($val, $data, $opts) {
return $val === '' ? null : $val;
@@ -157,7 +144,7 @@ class FacturasLineas extends \App\Controllers\BaseResourceController
$values['total'],
$values['iva'],
$values['cantidad'],
- $values['old_cantidad'],
+ $values['old_cantidad'],
$values['base']
);
$editor
@@ -183,7 +170,7 @@ class FacturasLineas extends \App\Controllers\BaseResourceController
$values['total'],
$values['iva'],
$values['cantidad'],
- $values['old_cantidad'],
+ $values['old_cantidad'],
$values['base']
);
$editor
@@ -256,14 +243,13 @@ class FacturasLineas extends \App\Controllers\BaseResourceController
$values['base'] = $base;
$values['total_iva'] = $total_iva;
$values['total'] = $total;
- }
- else{
+ } else {
// se pasa la base y el iva
$total_iva = round($base_input * $iva / 100, 2);
$total = round($base_input + $total_iva, 2);
-
+
$values = [];
- $values['base'] = $base_input;
+ $values['base'] = (float) $base_input;
$values['total_iva'] = $total_iva;
$values['total'] = $total;
diff --git a/ci4/app/Controllers/Facturacion/FacturasPagos.php b/ci4/app/Controllers/Facturacion/FacturasPagos.php
index 42a46009..c358f131 100755
--- a/ci4/app/Controllers/Facturacion/FacturasPagos.php
+++ b/ci4/app/Controllers/Facturacion/FacturasPagos.php
@@ -136,4 +136,36 @@ class FacturasPagos extends \App\Controllers\BaseResourceController
}
}
+ public function addPagoRectificativa()
+ {
+ if ($this->request->isAJAX()) {
+ $data['factura_id'] = $this->request->getPost('factura_id');
+ $data['fecha_vencimiento_at'] = $this->request->getPost('fecha');
+ $data['total'] = $this->request->getPost('total');
+ $data['user_updated_id'] = auth()->user()->id;
+ $data['forma_pago_id'] = 6; // compensada
+
+ if($data['fecha_vencimiento_at'] != null && $data['fecha_vencimiento_at'] != '') {
+ $data['fecha_vencimiento_at'] = date('Y-m-d H:i:s', strtotime($data['fecha_vencimiento_at']));
+ }
+
+ $model = new FacturaPagoModel();
+ $model->insert($data);
+
+ $modelFactura = model('App\Models\Facturas\FacturaModel');
+ $modelFactura->update($data['factura_id'], [
+ 'estado_pago' => 'pagada',
+ 'updated_at' => date('Y-m-d H:i:s'),
+ 'user_updated_id' => auth()->user()->id,
+ ]);
+
+ return $this->response->setJSON([
+ 'status' => true,
+ 'message' => lang('Facturas.facturaConformada'),
+ ]);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
}
\ No newline at end of file
diff --git a/ci4/app/Controllers/GoBaseController.php b/ci4/app/Controllers/GoBaseController.php
index 992edbb4..8de2426b 100755
--- a/ci4/app/Controllers/GoBaseController.php
+++ b/ci4/app/Controllers/GoBaseController.php
@@ -139,7 +139,7 @@ abstract class GoBaseController extends Controller
*
* @var array
*/
- protected $helpers = ['session', 'go_common', 'text', 'general', 'jwt', 'rbac']; //JJO
+ protected $helpers = ['session', 'go_common', 'text', 'general', 'jwt', 'rbac', 'assets']; //JJO
public static $queries = [];
diff --git a/ci4/app/Controllers/Importadores/ImportadorBubok.php b/ci4/app/Controllers/Importadores/ImportadorBubok.php
index 02a8e2a4..03d46982 100644
--- a/ci4/app/Controllers/Importadores/ImportadorBubok.php
+++ b/ci4/app/Controllers/Importadores/ImportadorBubok.php
@@ -3,6 +3,7 @@ namespace App\Controllers\Importadores;
use App\Controllers\BaseResourceController;
use App\Controllers\Presupuestos\Presupuestocliente;
+use App\Models\Presupuestos\PresupuestoModel;
use App\Services\PresupuestoService;
class ImportadorBubok extends BaseResourceController
@@ -39,6 +40,7 @@ class ImportadorBubok extends BaseResourceController
public function index()
{
+ checkPermission('importadores.bubok');
$viewData = [
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Importador.importadorCatalogoTitle')]),
@@ -50,9 +52,81 @@ class ImportadorBubok extends BaseResourceController
return view(static::$viewPath . 'viewImportadorBubokTool', $viewData);
}
+ public function validarFila()
+ {
+ checkPermission('importadores.bubok');
+
+ $json = $this->request->getJSON();
+
+ if (!$json || empty($json->producto) || empty($json->pedido)) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => 'Datos incompletos'
+ ]);
+ }
+
+ $producto = $json->producto;
+ $pedido = $json->pedido;
+
+ // Validar existencia de ID de producto
+ if (empty($producto->id)) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => 'ID de producto no proporcionado'
+ ]);
+ }
+
+ $refCliente = $pedido->orderNumber . '-' . $producto->id;
+
+ // Validar formato Ref. Cliente
+ if (strpos($refCliente, '-') === false || strlen($refCliente) < 5) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => 'Ref. cliente inválido'
+ ]);
+ }
+
+ // 1. Verificar si ya fue importado
+ $presupuestoModel = new PresupuestoModel();
+ $yaExiste = $presupuestoModel->where('referencia_cliente', $refCliente)->first();
+
+ if ($yaExiste) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => 'Referencia ya importada'
+ ]);
+ }
+
+ // 2. Validación básica del producto (puedes expandir con más reglas si lo necesitas)
+ $errores = [];
+
+ if (empty($producto->title))
+ $errores[] = 'Falta título';
+ if (empty($producto->body->pages))
+ $errores[] = 'Faltan páginas';
+ if (empty($producto->amount))
+ $errores[] = 'Falta tirada';
+
+ if (!empty($errores)) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => implode(', ', $errores)
+ ]);
+ }
+
+ // 3. Producto considerado apto
+ return $this->response->setJSON([
+ 'apto' => true
+ ]);
+ }
+
+
public function importarFila()
{
+
+ checkPermission('importadores.bubok');
+
$json = $this->request->getJSON();
// Validación mínima de datos comunes
@@ -83,7 +157,7 @@ class ImportadorBubok extends BaseResourceController
'message' => 'Número de orden o ID del producto no reconocidos.'
]);
}
- $refCliente = "$orderNumber - $productId";
+ $refCliente = "$orderNumber-$productId";
// Titulo
$titulo = $producto->title ?? null;
@@ -277,6 +351,15 @@ class ImportadorBubok extends BaseResourceController
]
];
+ // Recalcular calidad (isColor y isHq) en funcion del cliente
+ [$isColor, $isHq] = PresupuestoService::getCalidad(
+ 'importador-bubok',
+ null,
+ ((trim(strtolower($interiorTipo)) === 'color') ? 1 : 0),
+ 0,
+ intval($tirada ?? 0)
+ );
+
// Generamos el objeto a importar
$dataToImport = [
'selectedTirada' => $tirada,
@@ -295,8 +378,8 @@ class ImportadorBubok extends BaseResourceController
'tipo' => '',
'tipo_presupuesto_id' => $encuadernadoId,
'clienteId' => 40, // BUBOK ID
- 'isColor' => ($interiorTipo === 'color') ? 1 : 0,
- 'isHq' => 0,
+ 'isColor' => $isColor,
+ 'isHq' => $isHq,
'paginas' => $paginas,
'paginasColor' => ($interiorTipo === 'color') ? $paginas : 0,
'paginasCuadernillo' => 32,
@@ -317,15 +400,16 @@ class ImportadorBubok extends BaseResourceController
'sobrecubierta' => [],
'faja' => null,
- 'entrega_taller' => 1,
- //'direcciones' => $direcciones, las direcciones que aparecen no se añaden, ya que la recogida la hacen ellos con su empresa de mensajeria
+ 'direcciones' => $direcciones,
'ivaReducido' => 1,
];
/*return $this->respond([
'status' => 400,
- 'message' => $dataToImport
+ 'message' => $dataToImport,
+ 'interiorTipo' => $interiorTipo,
+ 'isColor' => $isColor
]);*/
// 5. Guardar
@@ -358,11 +442,11 @@ class ImportadorBubok extends BaseResourceController
];
}
}
-
+
// confirmar y crear pedido y ot
$presupuestoModel->confirmarPresupuesto($response['sk_id']);
- PresupuestoService::crearPedido($response['sk_id']);
-
+ PresupuestoService::crearPedido($response['sk_id'], isImported: true);
+
if (!isset($response['sk_id'])) {
return $this->respond([
@@ -372,6 +456,76 @@ class ImportadorBubok extends BaseResourceController
], 400);
}
+
+ // Descarga y subida de archivos al SFTP
+ $presupuestoFicheroModel = model('App\Models\Presupuestos\PresupuestoFicheroModel');
+ $ftp = new \App\Libraries\SafekatFtpClient();
+
+ $archivoUrls = [
+ 'cover' => $producto->cover->file ?? null,
+ 'body' => $producto->body->file ?? null,
+ ];
+
+ foreach ($archivoUrls as $tipo => $url) {
+ if (!$url)
+ continue;
+
+ try {
+ $contenido = @file_get_contents($url); // silenciar errores de PHP
+
+ if ($contenido === false || strlen($contenido) === 0) {
+ // No se pudo descargar el archivo: generar archivo de error para FTP
+ $errorMessage = "ERROR: No se pudo descargar el archivo remoto para $tipo desde la URL: $url";
+
+ $remoteDir = $ftp->getPresupuestoRemotePath($response['sk_id']); // crea esta función si no existe
+ $remoteErrorFile = $remoteDir . '/ERROR_' . strtoupper($tipo) . '.txt';
+
+ // Crear archivo temporal con el mensaje de error
+ $tempErrorFile = WRITEPATH . 'uploads/presupuestos/ERROR_' . $tipo . '.txt';
+ file_put_contents($tempErrorFile, $errorMessage);
+
+ if (!$ftp->is_dir($remoteDir)) {
+ $ftp->mkdir($remoteDir, recursive: true);
+ }
+
+ $ftp->put($remoteErrorFile, $tempErrorFile, $ftp::SOURCE_LOCAL_FILE);
+
+ continue; // no procesar este archivo
+ }
+
+ // ✅ Procesar normalmente si la descarga tuvo éxito
+ $nombreOriginal = basename(parse_url($url, PHP_URL_PATH));
+ $extension = pathinfo($nombreOriginal, PATHINFO_EXTENSION);
+
+ $nombreLimpio = $presupuestoFicheroModel->saveFileInBBDD(
+ $response['sk_id'],
+ $nombreOriginal,
+ $extension,
+ auth()->id()
+ );
+
+ if (is_null($nombreLimpio))
+ continue;
+
+ $rutaLocal = WRITEPATH . 'uploads/presupuestos/';
+ if (!is_dir($rutaLocal)) {
+ mkdir($rutaLocal, 0777, true);
+ }
+
+ file_put_contents($rutaLocal . $nombreLimpio, $contenido);
+ } catch (\Throwable $e) {
+ //log_message('error', 'Error inesperado en descarga de archivo remoto: ' . $e->getMessage());
+ }
+ }
+
+
+ // Subir al FTP después de guardar localmente
+ try {
+ $ftp->uploadFilePresupuesto($response['sk_id']);
+ } catch (\Throwable $e) {
+ log_message('error', 'Error subiendo archivos al FTP: ' . $e->getMessage());
+ }
+
return $this->respond([
'status' => 200,
'data' => [
@@ -380,6 +534,7 @@ class ImportadorBubok extends BaseResourceController
]
]);
+
} catch (\Throwable $e) {
return $this->respond([
'status' => 500,
diff --git a/ci4/app/Controllers/Importadores/ImportadorCatalogo.php b/ci4/app/Controllers/Importadores/ImportadorCatalogo.php
index e2ebb080..0afd6371 100644
--- a/ci4/app/Controllers/Importadores/ImportadorCatalogo.php
+++ b/ci4/app/Controllers/Importadores/ImportadorCatalogo.php
@@ -3,6 +3,7 @@ namespace App\Controllers\Importadores;
use App\Controllers\BaseResourceController;
use App\Entities\Catalogo\CatalogoLibroEntity;
+use App\Models\Presupuestos\PresupuestoModel;
use App\Models\Catalogo\CatalogoLibroModel;
use App\Controllers\Presupuestos\Presupuestocliente;
use App\Services\PresupuestoService;
@@ -42,10 +43,11 @@ class ImportadorCatalogo extends BaseResourceController
public function index()
{
+ checkPermission('importadores.catalogo');
$viewData = [
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Importador.importadorCatalogoTitle')]),
-
+
];
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
@@ -56,39 +58,55 @@ class ImportadorCatalogo extends BaseResourceController
public function validarFila()
{
+ checkPermission('importadores.catalogo');
+
$json = $this->request->getJSON();
- if (!$json || !isset($json->fila[0])) {
+ // Validación inicial del JSON y del ISBN
+ if (!$json || !isset($json->fila[0]) || empty(trim($json->fila[0]))) {
return $this->response->setJSON([
'apto' => false,
- 'reason' => 'Datos inválidos'
+ 'reason' => 'ISBN no proporcionado o datos inválidos'
]);
}
- $input = trim($json->fila[0]); // Asumimos que 'input' es el primer campo de la fila
+ $input = trim($json->fila[0]); // ISBN
+ $refCliente = isset($json->fila[1]) ? trim($json->fila[1]) : null;
- if (empty($input)) {
+ // Validar formato del refCliente (esperado: idpedido-idlinea)
+ if (empty($refCliente) || strpos($refCliente, '-') === false) {
return $this->response->setJSON([
'apto' => false,
- 'reason' => 'ISBN no proporiconado'
+ 'reason' => 'Ref. cliente inválido'
+ ]);
+ }
+
+ // 1. Comprobar duplicado en tabla de presupuestos
+ $presupuestoModel = new PresupuestoModel(); // Usa el modelo real que corresponda
+ $yaExiste = $presupuestoModel->where('referencia_cliente', $refCliente)->first();
+
+ if ($yaExiste) {
+ return $this->response->setJSON([
+ 'apto' => false,
+ 'reason' => 'Referencia ya importada'
]);
}
$catalogoModel = new CatalogoLibroModel();
- // 1. Buscar por ISBN exacto
+ // 2. Buscar por ISBN exacto
$libroPorIsbn = $catalogoModel->where('isbn', $input)->first();
-
if ($libroPorIsbn) {
return $this->response->setJSON([
'apto' => true
]);
}
- // 2. Buscar por EAN sin guiones
+ // 3. Buscar por EAN sin guiones
$eanLimpio = str_replace('-', '', $input);
-
- $libroPorEan = $catalogoModel->where('REPLACE(ean, "-", "")', $eanLimpio)->first();
+ $libroPorEan = $catalogoModel
+ ->where('REPLACE(ean, "-", "")', $eanLimpio, false) // false para evitar escapado automático
+ ->first();
if ($libroPorEan) {
return $this->response->setJSON([
@@ -96,7 +114,7 @@ class ImportadorCatalogo extends BaseResourceController
]);
}
- // No encontrado
+ // 4. No encontrado
return $this->response->setJSON([
'apto' => false,
'reason' => 'No encontrado en catálogo'
@@ -104,9 +122,10 @@ class ImportadorCatalogo extends BaseResourceController
}
-
public function importarFila()
{
+ checkPermission('importadores.catalogo');
+
$json = $this->request->getJSON();
if (!$json || !isset($json->fila[0])) {
@@ -116,12 +135,10 @@ class ImportadorCatalogo extends BaseResourceController
]);
}
- // Mapear cada columna a una variable
+ // Mapear cada columna a una variable (debe coincidir con catalogo_tool.js)
$isbn = isset($json->fila[0]) ? trim($json->fila[0]) : null;
$refCliente = isset($json->fila[1]) ? trim($json->fila[1]) : null;
- //$descripcion = isset($json->fila[2]) ? trim($json->fila[2]) : null;
$tirada = isset($json->fila[3]) ? (float) $json->fila[3] : null;
- $precio_compra = isset($json->fila[4]) ? (float) $json->fila[4] : null;
if (empty($isbn)) {
return $this->response->setJSON([
@@ -130,6 +147,17 @@ class ImportadorCatalogo extends BaseResourceController
]);
}
+ // 0. Comprobar duplicado en tabla de presupuestos
+ $presupuestoModel = new PresupuestoModel(); // Usa el modelo real que corresponda
+ $yaExiste = $presupuestoModel->where('referencia_cliente', $refCliente)->first();
+
+ if ($yaExiste) {
+ return $this->response->setJSON([
+ 'success' => false,
+ 'message' => 'Referencia ya importada'
+ ]);
+ }
+
$catalogoModel = new CatalogoLibroModel();
// 1. Buscar por ISBN exacto
@@ -191,13 +219,22 @@ class ImportadorCatalogo extends BaseResourceController
// Sobrecubierta
$sobrecubierta = [];
- if (!is_null($libro->sobrecubierta_paginas)) {
+ if (!is_null($libro->sobrecubierta_paginas) && $libro->sobrecubierta_paginas != 0) {
$sobrecubierta['papel'] = $libro->sobrecubierta_papel_id;
$sobrecubierta['gramaje'] = $libro->sobrecubierta_gramaje;
$sobrecubierta['solapas'] = $libro->sobrecubierta_solapas;
$sobrecubierta['acabado'] = $libro->sobrecubierta_acabado_id;
}
+ // Recalcular calidad (isColor y isHq) en funcion del cliente
+ [$isColor, $isHq] = PresupuestoService::getCalidad(
+ 'importador-rama',
+ null,
+ (in_array(strtolower($libro->tipo_impresion), ['color', 'colorhq']) ? 1 : 0),
+ (in_array(strtolower($libro->tipo_impresion), ['negrohq', 'colorhq']) ? 1 : 0),
+ intval($tirada ?? 0)
+ );
+
$dataToImport = [
'selectedTirada' => $tirada,
@@ -221,8 +258,8 @@ class ImportadorCatalogo extends BaseResourceController
'tipo' => "",
'tipo_presupuesto_id' => $libro->encuadernacion_id,
'clienteId' => 251,
- 'isColor' => (in_array(strtolower($libro->tipo_impresion), ['color', 'colorhq']) ? 1 : 0),
- 'isHq' => (in_array(strtolower($libro->tipo_impresion), ['negrohq', 'colorhq']) ? 1 : 0),
+ 'isColor' => $isColor,
+ 'isHq' => $isHq,
'paginas' => $libro->paginas,
'paginasColor' => $colorPaginas,
'papelInteriorDiferente' => $papelInteriorDiferente,
@@ -254,6 +291,32 @@ class ImportadorCatalogo extends BaseResourceController
'data' => $dataToImport
]);*/
+ $tarifas = $this->obtenerTarifas();
+ $precioDesdeTarifa = $this->calcularPrecioDesdeTarifa(
+ $dataToImport['isColor'],
+ $libro->encuadernacion_id,
+ $libro->ancho,
+ $libro->alto,
+ $libro->paginas,
+ $tarifas
+ );
+
+ if (is_null($precioDesdeTarifa)) {
+ return $this->response->setJSON([
+ 'success' => false,
+ 'message' => 'No se pudo calcular el precio desde las tarifas disponibles.',
+ 'detalle' => [
+ 'tinta' => $dataToImport['isColor'] ? 'color' : 'negro',
+ 'encuadernacion_id' => $libro->encuadernacion_id,
+ 'ancho' => $libro->ancho,
+ 'alto' => $libro->alto,
+ 'paginas' => $libro->paginas
+ ]
+ ]);
+ }
+
+ // Usar precio calculado
+ $precio_compra = $precioDesdeTarifa;
// Procedemos a intentar guardar el presupuesto
// Instancia de presupuesto cliente
@@ -287,7 +350,7 @@ class ImportadorCatalogo extends BaseResourceController
$response['data']['sk_id'],
$precio_compra,
$tirada,
- null,
+ null,
true
);
if ($respuesta_ajuste['warning'] == true) {
@@ -299,7 +362,7 @@ class ImportadorCatalogo extends BaseResourceController
// confirmar y crear pedido y ot
model('App\Models\Presupuestos\PresupuestoModel')->confirmarPresupuesto($response['data']['sk_id']);
- PresupuestoService::crearPedido($response['data']['sk_id']);
+ PresupuestoService::crearPedido($response['data']['sk_id'],isImported:true);
return $this->respond($response);
@@ -316,6 +379,79 @@ class ImportadorCatalogo extends BaseResourceController
}
+
+ private function calcularPrecioDesdeTarifa($isColor, $encuadernacionId, $ancho, $alto, $paginas, $tarifas)
+ {
+ // Solo aplicamos tarifa si la encuadernación es Rústica Fresada (id = 2)
+ if ((int) $encuadernacionId !== 2) {
+ return null;
+ }
+
+ $tinta = $isColor ? 'color' : 'negro';
+
+ foreach ($tarifas as $tarifa) {
+ if (
+ strtolower($tarifa['tinta']) === $tinta &&
+ strtolower($tarifa['manipulado']) === 'rústica fresada' &&
+ (int) $tarifa['ancho'] === (int) $ancho &&
+ (int) $tarifa['alto'] === (int) $alto
+ ) {
+ return round($tarifa['precio_fijo'] + ($tarifa['precio_variable'] * $paginas), 2);
+ }
+ }
+
+ return null; // No se encontró tarifa válida
+ }
+
+
+ private function obtenerTarifas()
+ {
+ return [
+ [
+ 'tinta' => 'color',
+ 'manipulado' => 'Rústica Fresada',
+ 'ancho' => 200,
+ 'alto' => 245,
+ 'precio_fijo' => 1.15,
+ 'precio_variable' => 0.076
+ ],
+ [
+ 'tinta' => 'negro',
+ 'manipulado' => 'Rústica Fresada',
+ 'ancho' => 200,
+ 'alto' => 245,
+ 'precio_fijo' => 1.15,
+ 'precio_variable' => 0.009724
+ ],
+ [
+ 'tinta' => 'color',
+ 'manipulado' => 'Rústica Fresada',
+ 'ancho' => 150,
+ 'alto' => 210,
+ 'precio_fijo' => 1.15,
+ 'precio_variable' => 0.03217
+ ],
+ [
+ 'tinta' => 'negro',
+ 'manipulado' => 'Rústica Fresada',
+ 'ancho' => 150,
+ 'alto' => 210,
+ 'precio_fijo' => 1.15,
+ 'precio_variable' => 0.00572
+ ],
+ [
+ 'tinta' => 'negro',
+ 'manipulado' => 'Rústica Fresada',
+ 'ancho' => 170,
+ 'alto' => 240,
+ 'precio_fijo' => 1.15,
+ 'precio_variable' => 0.008
+ ]
+ ];
+ }
+
+
+
diff --git a/ci4/app/Controllers/Logistica/EtiquetasTitulosController.php b/ci4/app/Controllers/Logistica/EtiquetasTitulosController.php
new file mode 100644
index 00000000..dc0fa78a
--- /dev/null
+++ b/ci4/app/Controllers/Logistica/EtiquetasTitulosController.php
@@ -0,0 +1,467 @@
+impresoraEtiquetaService = service('impresora_etiqueta');
+ $this->locale = session()->get('lang');
+ $this->model = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+
+ $this->viewData['pageTitle'] = lang('Logistica.logistica');
+
+ // Breadcrumbs
+ $this->viewData['breadcrumb'] = [
+ ['title' => lang("App.menu_logistica"), 'route' => route_to("LogisticaPanel"), 'active' => false],
+ ];
+
+
+ parent::initController($request, $response, $logger);
+ }
+
+ public function findOTs()
+ {
+ if ($this->request->isAJAX()) {
+
+ $query = EtiquetasTitulosService::getOtsWithTitulos();
+
+ if ($this->request->getGet("q")) {
+ $query->groupStart()
+ ->orLike("ot.id", $this->request->getGet("q"))
+ ->orLike("pr.titulo)", $this->request->getGet("q"))
+ ->groupEnd();
+ }
+
+
+ $result = $query->orderBy("id", "DESC")->get()->getResultObject();
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function findAddresses()
+ {
+ if ($this->request->isAJAX()) {
+
+ $ot_id = $this->request->getGet("ot_id");
+
+ $query = EtiquetasTitulosService::getDireccionesOT($ot_id);
+
+ if ($this->request->getGet("q")) {
+ $query->groupStart()
+ ->orLike("pd.direccion", $this->request->getGet("q"))
+ ->groupEnd();
+ }
+
+
+ $result = $query->orderBy("pd.direccion", "ASC")->get()->getResultObject();
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function addEtiqueta()
+ {
+ if ($this->request->isAJAX()) {
+
+ $data = [];
+ $data['user_id'] = auth()->user()->id;
+ $data['ot_id'] = $this->request->getPost('ot_id') ?? null;
+ $data['direccion'] = $this->request->getPost('direccion') ?? null;
+ $data['unidades_caja'] = $this->request->getPost('unidades_caja') ?? null;
+
+ if (
+ $this->request->getPost('ot_id') == null ||
+ $this->request->getPost('direccion') == null ||
+ $this->request->getPost('unidades_caja') == null
+ ) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errorMissingData')
+ ];
+ }
+
+ $result = EtiquetasTitulosService::addEtiqueta($data);
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function deleteEtiqueta($id = null)
+ {
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getPost('id') ?? null;
+
+ if ($id == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errorMissingData')
+ ];
+ }
+
+ $modelLineas = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+ $ids = $modelLineas->where('etiqueta_titulos_id', $id)->findColumn('id');
+ if ($ids) {
+ $modelLineas->delete($ids);
+ }
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+ $id = $model->where('id', $id)->findColumn('id');
+ if ($id) {
+ $model->delete($id);
+ }
+ $result = [
+ 'status' => true,
+ 'message' => lang('Logistica.success.jhnresponse->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+
+ }
+
+
+ public function edit($id = null)
+ {
+
+ if (empty($id)) {
+ return redirect()->to(base_url('logistica/selectEnvios/simple'))->with('error', lang('Logistica.errors.noEnvio'));
+ }
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+ $etiquetaEntity = $model->select('etiquetas_titulos.*, clientes.nombre as cliente')
+ ->join('clientes', 'clientes.id = etiquetas_titulos.cliente_id', 'left')
+ ->where('etiquetas_titulos.id', $id)
+ ->first();
+ if (empty($etiquetaEntity)) {
+ return redirect()->to(base_url('logistica/etiquetasLogistica'))->with('error', lang('Logistica.errors.noEnvio'));
+ }
+
+
+ $modelImpresora = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
+ $impresoras = $modelImpresora->select('id, name, description')
+ ->where('deleted_at', null)
+ ->where('tipo', 1)
+ ->orderBy('name', 'asc')
+ ->findAll();
+ $etiquetaEntity->impresoras = $impresoras;
+
+ $viewData = [
+ 'currentModule' => static::$controllerSlug,
+ 'boxTitle' => ' ' . ' ' . lang('Logistica.EtiquetasTitulos') . ' [' . $etiquetaEntity->id . ']: ' . $etiquetaEntity->direccion,
+ 'usingServerSideDataTable' => true,
+ 'etiquetaEntity' => $etiquetaEntity,
+ ];
+
+ $viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
+
+ return view(static::$viewPath . 'viewEtiquetasTitulosEdit', $viewData);
+ }
+
+
+ public function datatable()
+ {
+ $q = $this->model->getEtiquetasTitulos();
+
+ if (!empty($otsFilter)) {
+ $q->groupStart();
+ $q->like('etl.ot_id', $otsFilter);
+ $q->groupEnd();
+ }
+
+ $result = DataTable::of($q)
+ ->add("action", callback: function ($q) {
+ return '
+
+ ';
+ });
+
+ return $result->toJson(returnAsObject: true);
+ }
+
+ public function findOtsWithAddress()
+ {
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getGet('id') ?? null;
+
+ $query = EtiquetasTitulosService::findOTsWithAddress($id);
+
+ if ($this->request->getGet("q")) {
+ $query->groupStart()
+ ->orLike("name", $this->request->getGet("q"))
+ ->groupEnd();
+ }
+
+
+ $result = $query->orderBy("id", "DESC")->get()->getResultObject();
+
+ return $this->response->setJSON($result);
+
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function addLineasEtiqueta()
+ {
+
+ if ($this->request->isAJAX()) {
+
+ $etiqueta_id = $this->request->getPost('etiqueta_id') ?? null;
+ $ot_id = $this->request->getPost('ot_id') ?? null;
+ $unidades = $this->request->getPost('unidades') ?? null;
+ $cajas = $this->request->getPost('cajas') ?? null;
+
+ $result = EtiquetasTitulosService::addLineasEtiqueta($etiqueta_id, $ot_id, $unidades, $cajas);
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+
+ }
+
+ public function datatableLineasEtiquetas($id = null)
+ {
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+
+ $id = $this->request->getGet('id') ?? null;
+ $direccion = $this->request->getGet('direccion') ?? null;
+
+ $q = $model->getDatatableQuery($id, $direccion);
+
+
+ $result = DataTable::of($q)
+ ->add(
+ "rowSelected",
+ callback: function ($q) {
+ return ' ';
+ }
+ )
+ ->edit(
+ "ot",
+ function ($row, $meta) {
+ return '' . $row->ot . ' ';
+ }
+ )
+ ->edit(
+ "unidades",
+ function ($row, $meta) {
+ return ' ';
+ }
+ )
+ ->edit(
+ "numero_caja",
+ function ($row, $meta) {
+ return ' ';
+ }
+ )
+ ->add("unidades_raw", fn($row) => $row->unidades)
+ ->add("pesoUnidad_raw", fn($row) => $row->pesoUnidad)
+ ->add(
+ "action",
+ callback: function ($q) {
+ return '
+
+ ';
+ }
+ );
+
+ return $result->toJson(returnAsObject: true);
+ }
+
+ public function deleteLineasEtiqueta()
+ {
+ if ($this->request->isAJAX()) {
+ $ids = $this->request->getPost('ids') ?? [];
+
+ if ($ids == [] || $ids == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+ for ($i = 0; $i < count($ids); $i++) {
+ $model->delete($ids[$i]);
+ }
+
+
+ $result = [
+ 'status' => true,
+ 'message' => lang('Logistica.success.successDeleteLines'),
+ ];
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function updateLineasEtiqueta()
+ {
+
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getPost('id') ?? null;
+ $name = $this->request->getPost('name') ?? null;
+ $value = $this->request->getPost('value') ?? null;
+
+ if ($id == null || $name == null || $value == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+ $model->update($id, [$name => $value]);
+
+ $result = [
+ 'status' => true,
+ 'message' => lang('Logistica.success.successUpdateLine'),
+ ];
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function updateComentarios()
+ {
+
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getPost('id') ?? null;
+ $comentarios = $this->request->getPost('comentarios') ?? null;
+
+ if ($id == null || $comentarios == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+ $model->update($id, ['comentarios' => $comentarios]);
+
+ $result = [
+ 'status' => true,
+ 'message' => lang('Logistica.success.comentariosUpdated'),
+ ];
+
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function updateOrdenCajas()
+ {
+ $rawInput = $this->request->getBody();
+ $data = json_decode($rawInput, true);
+ $orden = $data['orden'] ?? [];
+
+ if (!is_array($orden)) {
+ return $this->response->setJSON([
+ 'status' => false,
+ 'message' => 'Datos inválidos'
+ ]);
+ }
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+
+ foreach ($orden as $item) {
+ if (isset($item['id'], $item['numero_caja'])) {
+ $model->update($item['id'], [
+ 'numero_caja' => $item['numero_caja'],
+ 'updated_at' => date('Y-m-d H:i:s') // opcional
+ ]);
+ }
+ }
+
+ return $this->response->setJSON([
+ 'status' => true,
+ 'message' => 'Orden de cajas actualizado correctamente'
+ ]);
+ }
+
+ public function renumberCajas()
+ {
+ $id = $this->request->getPost('id') ?? null;
+
+ if ($id == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $result = EtiquetasTitulosService::reordenarCajas($id);
+
+ return $this->response->setJSON($result);
+ }
+
+ public function imprimirEtiquetas()
+ {
+ $etiqueta_id = $this->request->getPost('etiqueta_id') ?? null;
+ $ids = $this->request->getPost('ids') ?? [];
+ $impresora_id = $this->request->getPost('impresora_id') ?? null;
+
+ $modelImpresora = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
+ $impresora = $modelImpresora->select('id, name, description, ip, port, user, pass')
+ ->where('deleted_at', null)
+ ->where('id', $impresora_id)
+ ->orderBy('name', 'asc')
+ ->first();
+ if ($impresora == null) {
+ return $this->response->setJSON([
+ 'status' => false,
+ 'message' => 'Impresora no válida'
+ ]);
+ }
+
+ if ($etiqueta_id == null || $ids == []) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $result = EtiquetasTitulosService::imprimirEtiquetas($etiqueta_id, $ids, $impresora);
+
+ return $this->response->setJSON($result);
+ }
+
+}
\ No newline at end of file
diff --git a/ci4/app/Controllers/Logistica/LogisticaController.php b/ci4/app/Controllers/Logistica/LogisticaController.php
index d8dade10..30d8cf0b 100755
--- a/ci4/app/Controllers/Logistica/LogisticaController.php
+++ b/ci4/app/Controllers/Logistica/LogisticaController.php
@@ -44,6 +44,8 @@ class LogisticaController extends BaseController
public function panel()
{
+ checkPermission('logistica.logistica');
+
$viewData = [
'currentModule' => static::$controllerSlug,
'boxTitle' => lang('Logistica.panel'),
@@ -58,6 +60,8 @@ class LogisticaController extends BaseController
public function gestionEnvios()
{
+ checkPermission('logistica.logistica');
+
$viewData = [
'currentModule' => static::$controllerSlug,
'boxTitle' => lang('Logistica.gestionEnvios'),
@@ -73,6 +77,8 @@ class LogisticaController extends BaseController
public function gestionEnviosFerros()
{
+ checkPermission('logistica.logistica');
+
$viewData = [
'currentModule' => static::$controllerSlug,
'boxTitle' => lang('Logistica.envioFerros'),
@@ -85,7 +91,25 @@ class LogisticaController extends BaseController
return view(static::$viewPath . 'viewLogisticaSelectEnvios', $viewData);
}
- public function listAlbaranes(){
+ public function etiquetasLogistica()
+ {
+ checkPermission('logistica.logistica');
+
+ $viewData = [
+ 'currentModule' => static::$controllerSlug,
+ 'boxTitle' => lang('Logistica.etiquetasTitulos'),
+ 'usingServerSideDataTable' => true,
+ ];
+
+ $viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
+
+ return view(static::$viewPath . 'viewImpresionEtiquetas', $viewData);
+ }
+
+ public function listAlbaranes()
+ {
+ checkPermission('logistica.logistica');
+
$viewData = [
'currentModule' => static::$controllerSlug,
'boxTitle' => lang('Albaran.albaranes'),
@@ -104,7 +128,7 @@ class LogisticaController extends BaseController
$tipo_envio = $this->request->getGet('tipo_envio') ?? 'estandar';
- if($tipo_envio == 'ferro_prototipo'){
+ if ($tipo_envio == 'ferro_prototipo') {
$query = LogisticaService::findForNewEnvioFerro();
} else {
$query = LogisticaService::findForNewEnvio();
@@ -119,22 +143,25 @@ class LogisticaController extends BaseController
$result = $query->orderBy("name", "asc")->get()->getResultObject();
+ $query = model('App\Models\Logistica\EnvioModel')->db->getLastQuery();
+
return $this->response->setJSON($result);
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
- public function selectDireccionForEnvio(){
+ public function selectDireccionForEnvio()
+ {
if ($this->request->isAJAX()) {
$ot = $this->request->getGet('ot_id');
- if($ot == null || $ot == 0){
+ if ($ot == null || $ot == 0) {
return [];
}
$searchVal = $this->request->getGet("q") ?? "";
$result = LogisticaService::findDireccionesNewEnvio($ot, $searchVal);
-
+
return $this->response->setJSON($result);
} else {
return $this->failUnauthorized('Invalid request', 403);
@@ -172,12 +199,12 @@ class LogisticaController extends BaseController
public function imprimirEtiquetas()
{
if ($this->request->isAJAX()) {
- $envio_id = $this->request->getPost('envio_id');
+ $envio_id = $this->request->getPost('envio_id');
$ids = $this->request->getPost('envio_lineas');
$cajas = $this->request->getPost('cajas');
$printer_id = $this->request->getPost('printer_id');
- if($cajas == null || $cajas == 0){
+ if ($cajas == null || $cajas == 0) {
return $this->response->setJSON([
'status' => false,
'message' => 'Cajas no válidas'
@@ -189,7 +216,7 @@ class LogisticaController extends BaseController
->join('clientes', 'clientes.id = envios.cliente_id', 'left')
->where('envios.id', $envio_id)
->first();
- if($envio == null){
+ if ($envio == null) {
return $this->response->setJSON([
'status' => false,
'message' => 'Envio no válido'
@@ -200,7 +227,7 @@ class LogisticaController extends BaseController
$lineas = $model->select('envios_lineas.*, presupuestos.titulo as titulo, presupuestos.referencia_cliente as referencia_cliente')
->join('presupuestos', 'presupuestos.id = envios_lineas.presupuesto_id', 'left')
->whereIn('envios_lineas.id', $ids)->findAll();
- if($lineas == null){
+ if ($lineas == null) {
return $this->response->setJSON([
'status' => false,
'message' => 'Lineas no válidas'
@@ -208,12 +235,12 @@ class LogisticaController extends BaseController
}
$modelImpresora = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
- $impresora = $modelImpresora->select('id, name, ip, port, user, pass')
+ $impresora = $modelImpresora->select('id, name, description, ip, port, user, pass')
->where('deleted_at', null)
->where('id', $printer_id)
->orderBy('name', 'asc')
->first();
- if($impresora == null){
+ if ($impresora == null) {
return $this->response->setJSON([
'status' => false,
'message' => 'Impresora no válida'
@@ -317,19 +344,19 @@ class LogisticaController extends BaseController
if (empty($envioEntity)) {
return redirect()->to(base_url('logistica/selectEnvios/simple'))->with('error', lang('Logistica.errors.noEnvio'));
}
-
+
$modelProveedor = model('App\Models\Compras\ProveedorModel');
$proveedor = $modelProveedor->select('id, nombre')
->where('deleted_at', null)
->where('id', $envioEntity->proveedor_id)
->orderBy('nombre', 'asc')
->first();
- if(!empty($proveedor)){
+ if (!empty($proveedor)) {
$envioEntity->proveedor_nombre = $proveedor->nombre;
}
$modelImpresora = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
- $impresoras = $modelImpresora->select('id, name')
+ $impresoras = $modelImpresora->select('id, name, description')
->where('deleted_at', null)
->where('tipo', 1)
->orderBy('name', 'asc')
@@ -371,7 +398,7 @@ class LogisticaController extends BaseController
$id = $this->request->getPost('id') ?? null;
$finalizar_ots = $this->request->getPost('finalizar_ots') ?? false;
-
+
$result = LogisticaService::finalizarEnvio($id, $finalizar_ots);
return $this->response->setJSON($result);
} else {
@@ -379,6 +406,17 @@ class LogisticaController extends BaseController
}
}
+ public function ficharEmbalaje()
+ {
+ if ($this->request->isAJAX()) {
+
+ $ids = $this->request->getPost('ids') ?? [];
+ $result = LogisticaService::ficharEmbalaje($ids);
+ return $this->response->setJSON($result);
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
public function datatable_enviosEdit($idEnvio)
{
@@ -393,6 +431,12 @@ class LogisticaController extends BaseController
return ' ';
}
)
+ ->edit(
+ "ordenTrabajo",
+ function ($row, $meta) {
+ return '' . $row->ordenTrabajo . ' ';
+ }
+ )
->edit(
"pedido",
function ($row, $meta) {
@@ -407,17 +451,35 @@ class LogisticaController extends BaseController
)->edit(
"unidadesEnvio",
function ($row, $meta) {
- if($row->finalizado == 1 || $row->tipo_envio == 'ferro_prototipo'){
+ if ($row->finalizado == 1 || $row->tipo_envio == 'ferro_prototipo') {
return $row->unidadesEnvio;
}
return ' ';
+ data-id="' . $row->id . '" data-name="unidades_envio" value="' . $row->unidadesEnvio . '">';
}
);
return $result->toJson(returnAsObject: true);
}
+ public function datatable_proximosEnvios($envio_id = null)
+ {
+ $q = LogisticaService::findNextEnvios($envio_id);
+
+ $result = DataTable::of($q)
+ ->edit(
+ "ot",
+ function ($row, $meta) {
+ return '' . $row->ot . ' ';
+ }
+ );
+
+ $result = $result->toJson(returnAsObject: true);
+ $query = model('App\Models\Logistica\EnvioModel')->db->getLastQuery();
+ return $result;
+
+ }
+
public function setCajaLinea()
{
@@ -458,7 +520,7 @@ class LogisticaController extends BaseController
$fieldName = $this->request->getPost('name');
$fieldValue = $this->request->getPost('value');
- if (!$id || !$fieldName || ($fieldName=='unidades_envio' && !$fieldValue)) {
+ if (!$id || !$fieldName || ($fieldName == 'unidades_envio' && !$fieldValue)) {
return $this->response->setJSON([
'status' => false,
'message' => 'Datos inválidos'
@@ -467,7 +529,7 @@ class LogisticaController extends BaseController
$model = model('App\Models\Logistica\EnvioLineaModel');
$updated = $model->update($id, [
- "" . $fieldName => $fieldValue==""? null: $fieldValue,
+ "" . $fieldName => $fieldValue == "" ? null : $fieldValue,
]);
return $this->response->setJSON([
@@ -490,7 +552,7 @@ class LogisticaController extends BaseController
$model = model('App\Models\Logistica\EnvioModel');
$updated = $model->update($id, [
- "codigo_seguimiento" => $fieldValue==""? null: $fieldValue,
+ "codigo_seguimiento" => $fieldValue == "" ? null : $fieldValue,
]);
return $this->response->setJSON([
@@ -513,7 +575,7 @@ class LogisticaController extends BaseController
$model = model('App\Models\Logistica\EnvioModel');
$updated = $model->update($id, [
- "proveedor_id" => $fieldValue==""? null: $fieldValue,
+ "proveedor_id" => $fieldValue == "" ? null : $fieldValue,
]);
return $this->response->setJSON([
diff --git a/ci4/app/Controllers/Pdf/PrintAlbaranes.php b/ci4/app/Controllers/Pdf/PrintAlbaranes.php
index 4ebaeb73..56da19e5 100755
--- a/ci4/app/Controllers/Pdf/PrintAlbaranes.php
+++ b/ci4/app/Controllers/Pdf/PrintAlbaranes.php
@@ -71,4 +71,55 @@ class PrintAlbaranes extends BaseController
->setHeader('Content-Length', strlen($output))
->setBody($output);
}
+
+ public function generarAnonimo($albaran_id)
+ {
+
+ // Cargar modelos
+ $albaranModel = model('App\Models\Albaranes\AlbaranModel');
+ $lineasAlbaranModel = model('App\Models\Albaranes\AlbaranLineaModel');
+
+ // Informacion del presupuesto
+ $data['albaran'] = $albaranModel->getResourceForPdf($albaran_id)->get()->getRow();
+ $data['albaranLineas'] = $lineasAlbaranModel->getResourceForPdf($albaran_id)->get()->getResultObject();
+
+
+ // Obtener contenido HTML de la vista
+ $html = view(getenv('theme.path') . 'pdfs/albaran-anonimo', $data);
+
+ // Cargar CSS desde archivo local
+ $css = file_get_contents(FCPATH . 'themes/vuexy/css/pdf.albaran.css');
+ // Combinar CSS y HTML
+ $html_con_css = "" . $html;
+
+ // Crear una instancia de Dompdf
+ $options = new \Dompdf\Options();
+ $options->set('isHtml5ParserEnabled', true);
+ $options->set('isPhpEnabled', true);
+ $options->set('isRemoteEnabled', true);
+ $dompdf = new \Dompdf\Dompdf($options);
+
+ // Contenido HTML del documento
+ $dompdf->loadHtml($html_con_css);
+
+ // Establecer el tamaño del papel
+ $dompdf->setPaper('A4', 'portrait');
+
+ // Renderizar el PDF
+ $dompdf->render();
+
+ // Obtener el contenido generado
+ $output = $dompdf->output();
+
+ // Establecer las cabeceras para visualizar en lugar de descargar
+ $file_name = "alabaran-$albaran_id.pdf";
+ return $this->response
+ ->setStatusCode(200)
+ ->setHeader('Content-Type', 'application/pdf')
+ ->setHeader('Content-Disposition', 'inline; filename="' . $file_name . '"')
+ ->setHeader('Cache-Control', 'private, max-age=0, must-revalidate')
+ ->setHeader('Pragma', 'public')
+ ->setHeader('Content-Length', strlen($output))
+ ->setBody($output);
+ }
}
\ No newline at end of file
diff --git a/ci4/app/Controllers/Pedidos/Pedido.php b/ci4/app/Controllers/Pedidos/Pedido.php
index 51f911c6..c547754e 100755
--- a/ci4/app/Controllers/Pedidos/Pedido.php
+++ b/ci4/app/Controllers/Pedidos/Pedido.php
@@ -12,7 +12,7 @@ use Hermawan\DataTables\DataTable;
use CodeIgniter\I18n\Time;
class Pedido extends \App\Controllers\BaseResourceController
-{
+{
protected $modelName = PedidoModel::class;
protected $format = 'json';
@@ -29,9 +29,9 @@ class Pedido extends \App\Controllers\BaseResourceController
{
$this->viewData['pageTitle'] = lang('Pedidos.moduleTitle');
// Se indica que este controlador trabaja con soft_delete
-
+
$this->viewData = ['usingServerSideDataTable' => true];
-
+
// Breadcrumbs
$this->viewData['breadcrumb'] = [
['title' => lang("App.menu_pedidos"), 'route' => "javascript:void(0);", 'active' => false],
@@ -169,7 +169,7 @@ class Pedido extends \App\Controllers\BaseResourceController
public function todos()
{
-
+
$viewData = [
'currentModule' => static::$controllerSlug,
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Pedidos.pedido')]),
@@ -195,21 +195,23 @@ class Pedido extends \App\Controllers\BaseResourceController
}
- public function cambiarEstado(){
- if($this->request->isAJAX()){
+ public function cambiarEstado()
+ {
+ if ($this->request->isAJAX()) {
$id = $this->request->getPost('id');
$estado = $this->request->getPost('estado');
$this->model->where('id', $id)->set(['estado' => $estado])->update();
return $this->respond(['status' => 'success', 'message' => lang('Basic.global.success')]);
- }else{
+ } else {
return $this->failUnauthorized('Invalid request', 403);
}
}
- public function update($id = null){
+ public function update($id = null)
+ {
$data = [];
@@ -217,7 +219,7 @@ class Pedido extends \App\Controllers\BaseResourceController
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
- if ($id == null) :
+ if ($id == null):
$data = [
'error' => 2,
$csrfTokenName => $newTokenHash
@@ -227,7 +229,7 @@ class Pedido extends \App\Controllers\BaseResourceController
$id = filter_var($id, FILTER_SANITIZE_URL);
$pedidoEntity = $this->model->find($id);
- if ($pedidoEntity == false) :
+ if ($pedidoEntity == false):
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Pedidos.pedido')), $id]);
$data = [
'error' => $message,
@@ -236,19 +238,19 @@ class Pedido extends \App\Controllers\BaseResourceController
return $this->respond($data);
endif;
- if ($this->request->getPost()) :
+ if ($this->request->getPost()):
$nullIfEmpty = true; // !(phpversion() >= '8.1');
$postData = $this->request->getPost();
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
-
- foreach(array_keys($sanitizedData) as $key){
- if(str_starts_with($key, "fecha_")){
- $sanitizedData[$key . "_change_user_id"] =
+
+ foreach (array_keys($sanitizedData) as $key) {
+ if (str_starts_with($key, "fecha_")) {
+ $sanitizedData[$key . "_change_user_id"] =
auth()->user()->id;
- $data[$key . "_change_user"] =
+ $data[$key . "_change_user"] =
model('App\Models\Usuarios\UserModel')->getFullName(auth()->user()->id);
}
}
@@ -256,9 +258,9 @@ class Pedido extends \App\Controllers\BaseResourceController
$sanitizedData['user_updated_id'] = auth()->user()->id;
$noException = true;
- if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
+ if ($successfulResult = $this->canValidate()): // if ($successfulResult = $this->validate($this->formValidationRules) ) :
- if ($this->canValidate()) :
+ if ($this->canValidate()):
try {
$successfulResult = $this->model->skipValidation(true)->update($id, $sanitizedData);
} catch (\Exception $e) {
@@ -274,7 +276,7 @@ class Pedido extends \App\Controllers\BaseResourceController
$pedidoEntity->fill($sanitizedData);
endif;
- if ($noException && $successfulResult) :
+ if ($noException && $successfulResult):
$id = $pedidoEntity->id ?? $id;
$message = lang('Basic.global.updateSuccess', [lang('Basic.global.record')]) . '.';
@@ -291,39 +293,39 @@ class Pedido extends \App\Controllers\BaseResourceController
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
- }
- else {
+ } else {
return $this->failUnauthorized('Invalid request', 403);
}
}
- public function edit($id=null){
-
- if ($id == null) :
+ public function edit($id = null)
+ {
+
+ if ($id == null):
return $this->redirect2listView();
endif;
$id = filter_var($id, FILTER_SANITIZE_URL);
$pedidoEntity = $this->model->find($id);
- if ($pedidoEntity == false) :
+ if ($pedidoEntity == false):
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Pedidos.pedido')), $id]);
return $this->redirect2listView('sweet-error', $message);
endif;
$this->obtenerDatosFormulario($pedidoEntity);
- $pedidoEntity->fecha_entrega_real_change_user = $pedidoEntity->fecha_entrega_real_change_user_id?model('App\Models\Usuarios\UserModel')->
- getFullName($pedidoEntity->fecha_entrega_real_change_user_id):"";
- $pedidoEntity->fecha_impresion_change_user = $pedidoEntity->fecha_impresion_change_user_id?model('App\Models\Usuarios\UserModel')->
- getFullName($pedidoEntity->fecha_impresion_change_user_id):"";
- $pedidoEntity->fecha_encuadernado_change_user = $pedidoEntity->fecha_encuadernado_change_user_id?model('App\Models\Usuarios\UserModel')->
- getFullName($pedidoEntity->fecha_encuadernado_change_user_id):"";
- $pedidoEntity->fecha_entrega_change_externo_user = $pedidoEntity->fecha_entrega_change_externo_user_id?model('App\Models\Usuarios\UserModel')->
- getFullName($pedidoEntity->fecha_entrega_change_externo_user_id):"";
-
+ $pedidoEntity->fecha_entrega_real_change_user = $pedidoEntity->fecha_entrega_real_change_user_id ? model('App\Models\Usuarios\UserModel')->
+ getFullName($pedidoEntity->fecha_entrega_real_change_user_id) : "";
+ $pedidoEntity->fecha_impresion_change_user = $pedidoEntity->fecha_impresion_change_user_id ? model('App\Models\Usuarios\UserModel')->
+ getFullName($pedidoEntity->fecha_impresion_change_user_id) : "";
+ $pedidoEntity->fecha_encuadernado_change_user = $pedidoEntity->fecha_encuadernado_change_user_id ? model('App\Models\Usuarios\UserModel')->
+ getFullName($pedidoEntity->fecha_encuadernado_change_user_id) : "";
+ $pedidoEntity->fecha_entrega_change_externo_user = $pedidoEntity->fecha_entrega_change_externo_user_id ? model('App\Models\Usuarios\UserModel')->
+ getFullName($pedidoEntity->fecha_entrega_change_externo_user_id) : "";
+
$this->viewData['pedidoEntity'] = $pedidoEntity;
- if($pedidoEntity->estado == 'validacion'){
+ if ($pedidoEntity->estado == 'validacion') {
$clienteModel = model('App\Models\Clientes\ClienteModel');
$pendiente = $clienteModel->getPendienteCobro($pedidoEntity->cliente_id);
$pendiente = $pendiente[0] + $pendiente[1];
@@ -332,24 +334,25 @@ class Pedido extends \App\Controllers\BaseResourceController
$modelOrden = new \App\Models\OrdenTrabajo\OrdenTrabajoModel();
$orden = $modelOrden->where('pedido_id', $pedidoEntity->id)->first();
- if($orden){
+ if ($orden) {
$this->viewData['orden_id'] = $orden->id;
}
-
+
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('Pedidos.moduleTitle') . ' ' . lang('Basic.global.edit3');
return $this->displayForm(__METHOD__, $id);
}
- public function datatable(){
+ public function datatable()
+ {
if ($this->request->isAJAX()) {
$reqData = $this->request->getPost();
- if (!isset($reqData['draw']) || !isset($reqData['columns']) ) {
+ if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
$errstr = 'No data available in response to this specific request.';
- $response = $this->respond(Collection::datatable( [], 0, 0, $errstr ), 400, $errstr);
+ $response = $this->respond(Collection::datatable([], 0, 0, $errstr), 400, $errstr);
return $response;
}
$start = $reqData['start'] ?? 0;
@@ -360,7 +363,8 @@ class Pedido extends \App\Controllers\BaseResourceController
$dir = $reqData['order']['0']['dir'] ?? 'asc';
$estado = $reqData['estado'] ?? 'todos';
$cliente_id = $reqData['cliente_id'] ?? -1;
- if($estado == 'todos') $estado = '';
+ if ($estado == 'todos')
+ $estado = '';
$showTotal = $reqData['showTotal'] ?? false;
@@ -373,7 +377,7 @@ class Pedido extends \App\Controllers\BaseResourceController
$extra_data['total_tirada'] = $totalTirada;
$extra_data['total'] = $total;
$total2 = 0;
- if($showTotal){
+ if ($showTotal) {
$total2 = $model_linea->getTotalOfTotalAceptado($estado);
$tirada2 = $model_linea->getTotalTirada($estado);
$extra_data['total2'] = $total2;
@@ -422,11 +426,11 @@ class Pedido extends \App\Controllers\BaseResourceController
$result = DataTable::of($q)
->edit(
'fecha',
- fn($q) => $q->fecha?Time::createFromFormat("Y-m-d H:i:s", $q->fecha)->format("d/m/Y"):""
+ fn($q) => $q->fecha ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha)->format("d/m/Y") : ""
)
->edit(
'fecha_entrega',
- fn($q) => $q->fecha_entrega?Time::createFromFormat("Y-m-d H:i:s", $q->fecha_entrega)->format("d/m/Y"):""
+ fn($q) => $q->fecha_entrega ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_entrega)->format("d/m/Y") : ""
)
->edit(
"estado",
@@ -453,13 +457,14 @@ class Pedido extends \App\Controllers\BaseResourceController
';
-
+
});
-
- return $result->toJson(returnAsObject: true) ;
+
+ return $result->toJson(returnAsObject: true);
}
- public function obtenerTotalPedidosCliente($cliente_id){
+ public function obtenerTotalPedidosCliente($cliente_id)
+ {
$error = false;
$result = [
@@ -472,37 +477,37 @@ class Pedido extends \App\Controllers\BaseResourceController
->join('pedidos_linea', 'pedidos_linea.pedido_id = pedidos.id')
->join('presupuestos', 'presupuestos.id = pedidos_linea.presupuesto_id')
->groupBy('presupuestos.cliente_id')->get()->getResultObject();
- if(count($data) > 0){
+ if (count($data) > 0) {
$result['total_impresion'] = round(floatval($data[0]->total), 2);
- }
- else{
+ } else {
$error = true;
}
$result['total'] = $result['total_impresion'] + $result['total_maquetacion'];
- return $this->respond(['status' => $error?'error':'success', 'totales' => $result]);
+ return $this->respond(['status' => $error ? 'error' : 'success', 'totales' => $result]);
}
- public function obtenerPedidosForFacturas(){
+ public function obtenerPedidosForFacturas()
+ {
if ($this->request->isAJAX()) {
$reqData = $this->request->getPost();
$start = $reqData['start'] ?? 0;
- }
- else {
+ } else {
return $this->failUnauthorized('Invalid request', 403);
}
}
- public function getlineas(){
+ public function getlineas()
+ {
if ($this->request->isAJAX()) {
$reqData = $this->request->getPost();
- if (!isset($reqData['draw']) || !isset($reqData['columns']) ) {
+ if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
$errstr = 'No data available in response to this specific request.';
- $response = $this->respond(Collection::datatable( [], 0, 0, $errstr ), 400, $errstr);
+ $response = $this->respond(Collection::datatable([], 0, 0, $errstr), 400, $errstr);
return $response;
}
-
+
$id = $reqData['pedido_id'] ?? 0;
$resourceData = $this->model->obtenerLineasPedido($id);
@@ -517,25 +522,26 @@ class Pedido extends \App\Controllers\BaseResourceController
}
- public function addFactura(){
+ public function addFactura()
+ {
+
+ if ($this->request->isAJAX()) {
- if($this->request->isAJAX()){
-
$modelFactura = model('App\Models\Facturas\FacturaModel');
$modelFacturaLinea = model('App\Models\Facturas\FacturaLineaModel');
-
+
$pedido_id = $this->request->getPost('pedido_id');
$serie_id = $this->request->getPost('serie_id');
$datosFactura = $this->model->obtenerDatosForFactura($pedido_id);
- if(count($datosFactura) == 0){
+ if (count($datosFactura) == 0) {
return $this->respond(['status' => 'error', 'message' => 'Error obteniendo datos de factura']);
}
$datosFactura = $datosFactura[0];
-
+
$modelFactura->insert([
'cliente_id' => $datosFactura->cliente_id,
'serie_id' => $serie_id,
@@ -555,13 +561,13 @@ class Pedido extends \App\Controllers\BaseResourceController
$factura_id = $modelFactura->getInsertID();
- if($factura_id){
+ if ($factura_id) {
$model_pedido_linea = model('\App\Models\Pedidos\PedidoLineaModel');
$lineas = $model_pedido_linea->where('pedido_id', $pedido_id)->first();
$facturas = new Facturas();
$result = $facturas->addLineaPedidoImpresion($factura_id, $lineas->id);
- if($result['error'] == 0){
+ if ($result['error'] == 0) {
// Se actualiza el precio total de la factura obtenido de la linea añadida
$linea_added = $modelFacturaLinea->where('factura_id', $factura_id)->first();
$modelFactura->set([
@@ -570,27 +576,28 @@ class Pedido extends \App\Controllers\BaseResourceController
'pendiente' => $linea_added->total,
])->where('id', $factura_id)->update();
return $this->respond(['status' => 'success', 'id' => $factura_id, 'message' => lang('Basic.global.success')]);
- }else{
+ } else {
return $this->respond(['status' => 'error', 'message' => 'Error insertando lineas de factura']);
}
}
return $this->respond(['status' => 'error', 'message' => 'Error insertando factura']);
- }else{
+ } else {
return $this->failUnauthorized('Invalid request', 403);
}
}
- private function obtenerDatosFormulario(&$pedidoEntity){
-
+ private function obtenerDatosFormulario(&$pedidoEntity)
+ {
+
$datos = $this->model->obtenerDatosForm($pedidoEntity->id);
$pedidoEntity->estadoText = lang('Pedidos.' . $pedidoEntity->estado);
- if(count($datos) > 0){
+ if (count($datos) > 0) {
$pedidoEntity->cliente = $datos[0]->cliente;
$pedidoEntity->cliente_id = $datos[0]->cliente_id;
$pedidoEntity->comercial = $datos[0]->comercial;
@@ -602,8 +609,8 @@ class Pedido extends \App\Controllers\BaseResourceController
$pedidoEntity->fecha_entrega_externo_text = $pedidoEntity->fecha_entrega_externo ? date('d/m/Y', strtotime($pedidoEntity->fecha_entrega_externo)) : '';
$userModel = model('App\Models\Usuarios\UserModel');
- $pedidoEntity->created_by = $userModel->getFullName($pedidoEntity->user_created_id);
- $pedidoEntity->updated_by = $userModel->getFullName($pedidoEntity->user_updated_id);
+ $pedidoEntity->created_by = $userModel->getFullName($pedidoEntity->user_created_id);
+ $pedidoEntity->updated_by = $userModel->getFullName($pedidoEntity->user_updated_id);
$pedidoEntity->created_at_footer = $pedidoEntity->created_at ? date(' H:i d/m/Y', strtotime($pedidoEntity->created_at)) : '';
$pedidoEntity->updated_at_footer = $pedidoEntity->updated_at ? date(' H:i d/m/Y', strtotime($pedidoEntity->updated_at)) : '';
}
@@ -613,21 +620,36 @@ class Pedido extends \App\Controllers\BaseResourceController
// $xml_service = new PedidoXMLService($this->model);
return $this->respond($data);
}
-
+
public function to_produccion($pedido_id)
{
$serviceProduction = service('production');
$pedido = $this->model->find($pedido_id);
+ $cliente = $pedido->presupuesto()->cliente_id;
$serviceProduction->setPedido($pedido);
- if($pedido->orden_trabajo()){
- return $this->response->setJSON(["status"=>false,"data"=>$pedido->orden_trabajo(),"message" => "Ya existe una orden de trabajo para este pedido"]);
+ if ($pedido->orden_trabajo()) {
+ return $this->response->setJSON(["status" => false, "data" => $pedido->orden_trabajo(), "message" => "Ya existe una orden de trabajo para este pedido"]);
- }else{
+ } else {
$r = $serviceProduction->createOrdenTrabajo();
$this->model->set(['estado' => 'produccion'])->where('id', $pedido_id)->update();
- return $this->response->setJSON(["status"=>true, "data"=>$r,"message" => "Orden trabajo creada correctamente"]);
+ $clienteModel = model('App\Models\Clientes\ClienteModel');
+ $cliente = $clienteModel->find($cliente);
+ if ($cliente) {
+ if ($cliente->tirada_flexible == 1) {
+ $ejemplares_tirada_flexible = intval($pedido->total_tirada * 0.05);
+ $comentario = lang('OrdenTrabajo.tiradaFlexible', [
+ 'unidades' => $ejemplares_tirada_flexible
+ ]) . "\n" . trim($cliente->comentarios_tirada_flexible);
+
+ $serviceProduction->init($r->id)->updateOrdenTrabajoData([
+ 'name' => 'comment_logistica',
+ 'comment_logistica' => $comentario
+ ]);
+ }
+ }
+ return $this->response->setJSON(["status" => true, "data" => $r, "message" => "Orden trabajo creada correctamente"]);
}
}
}
-
\ No newline at end of file
diff --git a/ci4/app/Controllers/Presupuestos/Importadorpresupuestos.php b/ci4/app/Controllers/Presupuestos/Importadorpresupuestos.php
index 1974e6b8..5d78d9df 100755
--- a/ci4/app/Controllers/Presupuestos/Importadorpresupuestos.php
+++ b/ci4/app/Controllers/Presupuestos/Importadorpresupuestos.php
@@ -4,6 +4,7 @@ namespace App\Controllers\Presupuestos;
use App\Models\Presupuestos\ImportadorModel;
use App\Models\Clientes\ClienteModel;
+use App\Services\PresupuestoService;
use stdClass;
class Importadorpresupuestos extends \App\Controllers\BaseResourceController
@@ -484,6 +485,14 @@ class Importadorpresupuestos extends \App\Controllers\BaseResourceController
$isColor = true;
}
+ // se recalcula isColor y isHq
+ [$isColor, $isHq] = PresupuestoService::getCalidad(
+ 'admin',
+ null,
+ $isColor,
+ $isHq,
+ intval($this->request->getPost('tirada') ?? 0));
+
$tapaCubierta = model('App\Models\Configuracion\TipoPresupuestoModel')->
select("is_tapa_dura")->where('id', $tipo_presupuesto_id)->first();
$tapaCubierta = $tapaCubierta->is_tapa_dura == 0 ? "tapaBlanda" : "tapaDura";
diff --git a/ci4/app/Controllers/Presupuestos/Presupuestoadmin.php b/ci4/app/Controllers/Presupuestos/Presupuestoadmin.php
index 28e87c50..a69fad38 100755
--- a/ci4/app/Controllers/Presupuestos/Presupuestoadmin.php
+++ b/ci4/app/Controllers/Presupuestos/Presupuestoadmin.php
@@ -130,11 +130,10 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$POD = model('App\Models\Configuracion\ConfigVariableModel')->getVariable('POD')->value;
$ancho = 0;
$alto = 0;
- if(isset($sanitizedData['papel_formato_personalizado']) && $sanitizedData['papel_formato_personalizado'] == '1'){
+ if (isset($sanitizedData['papel_formato_personalizado']) && $sanitizedData['papel_formato_personalizado'] == '1') {
$ancho = $sanitizedData['papel_formato_ancho'];
$alto = $sanitizedData['papel_formato_alto'];
- }
- else{
+ } else {
$papelFormatoModel = new PapelFormatoModel();
$papelFormato = $papelFormatoModel->find($sanitizedData['papel_formato_id']);
$ancho = $papelFormato->ancho;
@@ -152,7 +151,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
]);
$model = new PresupuestoEncuadernacionesModel();
- foreach($servDefectoEnc as $servicio){
+ foreach ($servDefectoEnc as $servicio) {
$data = [
'presupuesto_id' => $id,
@@ -202,6 +201,8 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$this->viewData['pais_default_id'] = model('App\Models\Configuracion\ConfigVariableModel')->getVariable('id_pais_defecto')->value;
$this->viewData['pais_default'] = model('App\Models\Configuracion\PaisModel')->find($this->viewData['pais_default_id'])->nombre;
+ $this->viewData['no_envio_base'] = 0;
+
$this->viewData['formAction'] = route_to('createPresupuestoAdmin', $tipo_impresion_id);
$this->viewData = array_merge($this->viewData, $this->getStringsFromTipoImpresion($tipo_impresion_id));
@@ -236,12 +237,14 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$postData = $this->request->getPost();
$postData['updated_at'] = gmdate('Y-m-d H:m:s', time());
-
+
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
$sanitizedData['user_updated_id'] = auth()->user()->id;
- if(isset($sanitizedData['total_aceptado_revisado']) && $sanitizedData['total_aceptado_revisado'] != 0
- && $sanitizedData['total_aceptado_revisado'] != null && $sanitizedData['total_aceptado_revisado'] != ""){
+ if (
+ isset($sanitizedData['total_aceptado_revisado']) && $sanitizedData['total_aceptado_revisado'] != 0
+ && $sanitizedData['total_aceptado_revisado'] != null && $sanitizedData['total_aceptado_revisado'] != ""
+ ) {
$sanitizedData['aprobado_at'] = $sanitizedData['updated_at'];
$sanitizedData['aprobado_user_id'] = $sanitizedData['user_updated_id'];
}
@@ -367,9 +370,9 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
}
// modificar los datos del pedido y de la factura si no está la factura validada
- if ($presupuestoEntity->estado_id == 2){
+ if ($presupuestoEntity->estado_id == 2) {
$facturaModel = model('App\Models\Facturas\FacturaModel');
- if(!$facturaModel->presupuestoHasFacturaValidada($id)){
+ if (!$facturaModel->presupuestoHasFacturaValidada($id)) {
// se actualiza primero el pedido
$pedidoModel = model('App\Models\Pedidos\PedidoLineaModel');
$pedidoLineaId = $pedidoModel->where('presupuesto_id', $id)->first()->id;
@@ -434,6 +437,10 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$this->viewData['POD'] = $this->getPOD();
+ $this->viewData['no_envio_base'] = model('App\Models\Clientes\ClienteModel')->where('id', $presupuestoEntity->cliente_id)->first();
+ if ($this->viewData['no_envio_base'])
+ $this->viewData['no_envio_base'] = $this->viewData['no_envio_base']->no_envio_base;
+
$this->viewData['serviciosAutomaticos'] = [
'solapas_cubierta' => model('App\Models\Configuracion\ConfigVariableModel')->getVariable('servicio_solapas_cubierta')->value,
'solapas_sobrecubierta' => model('App\Models\Configuracion\ConfigVariableModel')->getVariable('servicio_solapas_sobrecubierta')->value,
@@ -459,11 +466,11 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$modelPedidoLinea = new \App\Models\Pedidos\PedidoLineaModel();
$linea = $modelPedidoLinea->where('presupuesto_id', $id)->first();
- if($linea){
+ if ($linea) {
$this->viewData['pedido_id'] = $linea->pedido_id;
$modelOrden = new \App\Models\OrdenTrabajo\OrdenTrabajoModel();
$orden = $modelOrden->where('pedido_id', $linea->pedido_id)->first();
- if($orden){
+ if ($orden) {
$this->viewData['orden_id'] = $orden->id;
}
}
@@ -633,7 +640,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$data['comparador']['json_data'] = json_decode($presupuesto->comparador_json_data, true);
if ($data['comparador']['json_data'] != null) {
foreach ($data['comparador']['json_data'] as &$item) {
- if(intval($item['papel_id'])>0)
+ if (intval($item['papel_id']) > 0)
$item['papel_nombre'] = $modelPapelGenerico->getNombre($item['papel_id'])['nombre'];
}
}
@@ -657,7 +664,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$data['comentarios_pdf'] = $presupuesto->comentarios_pdf;
$data['comentarios_presupuesto'] = $presupuesto->comentarios_presupuesto;
$data['comentarios_produccion'] = $presupuesto->comentarios_produccion;
-
+
$data['tiradasAlternativas'] = json_decode($presupuesto->tirada_alternativa_json_data);
@@ -688,9 +695,9 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$data['resumen']['total_factor_ponderado'] = is_numeric($presupuesto->total_factor_ponderado) ? $presupuesto->total_factor_ponderado : 0;
$data['total_aceptado_revisado'] = $presupuesto->total_aceptado_revisado;
- $data['aprobado_by_at'] = ($presupuesto->aprobado_user_id != null)?
- model('App\Models\Usuarios\UserModel')->getFullName($presupuesto->aprobado_user_id) . ', '
- . date('d/m/Y H:i:s', strtotime($presupuesto->aprobado_at)):'';
+ $data['aprobado_by_at'] = ($presupuesto->aprobado_user_id != null) ?
+ model('App\Models\Usuarios\UserModel')->getFullName($presupuesto->aprobado_user_id) . ', '
+ . date('d/m/Y H:i:s', strtotime($presupuesto->aprobado_at)) : '';
$data['resumen']['iva_reducido'] = $presupuesto->iva_reducido;
@@ -811,7 +818,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$paginas_color = $sobrecubierta['datosPedido']['paginas'] ?? 0;
$tipo_impresion_id = $sobrecubierta['tipo_impresion_id'];
$faja = intval($sobrecubierta['faja'] ?? 0);
- $uso = $faja==1? 'faja' : $sobrecubierta['uso'];
+ $uso = $faja == 1 ? 'faja' : $sobrecubierta['uso'];
$data = array(
@@ -1076,20 +1083,22 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
- if($calcular_merma == 1 && count($resourceData) > 0 &&
- count($resourceData[0]['fields']) >0 && $resourceData[0]['fields']['num_formas'] > 0) {
+ if (
+ $calcular_merma == 1 && count($resourceData) > 0 &&
+ count($resourceData[0]['fields']) > 0 && $resourceData[0]['fields']['num_formas'] > 0
+ ) {
usort($resourceData, function ($a, $b) {
return $b['fields']['total_impresion'] <=> $a['fields']['total_impresion'];
});
$num_formas = [];
- $formas_linea = $datosPedido->isCosido ? intval($resourceData[0]['fields']['num_formas']['value']) / 2 :
- intval($resourceData[0]['fields']['num_formas']['value']);
+ $formas_linea = $datosPedido->isCosido ? intval($resourceData[0]['fields']['num_formas']['value']) / 2 :
+ intval($resourceData[0]['fields']['num_formas']['value']);
array_push($num_formas, $formas_linea);
$POD = $this->getPOD();
- $datosPedido->merma = PresupuestoService::calcular_merma($datosPedido->tirada,$POD, $num_formas);
+ $datosPedido->merma = PresupuestoService::calcular_merma($datosPedido->tirada, $POD, $num_formas);
$resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
}
@@ -1126,20 +1135,22 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$resourceData = PresupuestoService::obtenerComparadorRotativa($input_data);
- if($calcular_merma == 1 && count($resourceData) > 0 &&
- count($resourceData[0]['fields']) >0 && $resourceData[0]['fields']['num_formas'] > 0) {
+ if (
+ $calcular_merma == 1 && count($resourceData) > 0 &&
+ count($resourceData[0]['fields']) > 0 && $resourceData[0]['fields']['num_formas'] > 0
+ ) {
usort($resourceData, function ($a, $b) {
return $b['fields']['total_impresion'] <=> $a['fields']['total_impresion'];
});
$num_formas = [];
- $formas_linea = $datosPedido->isCosido ? intval($resourceData[0]['fields']['num_formas']['value']) / 2 :
- intval($resourceData[0]['fields']['num_formas']['value']);
+ $formas_linea = $datosPedido->isCosido ? intval($resourceData[0]['fields']['num_formas']['value']) / 2 :
+ intval($resourceData[0]['fields']['num_formas']['value']);
array_push($num_formas, $formas_linea);
$POD = $this->getPOD();
- $datosPedido->merma = PresupuestoService::calcular_merma($datosPedido->tirada,$POD, $num_formas);
+ $datosPedido->merma = PresupuestoService::calcular_merma($datosPedido->tirada, $POD, $num_formas);
$resourceData = PresupuestoService::obtenerComparadorRotativa($input_data);
}
@@ -1209,7 +1220,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
return $this->respond($data);
} else if ($tipo == 'duplicar') {
$presupuesto_id = $reqData['presupuesto_id'] ?? -1;
- $result = $this->duplicarPresupuesto($presupuesto_id);
+ $result = PresupuestoService::duplicarPresupuesto($presupuesto_id);
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
if ($result['success']) {
@@ -1265,12 +1276,12 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$cubierta = false;
if ($uso == 'cubierta') {
$cubierta = true;
- $anchoLibro = 2* $ancho + 2 * $solapas + $lomo;
+ $anchoLibro = 2 * $ancho + 2 * $solapas + $lomo;
}
$sobrecubierta = false;
if ($uso == 'sobrecubierta') {
$sobrecubierta = true;
- $anchoLibro = 2* $ancho + 2 * $solapas + $lomo;
+ $anchoLibro = 2 * $ancho + 2 * $solapas + $lomo;
}
$guardas = false;
if ($uso == 'guardas') {
@@ -1294,7 +1305,8 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$isPOD,
$anchoLibro,
$alto,
- $tirada);
+ $tirada
+ );
if ($this->request->getGet("q")) {
$query->groupStart()
->orLike("t1.nombre", $this->request->getGet("q"))
@@ -1333,12 +1345,12 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$cubierta = false;
if ($uso == 'cubierta') {
$cubierta = true;
- $anchoLibro = 2* $ancho + 2 * $solapas + $lomo;
+ $anchoLibro = 2 * $ancho + 2 * $solapas + $lomo;
}
$sobrecubierta = false;
if ($uso == 'sobrecubierta') {
$sobrecubierta = true;
- $anchoLibro = 2* $ancho + 2 * $solapas + $lomo;
+ $anchoLibro = 2 * $ancho + 2 * $solapas + $lomo;
}
$guardas = false;
if ($uso == 'guardas') {
@@ -1350,7 +1362,8 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
}
$model = model('App\Models\Configuracion\PapelGenericoModel');
- $query = $model->getGramajeForComparador($tipo,
+ $query = $model->getGramajeForComparador(
+ $tipo,
$papel_generico_id,
$cubierta,
$sobrecubierta,
@@ -1360,7 +1373,8 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$isPOD,
$anchoLibro,
$alto,
- $tirada);
+ $tirada
+ );
if ($this->request->getGet("q")) {
$query->groupStart()
->orLike("t2.gramaje", $this->request->getGet("q"))
@@ -1593,81 +1607,6 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
}
- /**
- * Duplica un presupuesto dado por su ID.
- *
- * Esta función duplica un presupuesto y todas sus entidades relacionadas como acabados, encuadernaciones, manipulados,
- * preimpresiones, direcciones y lineas. El presupuesto duplicado se marca como tal y a su título se le añade
- * una cadena 'duplicado'. La función devuelve un array con un estado de éxito y el ID del nuevo presupuesto.
- *
- * @param int $id El ID del presupuesto a duplicar.
- * @return array Un array asociativo que contiene una clave 'success' que indica el estado de éxito de la operación,
- * y una clave 'id' que contiene el ID del nuevo presupuesto si la operación fue exitosa.
- * Si ocurre una excepción, la clave 'success' será false y una clave 'message' contendrá el mensaje de la excepción.
- * @throws \Exception Si ocurre un error durante la operación.
- */
- private function duplicarPresupuesto($id)
- {
-
- try {
-
- $presupuesto = $this->model->find($id);
- $presupuesto->titulo = $presupuesto->titulo . ' - ' . lang('Presupuestos.duplicado');
- $presupuesto->is_duplicado = 1;
- $presupuesto->estado_id = 1;
- $new_id = $this->model->insert($presupuesto);
-
- $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
- foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
- $acabado->presupuesto_id = $new_id;
- $presupuestoAcabadosModel->insert($acabado);
- }
-
- $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
- foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
- $encuadernacion->presupuesto_id = $new_id;
- $presupuestoEncuadernacionesModel->insert($encuadernacion);
- }
-
- $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
- foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
- $manipulado->presupuesto_id = $new_id;
- $presupuestoManipuladosModel->insert($manipulado);
- }
-
- $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
- foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
- $preimpresion->presupuesto_id = $new_id;
- $presupuestoPreimpresionesModel->insert($preimpresion);
- }
-
- $presupuestoServiciosExtraModel = model('App\Models\Presupuestos\PresupuestoServiciosExtraModel');
- foreach ($presupuestoServiciosExtraModel->where('presupuesto_id', $presupuesto->id)->findAll() as $servicioExtra) {
- $servicioExtra->presupuesto_id = $new_id;
- $presupuestoServiciosExtraModel->insert($servicioExtra);
- }
-
- $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
- foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
- $direccion->presupuesto_id = $new_id;
- $presupuestoDireccionesModel->insert($direccion);
- }
-
- $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
- $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
-
- return [
- 'success' => true,
- 'id' => $new_id
- ];
-
- } catch (\Exception $e) {
- return [
- 'success' => false,
- 'message' => $e->getMessage()
- ];
- }
- }
public function allItemsSelect()
{
@@ -1806,10 +1745,11 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$result = DataTable::of($q)
->edit(
'fecha',
- fn($q) => $q->fecha?Time::createFromFormat("Y-m-d H:i:s", $q->fecha)->format("d/m/Y"):""
+ fn($q) => $q->fecha ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha)->format("d/m/Y") : ""
)
->edit(
- 'estado', fn($q) => match ($q->estado) {
+ 'estado',
+ fn($q) => match ($q->estado) {
"1" => lang('Presupuestos.borrador'),
"2" => lang('Presupuestos.confirmado'),
default => '--'
@@ -1820,13 +1760,14 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
';
-
+
});
-
- return $result->toJson(returnAsObject: true) ;
+
+ return $result->toJson(returnAsObject: true);
}
- public function obtenerTotalPresupuestosCliente($cliente_id){
+ public function obtenerTotalPresupuestosCliente($cliente_id)
+ {
$error = false;
$result = [
@@ -1837,17 +1778,17 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
->where('presupuestos.cliente_id', $cliente_id)
->select('SUM(presupuestos.total_aceptado) as total')
->groupBy('presupuestos.cliente_id')->get()->getResultObject();
- if(count($data) > 0){
+ if (count($data) > 0) {
$result['total_impresion'] = round(floatval($data[0]->total), 2);
- }
- else{
+ } else {
$error = true;
}
$result['total'] = $result['total_impresion'] + $result['total_maquetacion'];
- return $this->respond(['status' => $error?'error':'success', 'totales' => $result]);
+ return $this->respond(['status' => $error ? 'error' : 'success', 'totales' => $result]);
}
- public function obtenerTotalPedidosCliente($cliente_id){
+ public function obtenerTotalPedidosCliente($cliente_id)
+ {
$error = false;
$result = [
@@ -1860,14 +1801,58 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
->join('pedidos_linea', 'pedidos_linea.pedido_id = pedidos.id')
->join('presupuestos', 'presupuestos.id = pedidos_linea.presupuesto_id')
->groupBy('presupuestos.cliente_id')->get()->getResultObject();
- if(count($data) > 0){
+ if (count($data) > 0) {
$result['total_impresion'] = round(floatval($data[0]->total), 2);
- }
- else{
+ } else {
$error = true;
}
$result['total'] = $result['total_impresion'] + $result['total_maquetacion'];
- return $this->respond(['status' => $error?'error':'success', 'totales' => $result]);
+ return $this->respond(['status' => $error ? 'error' : 'success', 'totales' => $result]);
+ }
+
+
+ public function hasFiles()
+ {
+
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getGet('id');
+ $presupuesto = $this->model->find($id);
+ if (!$presupuesto) {
+ return $this->respond([
+ 'status' => 'error',
+ 'message' => lang('Presupuestos.presupuestoNotFound'),
+ ]);
+ }
+
+ $files = $presupuesto->files() ?? [];
+ if (count($files) == 0) {
+ return $this->respond([
+ 'status' => 'success',
+ 'hasFiles' => false,
+ ]);
+ } else {
+ return $this->respond([
+ 'status' => 'success',
+ 'hasFiles' => true,
+ ]);
+ }
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
+ }
+
+ public function reprintPresupuesto()
+ {
+
+ if ($this->request->isAJAX()) {
+ $id = $this->request->getPost('id');
+ $duplicateFiles = $this->request->getPost('duplicateFiles') ?? false;
+ $response = PresupuestoService::duplicarPresupuesto($id, true, $duplicateFiles);
+ return $this->respond($response);
+
+ } else {
+ return $this->failUnauthorized('Invalid request', 403);
+ }
}
@@ -1897,7 +1882,7 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
$modelPapel = new PapelGenericoModel();
foreach ($lineas as $linea) {
$linea->papel_generico = (new PapelGenericoModel())->find($linea->papel_id)->nombre;
- if($linea->tipo == 'lp_faja'){
+ if ($linea->tipo == 'lp_faja') {
$linea->alto_faja = $presupuestoEntity->alto_faja_color;
}
}
@@ -1966,4 +1951,6 @@ class Presupuestoadmin extends \App\Controllers\BaseResourceController
return $direcciones;
}
+
+
}
diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
index 6c0babdc..99f809a6 100755
--- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
+++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
@@ -332,15 +332,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$cliente_model = model(('App\Models\Clientes\ClienteModel'));
$cliente = $cliente_model->find($cliente_id);
- // Para POD siempre es HQ
- if ($tirada[0] <= $POD && !$cliente->forzar_rotativa_pod) {
- $isHq = true;
- }
+
$forzarRotativa = false;
if ($tirada[0] <= $POD && $cliente->forzar_rotativa_pod) {
$forzarRotativa = true;
+ } else if ($tirada[0] <= $POD && !$cliente->forzar_rotativa_pod) {
+ $excluirRotativa = true;
}
+
$input_data = array(
'uso' => 'interior',
'tipo_impresion_id' => $tipo_impresion_id,
@@ -463,7 +463,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
//$reqData = $this->request->getPost();
$modelPapelGenerico = new PapelGenericoModel();
-
$id = $reqData['id'] ?? 0;
$cliente_id = $reqData['clienteId'] ?? -1;
@@ -760,13 +759,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$cliente_model = model(('App\Models\Clientes\ClienteModel'));
$cliente = $cliente_model->find($cliente_id);
- // Para POD siempre es HQ
- if ($tirada[0] <= $POD && !$cliente->forzar_rotativa_pod) {
- $isHq = true;
- }
+
$forzarRotativa = false;
if ($tirada[0] <= $POD && $cliente->forzar_rotativa_pod) {
$forzarRotativa = true;
+ } else if ($tirada[0] <= $POD && !$cliente->forzar_rotativa_pod) {
+ $excluirRotativa = true;
}
$input_data = array(
@@ -1340,7 +1338,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$datos_presupuesto['entrega_taller'] = $reqData['entrega_taller'] ?? 0;
- $resultado_presupuesto['info']['merma'] = PresupuestoService::calcular_merma($selected_tirada, $POD);
+ $resultado_presupuesto['info']['merma'] = isset($resultado_presupuesto['info']['num_formas']) ?
+ PresupuestoService::calcular_merma($selected_tirada, $POD, $resultado_presupuesto['info']['num_formas']) : PresupuestoService::calcular_merma($selected_tirada, $POD);
$datos_presupuesto['faja'] = $faja;
@@ -2079,13 +2078,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$cliente_model = model(('App\Models\Clientes\ClienteModel'));
$cliente = $cliente_model->find($cliente_id);
- // Para POD siempre es HQ
- if ($tirada[$t] <= $POD && !$cliente->forzar_rotativa_pod) {
- $isHq = true;
- }
+
$forzarRotativa = false;
if ($tirada[$t] <= $POD && $cliente->forzar_rotativa_pod) {
$forzarRotativa = true;
+ } else if ($tirada[0] <= $POD && !$cliente->forzar_rotativa_pod) {
+ $excluirRotativa = true;
}
$input_data = array(
@@ -2155,6 +2153,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$input_data['datosPedido']->merma = PresupuestoService::calcular_merma($tirada[$t], $POD, $num_formas);
if ($extra_info) {
$info['merma'] = max($info['merma'], $input_data['datosPedido']->merma);
+ $info['num_formas'] = $num_formas;
}
$interior = PresupuestoClienteService::obtenerInterior($input_data);
if ($interior == -1) {
@@ -2270,7 +2269,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
return $return_data;
}
- $cantidad_total = intval($datosPedido->tirada) + intval($datosPedido->merma);
+ $cantidad_total = intval($datosPedido->tirada);// + intval($datosPedido->merma);
// Acabado Cubierta
if (intval($datos_entrada['cubierta']['acabado']) != 0) {
@@ -3584,4 +3583,29 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
return $servicios;
}
+ public function download_zip()
+ {
+ $presupuesto_id = $this->request->getPost('presupuesto_id');
+ if (!$presupuesto_id) {
+ return $this->response->setStatusCode(400)->setBody('Presupuesto ID requerido');
+ }
+
+ $ftpClient = new \App\Libraries\SafekatFtpClient();
+ try {
+ $zipPath = $ftpClient->downloadZipPresupuesto((int) $presupuesto_id);
+
+ if ($zipPath === null || !file_exists($zipPath)) {
+ return $this->response->setStatusCode(404)->setBody('No se encontraron archivos');
+ }
+
+ return $this->response
+ ->download($zipPath, null) // null = usar nombre original del archivo
+ ->setFileName('archivos_presupuesto_' . $presupuesto_id . '.zip');
+ } catch (\Throwable $e) {
+ log_message('error', $e->getMessage());
+ return $this->response->setStatusCode(500)->setBody('Error interno');
+ }
+ }
+
+
}
diff --git a/ci4/app/Controllers/Produccion/Ordentrabajo.php b/ci4/app/Controllers/Produccion/Ordentrabajo.php
index 413bb991..fc0cea4d 100755
--- a/ci4/app/Controllers/Produccion/Ordentrabajo.php
+++ b/ci4/app/Controllers/Produccion/Ordentrabajo.php
@@ -5,11 +5,14 @@ namespace App\Controllers\Produccion;
use App\Controllers\BaseController;
use App\Models\Compras\ProveedorModel;
use App\Models\Configuracion\MaquinaModel;
+use App\Models\Configuracion\MaquinaOtTareaModel;
use App\Models\OrdenTrabajo\OrdenTrabajoModel;
use App\Models\OrdenTrabajo\OrdenTrabajoTarea;
use App\Models\OrdenTrabajo\OrdenTrabajoUser;
use App\Models\Presupuestos\PresupuestoModel;
use App\Models\Usuarios\UserModel;
+use App\Services\EtiquetasTitulosService;
+use App\Services\ImpresoraEtiquetaService;
use App\Services\ProductionService;
use CodeIgniter\Files\File;
use CodeIgniter\HTTP\RequestInterface;
@@ -21,6 +24,7 @@ use Exception;
use Hermawan\DataTables\DataTable;
use Psr\Log\LoggerInterface;
+
class Ordentrabajo extends BaseController
{
protected $format = 'json';
@@ -31,6 +35,7 @@ class Ordentrabajo extends BaseController
protected OrdenTrabajoTarea $otTarea;
protected ProveedorModel $proveedorModel;
protected MaquinaModel $maquinaModel;
+ protected MaquinaOtTareaModel $maquinaOtTareaModel;
protected UserModel $userModel;
protected Validation $validation;
protected static $viewPath = 'themes/vuexy/form/produccion/';
@@ -47,6 +52,7 @@ class Ordentrabajo extends BaseController
$this->produccionService = new ProductionService();
$this->otTarea = model(OrdenTrabajoTarea::class);
$this->maquinaModel = model(MaquinaModel::class);
+ $this->maquinaOtTareaModel = model(MaquinaOtTareaModel::class);
$this->proveedorModel = model(ProveedorModel::class);
$this->validation = service("validation");
helper("time");
@@ -110,6 +116,8 @@ class Ordentrabajo extends BaseController
$bodyData = $this->request->getPost();
$validated = $this->validation->run($bodyData, "orden_trabajo_tarea");
if ($validated) {
+ $tareaEntity = $this->otTarea->find($bodyData["orden_trabajo_tarea_id"]);
+ $this->produccionService->init($tareaEntity->orden_trabajo_id);
$r = $this->produccionService->updateOrdenTrabajoTarea($bodyData["orden_trabajo_tarea_id"], $bodyData);
$tareaEntity = $this->otTarea->find($bodyData["orden_trabajo_tarea_id"]);
return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => $r, "data" => $tareaEntity]);
@@ -141,7 +149,8 @@ class Ordentrabajo extends BaseController
return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
}
}
- public function update_presupuesto_tarea_proveedor(){
+ public function update_presupuesto_tarea_proveedor()
+ {
$bodyData = $this->request->getPost();
$validated = $this->validation->run($bodyData, "proveedor_tarea");
if ($validated) {
@@ -151,7 +160,6 @@ class Ordentrabajo extends BaseController
} else {
return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
}
-
}
public function reset_orden_trabajo_date()
{
@@ -161,6 +169,7 @@ class Ordentrabajo extends BaseController
if ($validated) {
$validatedData = $bodyData;
$r = $this->produccionService->emptyOrdenTrabajoDate($validatedData['orden_trabajo_id'], $validatedData['name']);
+ $this->produccionService->init($validatedData['orden_trabajo_id']); // Re-init service to update the state of the OT
return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => $r, "user" => auth()->user(), "data" => $bodyData]);
} else {
return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
@@ -216,8 +225,9 @@ class Ordentrabajo extends BaseController
$this->viewData["user_dates"] = $this->produccionService->userDates();
$this->viewData["pedido_user_dates"] = $this->produccionService->pedidoUserDates();
$this->viewData["colors"] = $this->produccionService->getPdfColors();
- $this->viewData["tiempo_estimado"] = $this->produccionService->getTiempoProcesamientoHHMM();
+ $this->viewData["tiempo_estimado"] = $this->produccionService->getTiempoProcesamientoHHMMSS();
$this->viewData["flags"] = $this->produccionService->getFlags();
+ $this->viewData["tareaCosido"] = $this->produccionService->getTareaCosido();
return view(static::$viewPath . $this->editRoute, $this->viewData);
@@ -236,13 +246,14 @@ class Ordentrabajo extends BaseController
fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
)
->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
->toJson(true);
}
public function datatable_pendientes()
{
$logo = config(LogoImpresion::class);
- $q = $this->otModel->getDatatableQuery()->whereIn("ordenes_trabajo.estado", ["I", "PM"]);
+ $q = $this->otModel->getDatatableQuery()->whereIn("ordenes_trabajo.estado", ["I", "PM"])->where('ordenes_trabajo.preimpresion_revisada', true);
// return $this->response->setJSON($q->get()->getResultArray());
return DataTable::of($q)
->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
@@ -251,13 +262,14 @@ class Ordentrabajo extends BaseController
fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
)
->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
->toJson(true);
}
public function datatable_ferro_pendiente()
{
$logo = config(LogoImpresion::class);
- $q = $this->otModel->getDatatableQuery()->where('presupuestos.ferro',1)->where("ferro_ok_at", null);
+ $q = $this->otModel->getDatatableQuery()->where('presupuestos.ferro', 1)->where("ferro_ok_at", null);
// return $this->response->setJSON($q->get()->getResultArray());
return DataTable::of($q)
->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
@@ -266,13 +278,14 @@ class Ordentrabajo extends BaseController
fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
)
->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
->toJson(true);
}
public function datatable_ferro_ok()
{
$logo = config(LogoImpresion::class);
- $q = $this->otModel->getDatatableQuery()->where('presupuestos.ferro',1)->where("ferro_ok_at is NOT NULL", NULL, FALSE);
+ $q = $this->otModel->getDatatableQuery()->where('presupuestos.ferro', 1)->where("ferro_ok_at is NOT NULL", NULL, FALSE);
// return $this->response->setJSON($q->get()->getResultArray());
return DataTable::of($q)
->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
@@ -281,6 +294,67 @@ class Ordentrabajo extends BaseController
fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
)
->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
+ ->toJson(true);
+ }
+ public function datatable_news()
+ {
+ $logo = config(LogoImpresion::class);
+
+ $q = $this->otModel->getDatatableQuery()->where('ordenes_trabajo.preimpresion_revisada', false);
+ return DataTable::of($q)
+ ->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
+ ->edit(
+ "fecha_encuadernado_at",
+ fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
+ )
+ ->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
+ ->toJson(true);
+ }
+ public function datatable_prod()
+ {
+ $logo = config(LogoImpresion::class);
+
+ $q = $this->otModel->getDatatableQuery()->where('ordenes_trabajo.preimpresion_revisada', true)->where('pedidos.estado', 'produccion');
+ return DataTable::of($q)
+ ->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
+ ->edit(
+ "fecha_encuadernado_at",
+ fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
+ )
+ ->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
+ ->toJson(true);
+ }
+ public function datatable_waiting()
+ {
+ $logo = config(LogoImpresion::class);
+
+ $q = $this->otModel->getDatatableQuery()->where('ordenes_trabajo.is_pedido_espera', 1);
+ return DataTable::of($q)
+ ->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
+ ->edit(
+ "fecha_encuadernado_at",
+ fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
+ )
+ ->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
+ ->toJson(true);
+ }
+ public function datatable_revision_com()
+ {
+ $logo = config(LogoImpresion::class);
+
+ $q = $this->otModel->getDatatableQuery()->where('presupuestos.ferro', 1)->where("ferro_ok_at is NOT NULL", NULL, FALSE);
+ return DataTable::of($q)
+ ->add("logo", fn($q) => ["logo" => site_url($logo->get_logo_path($q->presupuesto_linea_tipo)), "imposicion" => $q->imposicion_name, "color" => $this->produccionService->init($q->id)->getOtColorStatus()])
+ ->edit(
+ "fecha_encuadernado_at",
+ fn($q) => $q->fecha_encuadernado_at ? Time::createFromFormat("Y-m-d H:i:s", $q->fecha_encuadernado_at)->format("d/m/Y") : ""
+ )
+ ->add("action", fn($q) => $q->id)
+ ->add("pdf_check", fn($q) => $q->id)
->toJson(true);
}
public function papel_gramaje_datatable()
@@ -301,9 +375,23 @@ class Ordentrabajo extends BaseController
->add("action", fn($q) => ["title" => lang('Produccion.datatable.filter_by_paper'), 'data' => $q])
->toJson(true);
}
+ public function maquina_plana_datatable()
+ {
+ // return $this->response->setStatusCode(400);
+ $padreId = $this->request->getGet('padre_id');
+ $q = $this->produccionService->maquinaPlanaDatatableQuery();
+ if ($padreId) {
+ $q->where('lg_maquinas.padre_id', $padreId);
+ }
+ return DataTable::of($q)
+ ->edit("tiempoReal", fn($q) => $q->tiempoReal)
+ ->add("action", fn($q) => ["title" => lang('Produccion.datatable.filter_by_machine'), 'data' => $q])
+ ->toJson(true);
+ }
public function reset_tareas(int $orden_trabajo_id)
{
$r = $this->produccionService->init($orden_trabajo_id)->resetAllTareas();
+ $this->produccionService->init($orden_trabajo_id); // Re-init service to update the state of the OT
return $this->response->setJSON(["message" => "Tareas reseteadas", "status" => $r]);
}
public function delete_tarea(int $orden_trabajo_tarea_id)
@@ -318,8 +406,9 @@ class Ordentrabajo extends BaseController
return DataTable::of($q)
->add("action", fn($q) => $q)
->edit("orden", fn($q) => ["id" => $q->id, "orden" => $q->orden])
- ->edit("tiempo_estimado", fn($q) => float_seconds_to_hhmm_string($q->tiempo_estimado))
- ->edit("tiempo_real", fn($q) => float_seconds_to_hhmm_string($q->tiempo_real))
+ ->add("tarea_estado", fn($q) => $this->produccionService->getTitleTareaEstado($q->id))
+ ->edit("tiempo_estimado", fn($q) => float_seconds_to_hhmmss_string($q->tiempo_estimado))
+ ->edit("tiempo_real", fn($q) => float_seconds_to_hhmmss_string($q->tiempo_real))
->add("proveedor", fn($q) => $this->produccionService->getProveedorTarea($q->id))
->edit("maquina_tarea", fn($q) => ["id" => $q->id, "maquina_id" => $q->maquina_tarea, "maquina_name" => $q->maquina_nombre])
->add("imposicion", fn($q) => ["id" => $q->id, "imposicion_id" => $q->imposicion_id, "name" => $q->imposicion_name, "is_presupuesto_linea" => $q->presupuesto_linea_id ? true : false])
@@ -415,10 +504,7 @@ class Ordentrabajo extends BaseController
public function planning_plana_datatable()
{
$query = $this->produccionService->planningPlanaQueryDatatable();
- $padreId = $this->request->getGet('padre_id');
- if ($padreId) {
- $query->where('lg_maquinas.padre_id', $padreId);
- }
+
return DataTable::of($query)
->edit("tiempo_real_sum", fn($q) => $q->tiempo_real_sum)
->edit("fecha_entrega_real_at", fn($q) => $q->fecha_entrega_real_at ? Time::createFromFormat("Y-m-d", $q->fecha_entrega_real_at)->format("d/m/Y") : "")
@@ -441,7 +527,8 @@ class Ordentrabajo extends BaseController
public function select_maquina_planning_plana()
{
$q = $this->request->getGet('q');
- $result = $this->produccionService->querySelectMaquinaPlanningPlana($q);
+ $padreId = $this->request->getGet('padre_id');
+ $result = $this->produccionService->querySelectMaquinaPlanningPlana($q, $padreId);
return $this->response->setJSON($result);
}
public function select_maquina_padre_planning_plana()
@@ -453,7 +540,8 @@ class Ordentrabajo extends BaseController
public function select_papel_planning_plana()
{
$q = $this->request->getGet('q');
- $result = $this->produccionService->querySelectPapelPlanningPlana($q);
+ $maquinaId = $this->request->getGet('maquina_id');
+ $result = $this->produccionService->querySelectPapelPlanningPlana($q,$maquinaId);
return $this->response->setJSON($result);
}
public function tarea_toggle_corte($orden_trabajo_id)
@@ -544,23 +632,60 @@ class Ordentrabajo extends BaseController
['title' => $maquina->nombre, 'route' => route_to("viewProduccionMaquinistaMaquina", $maquina_id), 'active' => true],
];
$this->viewData["maquinaEntity"] = $maquina;
- return view(static::$viewPath . '/maquinista/viewMaquinistaMaquinaTareas', $this->viewData);
+ $tareasRunning = $this->maquinaOtTareaModel->queryDatatableJoinOrdenTrabajo($maquina->id)->countAllResults();
+ if ($tareasRunning) {
+ return view(static::$viewPath . '/maquinista/viewProduccionMaquinistaOtTareasView', $this->viewData);
+ } else {
+ return view(static::$viewPath . '/maquinista/viewMaquinistaMaquinaTareas', $this->viewData);
+ }
}
+ public function maquinista_maquina_tareas_fichaje_automatico(int $maquina_id)
+ {
+ $maquina = $this->maquinaModel->find($maquina_id);
+ $this->viewData["maquinaEntity"] = $maquina;
+ return view(static::$viewPath . '/maquinista/viewMaquinistaFichajeAutomatico', $this->viewData);
+ }
+ public function maquinista_maquina_tareas_scan(int $maquina_id)
+ {
+ $maquina = $this->maquinaModel->find($maquina_id);
+ $this->viewData["maquinaEntity"] = $maquina;
+ return view(static::$viewPath . '/maquinista/viewMaquinistaTareaScan', $this->viewData);
+ }
+
public function maquinista_maquina_tarea_view(int $orden_trabajo_tarea_id)
{
+ $modelImpresoras = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
+ $impresoras = $modelImpresoras->select('id, name')
+ ->where('deleted_at', null)
+ ->where('tipo', 1)
+ ->orderBy('name', 'asc')
+ ->findAll();
+ $impresoras = array_map(fn($impresora) => $impresora->toArray(), $impresoras);
$otTareaEntity = $this->otTarea->find($orden_trabajo_tarea_id);
$this->viewData['ot_tarea'] = $otTareaEntity;
$this->viewData['ot'] = $otTareaEntity->orden_trabajo();
$this->viewData['presupuesto'] = $this->viewData['ot']->presupuesto();
+
+ $this->viewData['impresoras'] = $impresoras;
$this->viewData['breadcrumb'] = [
['title' => lang("Produccion.maquinista.maquinas"), 'route' => route_to("viewProduccionMaquinistaMaquinas"), 'active' => false],
['title' => $otTareaEntity->maquina_actual()->nombre, 'route' => route_to("viewProduccionMaquinaTareasList", $otTareaEntity?->maquina_actual()?->id), 'active' => true],
['title' => $otTareaEntity->nombre, 'route' => route_to("viewProduccionMaquinistaTareaView", $otTareaEntity->id), 'active' => true]
];
-
return view(static::$viewPath . '/maquinista/viewMaquinistaMaquinaTarea', $this->viewData);
}
+ public function maquinista_maquina_ot_tareas_view(int $maquina_id)
+ {
+ $maquinaEntity = $this->maquinaModel->find($maquina_id);
+ $this->viewData['maquinaEntity'] = $maquinaEntity;
+ $tareasRunning = $this->maquinaOtTareaModel->queryDatatableJoinOrdenTrabajo($maquina_id)->countAllResults();
+ if ($tareasRunning) {
+ return view(static::$viewPath . '/maquinista/viewProduccionMaquinistaOtTareasView', $this->viewData);
+ } else {
+ return view(static::$viewPath . '/maquinista/viewMaquinistaMaquinaTareas', $this->viewData);
+ }
+ }
public function maquinista_colas_view()
{
return view(static::$viewPath . '/maquinista/viewMaquinistaPlanningList', $this->viewData);
@@ -573,6 +698,16 @@ class Ordentrabajo extends BaseController
}
return DataTable::of($pm)
->edit('fecha_impresion', fn($q) => $q->fecha_impresion ? Time::createFromFormat('Y-m-d H:i:s', $q->fecha_impresion)->format('d/m/Y') : '')
+ ->add("tareaEstado", fn($q) => $this->produccionService->getTitleTareaEstado($q->ot_tarea_id))
+ ->add('action', fn($q) => $this->produccionService->buttonActionDatatableTareaList($q->ot_tarea_id))
+ ->toJson(true);
+ }
+ public function maquinista_maquina_tareas_aplazada_datatable(int $maquina_id)
+ {
+ $pm = $this->produccionService->getMaquinaImpresionTareasList($maquina_id)->where("tarea_progress.estado", 'D');
+ return DataTable::of($pm)
+ ->edit('fecha_impresion', fn($q) => $q->fecha_impresion ? Time::createFromFormat('Y-m-d H:i:s', $q->fecha_impresion)->format('d/m/Y') : '')
+ ->add("tareaEstado", fn($q) => $this->produccionService->getTitleTareaEstado($q->ot_tarea_id))
->add('action', fn($q) => $this->produccionService->buttonActionDatatableTareaList($q->ot_tarea_id))
->toJson(true);
}
@@ -583,10 +718,16 @@ class Ordentrabajo extends BaseController
try {
$bodyData = $this->request->getPost();
$validated = $this->validation->run($bodyData, "orden_trabajo_tarea_progress_date");
- // return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "data" => $this->validation->getValidated(),"errors" => $this->validation->getErrors()]);
if ($validated) {
- $r = $this->produccionService->storeOrdenTrabajoTareaProgressDate($this->validation->getValidated());
- return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => $r, "data" => $bodyData]);
+ $validatedData = $this->validation->getValidated();
+ $r = $this->produccionService->storeOrdenTrabajoTareaProgressDate($validatedData);
+ $otTareaEntity = $this->otTarea->find($validatedData['ot_tarea_id']);
+ $data = [
+ "tiempo_trabajado" => float_seconds_to_hhmmss_string($otTareaEntity->tiempo_real),
+ "tarea" => $otTareaEntity,
+ "estado" => $validatedData['estado'],
+ ];
+ return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => $r, "data" => $data]);
} else {
return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
}
@@ -603,27 +744,248 @@ class Ordentrabajo extends BaseController
{
$otTareaEntity = $this->otTarea->find($orden_trabajo_tarea_id);
$data = [
- "tiempo_trabajado" => float_seconds_to_hhmm_string($otTareaEntity->tiempo_trabajado()),
+ "tiempo_trabajado" => float_seconds_to_hhmmss_string($otTareaEntity->tiempo_trabajado()),
"progress_dates" => $otTareaEntity->progress_dates(),
];
return $this->response->setJSON($data);
}
public function update_pod_pedido_dates($orden_trabajo_id)
{
-
+
$this->produccionService->init($orden_trabajo_id);
- if($this->produccionService->isPOD){
+ if ($this->produccionService->isPOD) {
$status = $this->produccionService->updatePodDates();
return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => $status, "data" => $this->produccionService->getPedido()]);
- }else{
+ } else {
return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => false, "data" => $this->produccionService->getPedido()]);
-
}
-
}
public function get_orden_trabajo_tareas_dates($orden_trabajo_id)
{
$data = $this->produccionService->init($orden_trabajo_id)->getOrdenTrabajoTareaDates();
- return $this->response->setJSON(["data" => $data ]);
+ return $this->response->setJSON(["data" => $data]);
+ }
+ public function get_tareas_ot_maquina(int $orden_trabajo_id, int $maquina_id)
+ {
+ $tareasWithMaquina = $this->produccionService->init($orden_trabajo_id)->getTareasWithMaquina($maquina_id, ['P', 'I', 'S', 'D']);
+ if ($tareasWithMaquina) {
+ $data = [
+ 'tareas' => $tareasWithMaquina,
+ 'ot' => $this->produccionService->getOrdenTrabajo(),
+ 'presupuesto' => $this->produccionService->getPresupuesto()
+ ];
+ return $this->response->setJSON(["message" => lang("App.global_alert_fetch_success"), "data" => $data]);
+ } else {
+ $tareasWithMaquina = $this->produccionService->init($orden_trabajo_id)->getTareasWithMaquina($maquina_id, ['F']);
+ if ($tareasWithMaquina) {
+ return $this->response->setJSON(["message" => lang("Produccion.errors.tareas_finalizadas"), "data" => $tareasWithMaquina])->setStatusCode(400);
+ } else {
+ return $this->response->setJSON(["message" => lang("Produccion.errors.maquina_not_in_ot"), "data" => null])->setStatusCode(400);
+ }
+ }
+ }
+
+ public function update_orden_trabajo_fa_tareas()
+ {
+ $responseData = [
+ "tiempo_total_estimado" => 0,
+ "tiempo_total_real" => 0,
+ "clicks_total" => 0,
+ "tirada_total" => 0,
+ "estado" => "P",
+ ];
+ $bodyData = $this->request->getPost();
+ $validated = $this->validation->run($bodyData, "orden_trabajo_fichaje_auto");
+ if ($validated) {
+ $validatedData = $this->validation->getValidated();
+ $this->produccionService->init($validatedData['orden_trabajo_id']);
+ foreach ($validatedData['tareas'] as $key => $tareaId) {
+ $this->produccionService->storeOrdenTrabajoTareaProgressDate(
+ [
+ 'estado' => $validatedData['estado'],
+ 'ot_tarea_id' => $tareaId
+ ]
+ );
+ $tareaEntity = $this->otTarea->find($tareaId);
+ $tiempo_trabajado = $tareaEntity->tiempo_trabajado();
+ $responseData['tiempo_total_estimado'] += $tareaEntity->tiempo_estimado;
+ $responseData['tiempo_total_real'] += $tiempo_trabajado;
+ $responseData["estado"] = $validatedData["estado"];
+ $tareaEntity->tiempo_real = $tiempo_trabajado / count($validatedData['tareas']);
+ $tareaEntity->click_init = $validatedData['click_init'] / count($validatedData['tareas']);
+ $tareaEntity->click_end = $validatedData['click_end'] / count($validatedData['tareas']);
+
+ $this->otTarea->save($tareaEntity);
+ }
+ $responseData['tiempo_total_estimado'] = float_seconds_to_hhmmss_string($responseData['tiempo_total_estimado']);
+ $responseData['tiempo_total_real'] = float_seconds_to_hhmmss_string($responseData['tiempo_total_real']);
+ return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => true, "data" => $responseData]);
+ } else {
+ return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
+ }
+ }
+ public function delete_orden_trabajo_fa_tareas()
+ {
+ $bodyData = $this->request->getPost();
+ $validated = $this->validation->run($bodyData, "orden_trabajo_fichaje_auto");
+ if ($validated) {
+ $validatedData = $this->validation->getValidated();
+ $this->produccionService->init($validatedData['orden_trabajo_id']);
+ foreach ($validatedData['tareas'] as $key => $tareaId) {
+ $this->produccionService->deleteOrdenTrabajoTareaProgressDates($tareaId);
+ }
+ return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => true, "data" => $validatedData]);
+ } else {
+ return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
+ }
+ }
+ public function store_maquina_ordenes_trabajo()
+ {
+ $bodyData = $this->request->getPost();
+ $validated = $this->validation->run($bodyData, "maquina_ordenes_trabajo");
+ if ($validated) {
+ $validatedData = $this->validation->getValidated();
+
+ foreach ($validatedData['ordenes_trabajo'] as $key => $orden_trabajo_id) {
+ $maquinaOtTarea = $this->maquinaOtTareaModel->where('orden_trabajo_id', $orden_trabajo_id)->where('maquina_id', $validatedData['maquina_id'])->where('deleted_at', null)->countAllResults();
+ if ($maquinaOtTarea) {
+ continue;
+ }
+ $this->maquinaOtTareaModel->insert(['maquina_id' => $validatedData['maquina_id'], 'orden_trabajo_id' => $orden_trabajo_id]);
+ }
+ return $this->response->setJSON(["message" => lang("App.global_alert_save_success"), "status" => true, "data" => $validatedData]);
+ } else {
+ return $this->response->setJSON(["errors" => $this->validation->getErrors()])->setStatusCode(400);
+ }
+ }
+ public function update_maquina_ordenes_trabajo_estado()
+ {
+ $bodyData = $this->request->getPost();
+ $maquina_id = $bodyData['maquina_id'];
+ $estado = $bodyData['estado'];
+ $maquina_ots = $this->maquinaOtTareaModel->where('maquina_id', $maquina_id)->findAll();
+ $totalTareas = [];
+
+ foreach ($maquina_ots as $key => $maquina_ot) {
+ $tareas = $this->produccionService->init($maquina_ot->orden_trabajo_id)
+ ->getTareasWithMaquina($maquina_id, ['P', 'I', 'S', 'D']);
+ foreach ($tareas as $key => $tarea) {
+ $this->produccionService->storeOrdenTrabajoTareaProgressDate(
+ [
+ 'estado' => $estado,
+ 'ot_tarea_id' => $tarea->id
+ ]
+ );
+ $tarea->click_init = $bodyData['click_init'];
+ $tarea->click_end = $bodyData['click_end'];
+ $totalTareas[] = $tarea;
+ }
+ }
+ foreach ($totalTareas as $key => $tarea) {
+ $tiempo_trabajado = $tarea->tiempo_trabajado();
+ $tarea->tiempo_real = $tiempo_trabajado / count($totalTareas);
+ $tarea->click_init = $tarea->click_init / count($totalTareas);
+ $tarea->click_end = $tarea->click_end / count($totalTareas);
+
+ $this->otTarea->save($tarea);
+ }
+ if ($estado == "F") {
+ $this->maquinaOtTareaModel->where('maquina_id', $maquina_id)->delete();
+ }
+
+ return $this->response->setJSON(["message" => lang("Produccion.responses.update_maquina_ordenes_trabajo_estado")]);
+ }
+ public function delete_maquina_orden_trabajo_tarea($maquina_orden_trabajo_tarea_id)
+ {
+
+ $status = $this->maquinaOtTareaModel->delete($maquina_orden_trabajo_tarea_id);
+ return $this->response->setJSON(["message" => lang("App.user_alert_delete"), "status" => $status]);
+ }
+ public function delete_maquina_orden_trabajo_all($maquina_id)
+ {
+ $maquina_ots = $this->maquinaOtTareaModel->where('maquina_id', $maquina_id)->findAll();
+ foreach ($maquina_ots as $key => $maquina_ot) {
+ $tareas = $this->produccionService->init($maquina_ot->orden_trabajo_id)
+ ->getTareasWithMaquina($maquina_id, ['P', 'I', 'S', 'D']);
+ foreach ($tareas as $key => $tarea) {
+ $this->produccionService->deleteOrdenTrabajoTareaProgressDates($tarea->id);
+ }
+ }
+ $status = $this->maquinaOtTareaModel->where('maquina_id', $maquina_id)->delete();
+ return $this->response->setJSON(["message" => lang("App.user_alert_delete"), "status" => $status]);
+ }
+
+ public function datatable_maquina_ordenes_trabajo($maquina_id)
+ {
+ $query = $this->maquinaOtTareaModel->queryDatatableJoinOrdenTrabajo($maquina_id);
+ return DataTable::of($query)
+ ->add('action', fn($q) => $q->otId)
+ ->add('titulo', fn($q) => $this->otModel->find($q->otId)->presupuesto()->titulo)
+ ->add('barcode', fn($q) => $this->otModel->find($q->otId)->getBarCode())
+ ->toJson(true);
+ }
+ public function get_maquina_ots($maquina_id)
+ {
+ $responseData = [
+ "tiempo_total_estimado" => 0,
+ "tiempo_total_real" => 0,
+ "clicks_total" => 0,
+ "tirada_total" => 0,
+ "estado" => "P",
+ ];
+ $maquina_ots = $this->maquinaOtTareaModel->where('maquina_id', $maquina_id)->findAll();
+ foreach ($maquina_ots as $key => $maquina_ot) {
+ $tareas = $this->produccionService->init($maquina_ot->orden_trabajo_id)
+ ->getTareasWithMaquina($maquina_id, ['P', 'I', 'S', 'D']);
+ foreach ($tareas as $key => $tarea) {
+ $responseData['tiempo_total_estimado'] += $tarea->tiempo_estimado;
+ $responseData['tiempo_total_real'] += $tarea->tiempo_real;
+ $responseData["estado"] = $tarea->lastState()->estado;
+ if ($tarea->presupuesto_linea_id) {
+ $responseData["clicks_total"] += $tarea->presupuesto_linea()->rotativa_clicks_total;
+ $responseData["tirada_total"] += $tarea->orden_trabajo()->presupuesto()->tirada;
+ }
+ }
+ }
+ $responseData['tiempo_total_estimado'] = float_seconds_to_hhmmss_string($responseData['tiempo_total_estimado']);
+ $responseData['tiempo_total_real'] = float_seconds_to_hhmmss_string($responseData['tiempo_total_real']);
+ return $this->response->setJSON($responseData);
+ }
+
+ public function printPackagingLabels()
+ {
+
+ $ot_id = $this->request->getPost('ot_id') ?? null;
+ $unidades_caja = $this->request->getPost('unidades_caja') ?? null;
+ $impresora_id = $this->request->getPost('impresora_id') ?? null;
+
+ if ($ot_id == null || $impresora_id == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.errorMissingData')
+ ];
+ }
+
+ $modelImpresora = model('App\Models\Configuracion\ImpresoraEtiquetaModel');
+ $impresora = $modelImpresora->select('id, name, description, ip, port, user, pass')
+ ->where('deleted_at', null)
+ ->where('id', $impresora_id)
+ ->orderBy('name', 'asc')
+ ->first();
+ if ($impresora == null) {
+ return $this->response->setJSON([
+ 'status' => false,
+ 'message' => 'Impresora no válida'
+ ]);
+ }
+
+ $printerService = new ImpresoraEtiquetaService();
+ $result = $printerService->generateEtiquetasEmbalaje($ot_id, $unidades_caja, $impresora);
+
+ return $this->response->setJSON($result);
+ }
+ public function get_ot_pdf_content($orden_trabajo_id)
+ {
+ return $this->produccionService->init($orden_trabajo_id)->getPdfContent();
}
}
diff --git a/ci4/app/Controllers/Scripts/UsersIntegrity.php b/ci4/app/Controllers/Scripts/UsersIntegrity.php
new file mode 100644
index 00000000..5b7aa986
--- /dev/null
+++ b/ci4/app/Controllers/Scripts/UsersIntegrity.php
@@ -0,0 +1,76 @@
+where('deleted_at', null)
+ //->like('username', '@safekat.com')
+ ->findAll();
+
+ $resultados = [];
+
+ foreach ($usuarios as $usuario) {
+ $email = $usuario->username . "@safekat.com";
+
+ // 1. Verificar si el usuario ya tiene identidad tipo email_password
+ $tieneIdentidad = array_filter(
+ $usuario->getIdentities(),
+ fn($identity) => $identity->type === 'email_password'
+ );
+
+ if (!empty($tieneIdentidad)) {
+ $resultados[] = "✅ Ya tiene identidad: {$email}";
+ continue;
+ }
+
+ // 2. Verificar si ya existe una identidad globalmente con ese email
+ $db = db_connect();
+
+ $builder = $db->table('auth_identities');
+
+ $existeGlobal = $builder
+ ->where('type', 'email_password')
+ ->where('secret', $email)
+ ->get()
+ ->getFirstRow();
+
+ if ($existeGlobal) {
+ $resultados[] = "⚠️ Email ya registrado en otra identidad: {$email}";
+ continue;
+ }
+
+ // 3. Crear y guardar identidad
+ try {
+ $identity = $usuario->createEmailIdentity([
+ 'email' => $email,
+ 'password' => 'Temporal123!', // reemplazar por valor real si lo tenés
+ ]);
+
+ //$userModel->saveEmailIdentity($identity);
+
+ $resultados[] = "➕ Identidad creada: {$email}";
+ } catch (\Throwable $e) {
+ $resultados[] = "❌ Error con {$email}: " . $e->getMessage();
+ }
+ }
+
+ return $this->response->setJSON([
+ 'status' => 'completado',
+ 'procesados' => count($usuarios),
+ 'resultados' => $resultados,
+ ]);
+ }
+}
diff --git a/ci4/app/Controllers/Soporte/Ticketcontroller.php b/ci4/app/Controllers/Soporte/Ticketcontroller.php
index 527c83f9..33d0c28f 100755
--- a/ci4/app/Controllers/Soporte/Ticketcontroller.php
+++ b/ci4/app/Controllers/Soporte/Ticketcontroller.php
@@ -153,7 +153,10 @@ class Ticketcontroller extends \App\Controllers\BaseResourceController
return $this->redirect2listView();
endif;
$id = filter_var($requestedId, FILTER_SANITIZE_URL);
- $ticket = $this->model->find($id);
+ $ticket = $this->model->select("tickets.*, CONCAT(users.first_name, ' ',users.last_name) as usuario_ticket")
+ ->join('users', 'users.id = tickets.usuario_id', 'left')
+ ->where('tickets.id', $id)->first();
+
if ($ticket == false):
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Tickets.ticket')), $id]);
@@ -275,7 +278,7 @@ class Ticketcontroller extends \App\Controllers\BaseResourceController
$searchValues = get_filter_datatables_columns($reqData);
- if (auth()->user()->can('tickets.edit')) {
+ if (auth()->user()->can('tickets.edit') && auth()->user()->inGroup('admin')) {
$user_id = null;
} else {
$user_id = auth()->user()->id;
diff --git a/ci4/app/Controllers/Test.php b/ci4/app/Controllers/Test.php
index 09357adb..345a47e9 100755
--- a/ci4/app/Controllers/Test.php
+++ b/ci4/app/Controllers/Test.php
@@ -12,7 +12,6 @@ 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\Services\PresupuestoService;
use CodeIgniter\Shield\Entities\User;
@@ -32,28 +31,7 @@ class Test extends BaseController
public function index()
{
-
-
- $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();
-
- // Obtener todos los registros sin isk
- $registros = $modelCL->where('isk', null)->findAll();
-
- $i = 0;
- foreach ($registros as $registro) {
- $isk = $modelISK->newIsk();
-
- $modelCL->update($registro->id, ['isk' => $isk]);
-
- echo "[" . $i++ . "]Asignado ISK {$isk} a ID {$registro->id} ";
- }*/
+
}
diff --git a/ci4/app/Database/Migrations/2025-05-02_202300_AlterOrdenesTrabajoRevisionPreimpresionCheck.php b/ci4/app/Database/Migrations/2025-05-02_202300_AlterOrdenesTrabajoRevisionPreimpresionCheck.php
new file mode 100755
index 00000000..a7078c6f
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-02_202300_AlterOrdenesTrabajoRevisionPreimpresionCheck.php
@@ -0,0 +1,33 @@
+ [
+ 'type' => 'BOOL',
+ 'default' => false
+ ],
+ 'preimpresion_revisada_by' => [
+ 'type' => 'INT',
+ 'unsigned' => true,
+ 'constraint' => 11,
+ ],
+ ];
+ public function up()
+ {
+
+ $this->forge->addColumn('ordenes_trabajo',$this->COLUMNS);
+ $this->forge->addForeignKey('preimpresion_revisada_by','users','id','NULL','NULL');
+ $this->forge->processIndexes('ordenes_trabajo');
+ }
+
+ public function down()
+ {
+ $this->forge->dropForeignKey('ordenes_trabajo','ordenes_trabajo_preimpresion_revisada_by_foreign');
+ $this->forge->dropColumn('ordenes_trabajo',array_keys($this->COLUMNS));
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-03-094500_CreateEtiquetasTitulos.php b/ci4/app/Database/Migrations/2025-05-03-094500_CreateEtiquetasTitulos.php
new file mode 100644
index 00000000..18baa8a8
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-03-094500_CreateEtiquetasTitulos.php
@@ -0,0 +1,60 @@
+forge->addField([
+ 'id' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true],
+ 'comentarios' => ['type' => 'TEXT', 'null' => true],
+ 'direccion' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => false],
+ 'att' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => false],
+ 'cliente_id' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ 'created_at' => ['type' => 'DATETIME', 'null' => true],
+ 'updated_at' => ['type' => 'DATETIME', 'null' => true],
+ 'deleted_at' => ['type' => 'DATETIME', 'null' => true],
+ 'user_created_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ 'user_updated_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ 'user_deleted_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ ]);
+ $this->forge->addKey('id', true);
+ $this->forge->addForeignKey('user_created_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->addForeignKey('user_updated_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->addForeignKey('user_deleted_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->addForeignKey('cliente_id', 'clientes', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->createTable('etiquetas_titulos');
+
+ // Tabla: etiquetas_titulos_lineas
+ $this->forge->addField([
+ 'id' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true],
+ 'etiqueta_titulos_id' => ['type' => 'INT', 'unsigned' => true],
+ 'ot_id' => ['type' => 'INT', 'unsigned' => true],
+ 'unidades' => ['type' => 'INT', 'unsigned' => true],
+ 'numero_caja' => ['type' => 'INT', 'unsigned' => true],
+ 'created_at' => ['type' => 'DATETIME', 'null' => true],
+ 'updated_at' => ['type' => 'DATETIME', 'null' => true],
+ 'deleted_at' => ['type' => 'DATETIME', 'null' => true],
+ 'user_created_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ 'user_updated_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ 'user_deleted_at' => ['type' => 'INT', 'unsigned' => true, 'null' => true],
+ ]);
+ $this->forge->addKey('id', true);
+ $this->forge->addForeignKey('etiqueta_titulos_id', 'etiquetas_titulos', 'id', 'CASCADE', 'CASCADE');
+ $this->forge->addForeignKey('ot_id', 'ordenes_trabajo', 'id', 'CASCADE', 'CASCADE');
+ $this->forge->addForeignKey('user_created_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->addForeignKey('user_updated_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->addForeignKey('user_deleted_at', 'users', 'id', 'SET NULL', 'CASCADE');
+ $this->forge->createTable('etiquetas_titulos_lineas');
+ }
+
+ public function down()
+ {
+ $this->forge->dropTable('etiquetas_titulos_lineas', true);
+ $this->forge->dropTable('etiquetas_titulos', true);
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-04-172900_MaquinaOtTareasTable.php b/ci4/app/Database/Migrations/2025-05-04-172900_MaquinaOtTareasTable.php
new file mode 100755
index 00000000..47a6fc4f
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-04-172900_MaquinaOtTareasTable.php
@@ -0,0 +1,58 @@
+ [
+ 'type' => 'INT',
+ 'unsigned' => true,
+ 'auto_increment' => true,
+ ],
+ 'maquina_id' => [
+ 'type' => 'INT',
+ 'unsigned' => true,
+ 'constraint' => 11
+ ],
+ 'orden_trabajo_id' => [
+ 'type' => 'INT',
+ 'unsigned' => true,
+ ],
+
+ ];
+
+ public function up()
+ {
+ $this->forge->addField($this->COLUMNS);
+ $currenttime = new RawSql('CURRENT_TIMESTAMP');
+ $this->forge->addField([
+ 'created_at' => [
+ 'type' => 'TIMESTAMP',
+ 'default' => $currenttime,
+ ],
+ 'updated_at' => [
+ 'type' => 'TIMESTAMP',
+ 'null' => true,
+ ],
+ 'deleted_at' => [
+ 'type' => 'TIMESTAMP',
+ 'null' => true,
+
+ ],
+ ]);
+ $this->forge->addPrimaryKey('id');
+ $this->forge->addForeignKey('maquina_id','lg_maquinas','id','CASCADE','CASCADE','maquina_ot_tareas_maquina_id_fk');
+ $this->forge->addForeignKey('orden_trabajo_id','ordenes_trabajo','id','CASCADE','CASCADE','maquina_ot_tareas_ot_id_fk');
+ $this->forge->createTable("maquina_ot_tareas");
+ }
+
+ public function down()
+ {
+ $this->forge->dropTable("maquina_ot_tareas");
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-05-080900_AddEtiquetaEnvioCheckLgMaquinasTable.php b/ci4/app/Database/Migrations/2025-05-05-080900_AddEtiquetaEnvioCheckLgMaquinasTable.php
new file mode 100755
index 00000000..1f25bcc7
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-05-080900_AddEtiquetaEnvioCheckLgMaquinasTable.php
@@ -0,0 +1,25 @@
+ [
+ 'type' => 'BOOL',
+ 'default' => false
+ ],
+ ];
+ public function up()
+ {
+
+ $this->forge->addColumn('lg_maquinas',$this->COLUMNS);
+ }
+
+ public function down()
+ {
+ $this->forge->dropColumn('lg_maquinas',array_keys($this->COLUMNS));
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-08-190000_CreateSelectorCalidadImpresion.php b/ci4/app/Database/Migrations/2025-05-08-190000_CreateSelectorCalidadImpresion.php
new file mode 100755
index 00000000..ab484ab4
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-08-190000_CreateSelectorCalidadImpresion.php
@@ -0,0 +1,76 @@
+forge->addField([
+ 'id' => [
+ 'type' => 'INT',
+ 'constraint' => 11,
+ 'unsigned' => true,
+ 'auto_increment' => true,
+ ],
+ 'alias' => [
+ 'type' => 'VARCHAR',
+ 'constraint' => 255,
+ ],
+ 'cliente_id' => [
+ 'type' => 'INT',
+ 'constraint' => 10,
+ 'unsigned' => true,
+ 'null' => true,
+ ],
+ 'isPod' => [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ ],
+ 'input_isColor' => [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ ],
+ 'input_isHq' => [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ ],
+ 'output_isColor' => [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ ],
+ 'output_isHq' => [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ ],
+ 'created_at' => [
+ 'type' => 'DATETIME',
+ 'null' => true,
+ ],
+ 'updated_at' => [
+ 'type' => 'DATETIME',
+ 'null' => true,
+ ],
+ 'deleted_at' => [
+ 'type' => 'DATETIME',
+ 'null' => true,
+ ],
+ ]);
+
+ $this->forge->addKey('id', true);
+ $this->forge->addForeignKey('cliente_id', 'clientes', 'id', 'CASCADE', 'SET NULL');
+ $this->forge->createTable('selector_calidad_impresion');
+ }
+
+ public function down()
+ {
+ $this->forge->dropTable('selector_calidad_impresion');
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-19-204800_AddAliasOtColumnMaquinasTable.php b/ci4/app/Database/Migrations/2025-05-19-204800_AddAliasOtColumnMaquinasTable.php
new file mode 100644
index 00000000..0d5f03ca
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-19-204800_AddAliasOtColumnMaquinasTable.php
@@ -0,0 +1,26 @@
+ [
+ "type" => "VARCHAR",
+ "constraint" => 255,
+ "null" => true
+ ],
+ ];
+ public function up()
+ {
+ $this->forge->addColumn('lg_maquinas', $this->COLUMNS);
+ }
+
+ public function down()
+ {
+ $this->forge->dropColumn('lg_maquinas', array_keys($this->COLUMNS));
+ }
+}
diff --git a/ci4/app/Database/Migrations/2025-05-26-204800_ModifyAlbaranes.php b/ci4/app/Database/Migrations/2025-05-26-204800_ModifyAlbaranes.php
new file mode 100644
index 00000000..9f5d43cf
--- /dev/null
+++ b/ci4/app/Database/Migrations/2025-05-26-204800_ModifyAlbaranes.php
@@ -0,0 +1,31 @@
+forge->addColumn('albaranes_lineas', [
+ 'cajas' => [
+ 'type' => 'INT',
+ 'constraint' => 11,
+ 'null' => true,
+ ],
+ 'unidades_cajas' => [
+ 'type' => 'INT',
+ 'constraint' => 11,
+ 'null' => true,
+ ]
+ ]);
+ }
+
+ public function down()
+ {
+ $this->forge->dropColumn('albaranes_lineas', ['cajas', 'unidades_cajas']);
+ }
+}
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/Database/Seeds/DefaultConfigVariablesSeeder.php b/ci4/app/Database/Seeds/DefaultConfigVariablesSeeder.php
index 32b94966..a0ee4e15 100755
--- a/ci4/app/Database/Seeds/DefaultConfigVariablesSeeder.php
+++ b/ci4/app/Database/Seeds/DefaultConfigVariablesSeeder.php
@@ -23,15 +23,41 @@ class DefaultConfigVariablesSeeder extends Seeder
"value" => 6000,
"description" => "Número de libros máximos que se puede producir al día"
],
+ [
+ "name" => "maquina_guillotina_id_default",
+ "value" => 20,
+ "description" => "ID de máquina que se asigna a tareas de corte tras impresión"
+ ],
+ [
+ "name" => "maquina_guillotina_prep_id_default",
+ "value" => 31,
+ "description" => "ID de máquina que se asigna a tareas de corte tras impresión"
+ ],
+ [
+ "name" => "maquina_tecnau_id",
+ "value" => 54,
+ "description" => "ID de máquina que se asigna a tareas de corte TECNAU"
+ ],
+ [
+ "name" => "maquina_hunkeler_id",
+ "value" => 151,
+ "description" => "ID de máquina que se asigna a tareas de corte HUNKELER"
+ ],
+ [
+ "name" => "maquina_trimming_id",
+ "value" => 149,
+ "description" => "ID de máquina que se asigna a tareas de corte HUNKELER"
+ ],
+
];
public function run()
{
-
+
$variableModel = model(ConfigVariableModel::class);
foreach ($this->data as $row) {
- if($variableModel->where("name",$row["name"])->first() == null){
+ if ($variableModel->where("name", $row["name"])->first() == null) {
$variableModel->insert($row);
}
}
}
-}
\ No newline at end of file
+}
diff --git a/ci4/app/Database/Seeds/MaquinaAliasOtSeeder.php b/ci4/app/Database/Seeds/MaquinaAliasOtSeeder.php
new file mode 100644
index 00000000..3bc58523
--- /dev/null
+++ b/ci4/app/Database/Seeds/MaquinaAliasOtSeeder.php
@@ -0,0 +1,40 @@
+ "6136p",
+ "alias" => "6136p"
+ ],
+ [
+ "value" => "c6100",
+ "alias" => "c6100"
+ ],
+ [
+ "value" => "2250p",
+ "alias" => "2250p"
+ ],
+ [
+ "value" => "C14 000",
+ "alias" => "C14 000"
+ ],
+ [
+ "value" => "IX",
+ "alias" => "IX"
+ ]
+
+ ];
+ foreach ($data as $key => $row) {
+ $m->like('nombre', $row['value'])->set(['alias_ot' => $row['alias']])->update();
+ }
+ }
+}
diff --git a/ci4/app/Database/Seeds/SelectorCalidadImpresionSeeder.php b/ci4/app/Database/Seeds/SelectorCalidadImpresionSeeder.php
new file mode 100644
index 00000000..e647115b
--- /dev/null
+++ b/ci4/app/Database/Seeds/SelectorCalidadImpresionSeeder.php
@@ -0,0 +1,55 @@
+ 'admin', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 1],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 1],
+ ['alias' => 'admin', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+
+ // cliente
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 1],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 1],
+ ['alias' => 'cliente', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+
+ // importador-rama
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-rama', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 0],
+
+ // importador-bubok
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 0, 'output_isHq' => 0],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 0, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 0, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 0, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 0, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+ ['alias' => 'importador-bubok', 'cliente_id' => null, 'isPod' => 1, 'input_isColor' => 1, 'input_isHq' => 1, 'output_isColor' => 1, 'output_isHq' => 1],
+ ];
+
+ $this->db->table('selector_calidad_impresion')->insertBatch($registros);
+ }
+}
diff --git a/ci4/app/Entities/Albaranes/AlbaranEntity.php b/ci4/app/Entities/Albaranes/AlbaranEntity.php
index b5928c10..f978e983 100755
--- a/ci4/app/Entities/Albaranes/AlbaranEntity.php
+++ b/ci4/app/Entities/Albaranes/AlbaranEntity.php
@@ -21,6 +21,7 @@ class AlbaranEntity extends \CodeIgniter\Entity\Entity
'updated_at' => null,
'deleted_at' => null,
'cajas' => null,
+ 'unidades_cajas' => null,
];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
@@ -40,6 +41,7 @@ class AlbaranEntity extends \CodeIgniter\Entity\Entity
'user_created_id' => 'integer',
'user_updated_id' => 'integer',
'fecha_albaran' => '?datetime',
+ 'cajas' => '?integer',
];
// Agrega tus métodos personalizados aquí
diff --git a/ci4/app/Entities/Albaranes/AlbaranLineaEntity.php b/ci4/app/Entities/Albaranes/AlbaranLineaEntity.php
index fc800c64..a3315ddc 100755
--- a/ci4/app/Entities/Albaranes/AlbaranLineaEntity.php
+++ b/ci4/app/Entities/Albaranes/AlbaranLineaEntity.php
@@ -21,6 +21,8 @@ class AlbaranLineaEntity extends \CodeIgniter\Entity\Entity
'created_at' => null,
'updated_at' => null,
'deleted_at' => null,
+ 'cajas' => null,
+ 'unidades_cajas' => null,
];
protected $casts = [
@@ -36,5 +38,8 @@ class AlbaranLineaEntity extends \CodeIgniter\Entity\Entity
'iva_reducido' => '?boolean',
'user_created_id' => 'integer',
'user_updated_id' => 'integer',
+ 'cajas' => '?integer',
+ 'unidades_cajas' => '?integer',
+
];
}
\ No newline at end of file
diff --git a/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php b/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
index e50d1a5f..c8a62e15 100644
--- a/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
+++ b/ci4/app/Entities/Catalogo/CatalogoLibroEntity.php
@@ -10,6 +10,7 @@ use App\Models\Tarifas\Acabados\ServicioAcabadoModel;
use App\Models\Clientes\ClienteModel;
class CatalogoLibroEntity extends Entity
{
+
protected $attributes = [
'id' => null,
'cliente_id' => null,
@@ -35,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' => '',
@@ -44,8 +45,6 @@ class CatalogoLibroEntity extends Entity
'sello' => null,
'paginas' => 0,
'tipo_impresion' => null,
- 'solapas_ancho' => 0.00,
- 'cubiertas_ancho' => 0.00,
'comentarios' => '',
'negro_paginas' => null,
'negro_papel' => null,
@@ -63,6 +62,8 @@ class CatalogoLibroEntity extends Entity
'cubierta_papel' => null,
'cubierta_papel_id' => null,
'cubierta_gramaje' => null,
+ 'cubierta_ancho_solapas' => 0.00,
+ 'cubierta_acabado_id' => null,
'cubierta_acabado' => null,
'cubierta_pod_papel_id' => null,
'cubierta_pod_gramaje' => null,
@@ -70,10 +71,12 @@ class CatalogoLibroEntity extends Entity
'sobrecubierta_papel' => null,
'sobrecubierta_papel_id' => null,
'sobrecubierta_gramaje' => null,
+ 'sobrecubierta_acabado_id' => null,
'sobrecubierta_acabado' => null,
'sobrecubierta_pod_papel_id' => null,
+ 'sobrecubierta_ancho_solapas' => 0.00,
'sobrecubierta_pod_gramaje' => null,
- 'encuardenacion_id' => 'null',
+ 'encuadernacion_id' => null,
'ubicacion' => null,
'created_at' => null,
'updated_at' => null,
@@ -97,8 +100,6 @@ class CatalogoLibroEntity extends Entity
'num_ilustr_color' => '?int',
'num_ilustr_bn' => '?int',
'paginas' => 'int',
- 'solapas_ancho' => 'float',
- 'cubiertas_ancho' => 'float',
'negro_paginas' => '?int',
'negro_gramaje' => '?float',
'negro_papel_id' => '?int',
@@ -113,15 +114,19 @@ class CatalogoLibroEntity extends Entity
'cubierta_gramaje' => '?float',
'cubierta_papel_id' => '?int',
'cubierta_pod_papel_id' => '?int',
+ 'cubierta_ancho_solapas' => 'float',
'cubierta_pod_gramaje' => '?float',
+ 'cubierta_acabado_id' => '?int',
'sobrecubierta_paginas' => '?int',
'sobrecubierta_gramaje' => '?float',
'sobrecubierta_papel_id' => '?int',
'sobrecubierta_pod_papel_id' => '?int',
+ 'sobrecubierta_ancho_solapas' => 'float',
'sobrecubierta_pod_gramaje' => '?float',
+ 'sobrecubierta_acabado_id' => '?int',
+ 'encuadernacion_id' => '?int',
'fecha_disponibilidad' => 'datetime',
'fecha_public' => 'datetime',
-
];
public function getClienteName()
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/Entities/Configuracion/Maquina.php b/ci4/app/Entities/Configuracion/Maquina.php
index 1ccdef6a..1d8fbc8e 100755
--- a/ci4/app/Entities/Configuracion/Maquina.php
+++ b/ci4/app/Entities/Configuracion/Maquina.php
@@ -42,6 +42,8 @@ class Maquina extends \CodeIgniter\Entity\Entity
"updated_at" => null,
"user_created_id" => 0,
"user_updated_id" => 0,
+ "etiqueta_envio" => false,
+ "alias_ot" => null,
];
protected $casts = [
"is_padre" => "boolean",
@@ -57,6 +59,7 @@ class Maquina extends \CodeIgniter\Entity\Entity
"duracion_jornada" => "int",
"orden_planning" => "int",
"is_rotativa" => "boolean",
+ "etiqueta_envio" => "boolean",
"precio_tinta_negro" => "float",
"is_inkjet" => "boolean",
"precio_tinta_color" => "float",
@@ -68,6 +71,7 @@ class Maquina extends \CodeIgniter\Entity\Entity
"is_deleted" => "int",
"user_created_id" => "int",
"user_updated_id" => "int",
+ "alias_ot" => "?string"
];
public function papeles_impresion() : ?array
diff --git a/ci4/app/Entities/Configuracion/SelectorCalidadImpresion.php b/ci4/app/Entities/Configuracion/SelectorCalidadImpresion.php
new file mode 100644
index 00000000..c5dabbac
--- /dev/null
+++ b/ci4/app/Entities/Configuracion/SelectorCalidadImpresion.php
@@ -0,0 +1,28 @@
+ null,
+ 'cliente_id' => null,
+ 'isPod' => 0,
+ 'input_isColor' => 0,
+ 'input_isHq' => 0,
+ 'output_isColor' => 0,
+ 'output_isHq' => 0,
+ ];
+
+ protected $datamap = [];
+ protected $dates = ['created_at', 'updated_at', 'deleted_at'];
+ protected $casts = [
+ 'isPod' => 'boolean',
+ 'input_isColor' => 'boolean',
+ 'input_isHq' => 'boolean',
+ 'output_isColor' => 'boolean',
+ 'output_isHq' => 'boolean',
+ ];
+}
diff --git a/ci4/app/Entities/Etiquetas/EtiquetaTitulo.php b/ci4/app/Entities/Etiquetas/EtiquetaTitulo.php
new file mode 100644
index 00000000..35168ebf
--- /dev/null
+++ b/ci4/app/Entities/Etiquetas/EtiquetaTitulo.php
@@ -0,0 +1,17 @@
+where('etiqueta_titulos_id', $this->id)->findAll();
+ }
+}
diff --git a/ci4/app/Entities/Etiquetas/EtiquetaTituloLinea.php b/ci4/app/Entities/Etiquetas/EtiquetaTituloLinea.php
new file mode 100644
index 00000000..74ee95a6
--- /dev/null
+++ b/ci4/app/Entities/Etiquetas/EtiquetaTituloLinea.php
@@ -0,0 +1,10 @@
+ 'float',
];
+ public function getIdFromNumero(string $numero): ?int
+ {
+ $facturaModel = model('\App\Models\Facturas\FacturaModel');
+ $factura = $facturaModel->where('numero', $numero)->first();
+
+ return $factura?->id;
+ }
+
+
+
}
\ No newline at end of file
diff --git a/ci4/app/Entities/Presupuestos/PresupuestoLineaEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoLineaEntity.php
index 38744e7e..74ba61ae 100755
--- a/ci4/app/Entities/Presupuestos/PresupuestoLineaEntity.php
+++ b/ci4/app/Entities/Presupuestos/PresupuestoLineaEntity.php
@@ -248,6 +248,10 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
return in_array($this->attributes['tipo'], ["lp_bn", "lp_bnhq", "lp_rot_bn"]);
}
+ public function isImpresionInteriorPlana():bool
+ {
+ return in_array($this->attributes['tipo'], ["lp_bn", "lp_bnhq", "lp_colorhq","lp_color"]);
+ }
public function tinta(): string
{
$tinta = "";
diff --git a/ci4/app/Entities/Produccion/OrdenTrabajoEntity.php b/ci4/app/Entities/Produccion/OrdenTrabajoEntity.php
index b80de21d..5a1af2e0 100755
--- a/ci4/app/Entities/Produccion/OrdenTrabajoEntity.php
+++ b/ci4/app/Entities/Produccion/OrdenTrabajoEntity.php
@@ -45,6 +45,9 @@ class OrdenTrabajoEntity extends Entity
"portada_path" => null,
"is_pedido_espera" => null,
"pedido_espera_by" => null,
+ "preimpresion_revisada" => false,
+ "preimpresion_revisada_by" => null,
+
];
protected $casts = [
"pedido_id" => "integer",
@@ -72,6 +75,7 @@ class OrdenTrabajoEntity extends Entity
"enviar_impresion" => "bool",
"portada_path" => "string",
"is_pedido_espera" => "bool",
+ "preimpresion_revisada" => "bool",
];
@@ -178,10 +182,23 @@ class OrdenTrabajoEntity extends Entity
return null;
}
}
+ public function preimpresionRevisadaUser(): ?UserEntity
+ {
+ $m = model(UserModel::class);
+ if ($this->attributes['preimpresion_revisada_by']) {
+ return $m->findById($this->attributes['preimpresion_revisada_by']);
+ } else {
+ return null;
+ }
+ }
public function getPedidoEsperaBy(): ?UserEntity
{
return $this->pedidoEsperaBy();
}
+ public function getPreimpresionRevisadaBy(): ?UserEntity
+ {
+ return $this->preimpresionRevisadaUser();
+ }
public function getFullPath(): ?string
{
helper('filesystem');
diff --git a/ci4/app/Entities/Produccion/OrdenTrabajoTareaEntity.php b/ci4/app/Entities/Produccion/OrdenTrabajoTareaEntity.php
index 1d32be82..c01a327f 100755
--- a/ci4/app/Entities/Produccion/OrdenTrabajoTareaEntity.php
+++ b/ci4/app/Entities/Produccion/OrdenTrabajoTareaEntity.php
@@ -178,6 +178,12 @@ class OrdenTrabajoTareaEntity extends Entity
$m = model(OrdenTrabajoTareaProgressDate::class);
return $m->where('ot_tarea_id', $this->attributes["id"])->findAll() ?? [];
}
+ public function lastState(): ?OrdenTrabajoTareaProgressDateEntity
+ {
+ $m = model(OrdenTrabajoTareaProgressDate::class);
+ $progressDates = $m->where('ot_tarea_id', $this->attributes["id"])->orderBy('action_at', 'DESC')->first();
+ return $progressDates;
+ }
public function tiempo_trabajado()
{
$dates = $this->progress_dates();
@@ -187,12 +193,12 @@ class OrdenTrabajoTareaEntity extends Entity
foreach ($dates as $key => $date) {
if ($date->estado == "I") {
if ($date->action_at) {
- $init = Time::createFromFormat('Y-m-d H:i:s', $date->action_at);
+ $init = $date->action_at;
}
}
if ($date->estado == "S" || $date->estado == "F") {
if ($date->action_at && $init) {
- $end = Time::createFromFormat('Y-m-d H:i:s', $date->action_at);
+ $end = $date->action_at;
$intervals[] = $init->difference($end)->getSeconds();
}
}
@@ -206,29 +212,29 @@ class OrdenTrabajoTareaEntity extends Entity
public function isCosido(): bool
{
$isTareaCosido = false;
- $pm = $this->presupuesto_manipulado();
+ $pm = $this->presupuesto_encuadernacion();
if ($pm) {
$isTareaCosido = $pm->tarifa()->isCosido();
}
return $isTareaCosido;
}
- public function isImpresion() : bool
+ public function isImpresion(): bool
{
return $this->attributes['presupuesto_linea_id'] != null;
}
- public function isAcabado() : bool
+ public function isAcabado(): bool
{
return $this->attributes['presupuesto_acabado_id'] != null;
}
- public function isManipulado() : bool
+ public function isManipulado(): bool
{
return $this->attributes['presupuesto_manipulado_id'] != null;
}
- public function isEncuadernado() : bool
+ public function isEncuadernado(): bool
{
return $this->attributes['presupuesto_encuadernado_id'] != null;
}
- public function isCorte() : bool
+ public function isCorte(): bool
{
return $this->attributes['is_corte'];
}
diff --git a/ci4/app/Entities/Produccion/OrdenTrabajoTareaProgressDateEntity.php b/ci4/app/Entities/Produccion/OrdenTrabajoTareaProgressDateEntity.php
index 9523c8c3..f0a60843 100755
--- a/ci4/app/Entities/Produccion/OrdenTrabajoTareaProgressDateEntity.php
+++ b/ci4/app/Entities/Produccion/OrdenTrabajoTareaProgressDateEntity.php
@@ -2,6 +2,7 @@
namespace App\Entities\Produccion;
+use App\Entities\Usuarios\UserEntity;
use App\Models\OrdenTrabajo\OrdenTrabajoTarea;
use CodeIgniter\Entity\Entity;
@@ -20,12 +21,21 @@ class OrdenTrabajoTareaProgressDateEntity extends Entity
/**
* Orden de trabajo de la tarea
*
- * @return OrdenTrabajoEntity
+ * @return OrdenTrabajoTareaEntity
*/
public function orden_trabajo_tarea() : OrdenTrabajoTareaEntity
{
$m = model(OrdenTrabajoTarea::class);
return $m->find($this->attributes["ot_tarea_id"]);
}
+ public function user() : ?UserEntity
+ {
+ $user = null;
+ if($this->attributes['action_user_id'])
+ {
+ $user = auth()->getProvider()->findById($this->attributes['action_user_id']);
+ }
+ return $user;
+ }
}
diff --git a/ci4/app/Entities/Tarifas/Acabados/TarifaAcabadoEntity.php b/ci4/app/Entities/Tarifas/Acabados/TarifaAcabadoEntity.php
index 30d846b5..1af0fde3 100755
--- a/ci4/app/Entities/Tarifas/Acabados/TarifaAcabadoEntity.php
+++ b/ci4/app/Entities/Tarifas/Acabados/TarifaAcabadoEntity.php
@@ -24,11 +24,11 @@ class TarifaAcabadoEntity extends \CodeIgniter\Entity\Entity
"deleted_at" => null,
"created_at" => null,
"updated_at" => null,
- 'plastificado' => false,
- 'plakene' => false,
- 'rectractilado' => false,
- 'estampado' => false,
- 'uvi' => false,
+ 'plastificado' => null,
+ 'plakene' => null,
+ 'rectractilado' => null,
+ 'estampado' => null,
+ 'uvi' => null,
'plastificado_tipo' => null,
'plakene_tipo' => null,
'rectractilado_tipo' => null,
diff --git a/ci4/app/Entities/Tarifas/Maquinas/MaquinaOtTareaEntity.php b/ci4/app/Entities/Tarifas/Maquinas/MaquinaOtTareaEntity.php
new file mode 100755
index 00000000..86cdc5ed
--- /dev/null
+++ b/ci4/app/Entities/Tarifas/Maquinas/MaquinaOtTareaEntity.php
@@ -0,0 +1,45 @@
+ null,
+ "maquina_id" => null,
+ "orden_trabajo_id" => null,
+ ];
+ protected $casts = [
+ "id" => "integer",
+ "maquina_id" => "integer",
+ "orden_trabajo_id" => "integer",
+ ];
+ protected $dates = ['created_at', 'updated_at', 'deleted_at'];
+ /**
+ * Orden de trabajo
+ *
+ * @return OrdenTrabajoEntity
+ */
+ public function orden_trabajo_tarea(): OrdenTrabajoEntity
+ {
+ $m = model(OrdenTrabajoModel::class);
+ return $m->find($this->attributes["orden_trabajo_id"]);
+ }
+ /**
+ * Maquina
+ *
+ * @return Maquina
+ */
+ public function maquina(): Maquina
+ {
+ $m = model(MaquinaModel::class);
+ return $m->find($this->attributes["maquina_id"]);
+ }
+}
diff --git a/ci4/app/Entities/Tarifas/TarifaEncuadernacionEntity.php b/ci4/app/Entities/Tarifas/TarifaEncuadernacionEntity.php
index 608ebf37..f43d64de 100755
--- a/ci4/app/Entities/Tarifas/TarifaEncuadernacionEntity.php
+++ b/ci4/app/Entities/Tarifas/TarifaEncuadernacionEntity.php
@@ -40,7 +40,10 @@ class TarifaEncuadernacionEntity extends \CodeIgniter\Entity\Entity
$words_initial = array_map(fn($w) => substr(strtoupper($w),0,1),$words);
return implode("",$words_initial);
}
-
+ public function isCosido(): bool
+ {
+ return in_array($this->attributes['id'], [3, 17]);
+ }
}
diff --git a/ci4/app/Entities/Tarifas/TarifaManipuladoEntity.php b/ci4/app/Entities/Tarifas/TarifaManipuladoEntity.php
index 5c48cd96..3ddf5ac9 100755
--- a/ci4/app/Entities/Tarifas/TarifaManipuladoEntity.php
+++ b/ci4/app/Entities/Tarifas/TarifaManipuladoEntity.php
@@ -36,6 +36,6 @@ class TarifaManipuladoEntity extends \CodeIgniter\Entity\Entity
public function isCosido(): bool
{
- return in_array($this->attributes['id'], [3, 17]);
+ return in_array($this->attributes['id'], [2, 3, 17, 45]);
}
}
diff --git a/ci4/app/Helpers/assets_helper.php b/ci4/app/Helpers/assets_helper.php
new file mode 100644
index 00000000..4f1631e0
--- /dev/null
+++ b/ci4/app/Helpers/assets_helper.php
@@ -0,0 +1,10 @@
+ 'Min POD',
'moduleTitle' => 'Machines',
'nombre' => 'Name',
+ 'alias_ot' => 'Alias',
'observaciones' => 'Remarks',
'ordenPlanning' => 'Planning order',
'padreId' => 'Variante',
diff --git a/ci4/app/Language/es/Albaran.php b/ci4/app/Language/es/Albaran.php
index ac7aace4..67dc8b37 100644
--- a/ci4/app/Language/es/Albaran.php
+++ b/ci4/app/Language/es/Albaran.php
@@ -13,6 +13,7 @@ return [
'att' => 'Att',
'direccion' => 'Dirección',
'cajas' => 'Cajas',
+ 'unidadesCaja' => 'Unidades/Caja',
'acciones' => 'Acciones',
'unidades' => 'Unidades',
@@ -27,6 +28,7 @@ return [
'addIva' => 'Añadir IVA',
'nuevaLinea' => 'Nueva línea',
'imprimirAlbaran' => 'Imprimir albarán',
+ 'imprimirAlbaranAnonimo' => 'Imprimir albarán anónimo',
'borrarAlbaran' => 'Borrar albarán',
'borrarAlbaranConfirm' => '¿Está seguro de que desea borrar el albarán?',
'borrar' => 'Borrar',
diff --git a/ci4/app/Language/es/App.php b/ci4/app/Language/es/App.php
index b64ca4ba..568cd01f 100755
--- a/ci4/app/Language/es/App.php
+++ b/ci4/app/Language/es/App.php
@@ -35,6 +35,7 @@ return [
"global_next" => "Siguiente",
"global_save_file" => "Guardar ficheros",
"global_upload_files" => "Subir ficheros",
+ "global_download_files" => "Descargar ficheros",
"global_all" => "Todos",
// LOGIN - Index
"login_title" => "Iniciar sesión en su cuenta",
@@ -668,7 +669,7 @@ return [
"menu_digitalizacion" => "Digitalización",
"menu_importadores" => "Importadores",
- "menu_importadores_catalogo" => "Desde catálogo",
+ "menu_importadores_catalogo" => "RA-MA", //"Desde catálogo",
"menu_importadores_bubok" => "Bubok",
"menu_catalogo" => "Catálogo",
@@ -700,7 +701,7 @@ return [
"menu_informes" => "Informes",
"menu_pedidos" => "Pedidos",
- "menu_pedidos_validacion" => "Validación",
+ "menu_pedidos_validacion" => "Aprobación",
"menu_pedidos_activos" => "Producción",
"menu_pedidos_finalizados" => "Finalizados",
"menu_pedidos_cancelados" => "Cancelados",
diff --git a/ci4/app/Language/es/Catalogo.php b/ci4/app/Language/es/Catalogo.php
index cc6ae34e..14f78ffb 100644
--- a/ci4/app/Language/es/Catalogo.php
+++ b/ci4/app/Language/es/Catalogo.php
@@ -63,6 +63,10 @@ return [
'createdAt' => 'Fecha de Creación',
'updatedAt' => 'Fecha de Actualización',
'deletedAt' => 'Fecha de Eliminación',
+ 'tirada' => 'Tirada',
+ 'precioUd' => 'Precio Ud.',
+ 'total' => 'Total',
+ 'estado' => 'Estado',
'catalogoLibro' => 'Libro',
'catalogoLibroList' => 'Lista de Libros',
diff --git a/ci4/app/Language/es/Chat.php b/ci4/app/Language/es/Chat.php
index 10458366..e7d0a29c 100755
--- a/ci4/app/Language/es/Chat.php
+++ b/ci4/app/Language/es/Chat.php
@@ -60,6 +60,7 @@ return [
"subscribe_admin_chat_wrong" => "Tienes que seleccionar un usuario.",
"help_select_chat_department_user" => "Solamente son listados los usuarios que pertenecen al personal. Los clientes no son listados, para añadirlos a la conversación se realiza desde la sección de mensajería de las diferentes secciones(presupuesto,pedido,factura ...)",
"store_department" => "Crear departamento",
+ "direct_messsages" => "Mensajes directos",
"mail" => [
"mail_subject" => "Nuevo mensaje"
]
diff --git a/ci4/app/Language/es/Facturas.php b/ci4/app/Language/es/Facturas.php
index fd058b51..b23ee416 100755
--- a/ci4/app/Language/es/Facturas.php
+++ b/ci4/app/Language/es/Facturas.php
@@ -21,8 +21,8 @@ return [
'dias' => 'Días',
'serieFacturacion' => 'Serie facturación',
'creditoAsegurado' => 'Crédito asegurado',
- 'facturaRectificada' => 'Factura rectificada',
- 'facturaRectificativa' => 'Factura rectificativa',
+ 'facturaRectificada' => 'Fact. rectificada',
+ 'facturaRectificativa' => 'Fact. rectificativa',
'razonSocial' => 'Razón Social',
'cif' => 'CIF',
'direccion' => 'Dirección',
@@ -77,6 +77,10 @@ return [
"acumuladoFacturacion" => "Acumulado Facturación",
"totalPendientePago" => "Pendiente de pago",
+
+ "textoConformarFactura" => "La factura rectificativa se conformará y pasará a estar pagada.",
+ "conformarFactura" => "Conformar factura",
+ "facturaConformada" => "Factura conformada correctamente",
'errors' => [
'requiredFields' => 'Los campos marcados con * son obligatorios',
diff --git a/ci4/app/Language/es/Importador.php b/ci4/app/Language/es/Importador.php
index 925076fc..5f4f0ad0 100644
--- a/ci4/app/Language/es/Importador.php
+++ b/ci4/app/Language/es/Importador.php
@@ -12,7 +12,7 @@ return [
'precio_compra' => 'Precio Compra',
'importar' => 'Importar',
'subirArchivoRama' => 'Cargar Excel proporcionado por RA-MA',
- 'subirArchivoBubok' => 'Cargar XML proporcionado por BUBOK',
+ 'subirArchivoBubok' => 'Cargar ZIP proporcionado por BUBOK',
'libro' => 'libro',
'id' => 'ID',
diff --git a/ci4/app/Language/es/Logistica.php b/ci4/app/Language/es/Logistica.php
index 5b6331a4..4213a476 100755
--- a/ci4/app/Language/es/Logistica.php
+++ b/ci4/app/Language/es/Logistica.php
@@ -44,6 +44,7 @@ return [
'totales' => 'Totales',
'cajas' => 'Cajas',
+ 'ordenTrabajo' => 'OT',
'pedido' => 'Pedido',
'presupuesto' => 'Presupuesto',
'unidadesEnvio' => 'Unidades envío',
@@ -59,22 +60,52 @@ return [
'selectAll' => 'Seleccionar todo',
'peso' => 'Peso (kg): ',
'unidadesTotalesFooter' => 'Unidades:',
+ 'fechaEncuadernado' => 'Fecha encuadernado',
'codigoSeguimiento' => 'Código de seguimiento',
'empresaMensajería' => 'Empresa de mensajería',
+ 'ficharEmbalaje' => 'Fichar embalaje',
'finalizarEnvio' => 'Finalizar envío',
'finalizarEnvioYOTs' => 'Finalizar envío y OTS',
+
+ 'EtiquetasTitulos' => 'Etiquetas de títulos',
+ 'id' => 'ID',
+ 'otId' => 'OT ID',
+ 'num_caja' => 'Nº Caja',
+ 'unidadesTotalesOt' => 'Unidades totales OT',
+ 'numeroCajas' => 'Nº Cajas',
+ 'unidadesEnCaja' => 'Unidades en caja',
+ 'listadoEtiquetas' => 'Listado de etiquetas',
+ 'nuevaEtiqueta' => 'Nueva etiqueta',
+ 'cliente' => 'Cliente',
+ 'comentariosEtiqueta' => 'Comentarios etiqueta',
+ 'addLineaEtiqueta' => 'Añadir líneas a la etiqueta',
+ 'renumber' => 'Renumerar etiquetas',
+
'errors' => [
'noEnvio' => 'No se ha encontrado el envio',
'noEnvioLineas' => 'No se han encontrado líneas de envío',
'noDataToFind' => 'No se ha introducido ningún dato para buscar',
'notFound' => 'No se encuentra el pedido o ISBN, el pedido no está en producción o finalizado o no tiene envíos pendientes',
'noAddresses' => 'El pedido no tiene direcciones de envío',
+ 'errorMissingData' => 'Faltan datos para crear la etiqueta',
+ 'errorInsertarEtiqueta' => 'Error al insertar la etiqueta',
+ 'noEtiqueta' => 'No se ha encontrado la etiqueta',
+ 'noEtiquetaLineas' => 'No se han encontrado líneas de etiqueta',
+ 'noLineas' => 'No se ha seleccionado ninguna línea',
],
'success' => [
'finalizado' => 'El envío se ha finalizado correctamente',
'finalizadoOTs' => 'El envío se ha finalizado correctamente.\nSe han creado las OTs siguientes OTs: {ots}',
+ 'successDeleteEtiqueta' => 'Etiqueta eliminada correctamente',
+ 'successInsertLines' => 'Lineas de etiqueta insertadas correctamente',
+ 'successDeleteLines' => 'Lineas de etiqueta eliminadas correctamente',
+ 'successUpdateLine' => 'Linea de etiqueta actualizadas correctamente',
+ 'comentariosUpdated' => 'Comentarios actualizados correctamente',
+ 'successReordenarCajas' => 'Cajas reordenadas correctamente',
+ 'imprimirEtiquetas' => 'Etiquetas impresas correctamente',
+ 'successFicharEmbalaje' => 'Embalaje fichado correctamente',
],
];
\ No newline at end of file
diff --git a/ci4/app/Language/es/Maquinas.php b/ci4/app/Language/es/Maquinas.php
index 6971e9fa..b09ab7ce 100755
--- a/ci4/app/Language/es/Maquinas.php
+++ b/ci4/app/Language/es/Maquinas.php
@@ -3,174 +3,179 @@
return [
- 'acabado' => 'acabado',
- 'alto' => 'Alto',
- 'altoClick' => 'Alto Click',
- 'altoImpresion' => 'Alto Impresion',
- 'ancho' => 'Ancho',
- 'anchoImpresion' => 'Ancho Impresion',
- 'createdAt' => 'Created At',
- 'deletedAt' => 'Deleted At',
- 'duracionJornada' => 'Duracion Jornada',
- 'forzarNumFormasHorizontalesPortada' => 'Forzar Num Formas Horizontales Cubierta',
- 'forzarNumFormasVerticalesPortada' => 'Forzar Num Formas Verticales Cubierta',
- 'id' => 'ID',
- 'impresion' => 'impresion',
- 'isDeleted' => 'Is Deleted',
- 'isPadre' => 'Usar para variante?',
- 'isRotativa' => 'Es Rotativa?',
- 'isTinta' => 'Inkjet',
- 'manipulado' => 'manipulado',
- 'maquina' => 'Maquina',
- 'maquinaList' => 'Lista Máquinas',
- 'maquinas' => 'Máquinas',
- 'max' => 'POD Max',
- 'metrosxminuto' => 'Metros x minuto',
- 'min' => 'POD Min',
- 'moduleTitle' => 'Máquinas',
- 'nombre' => 'Nombre',
- 'observaciones' => 'Observaciones',
- 'ordenPlanning' => 'Orden Planning',
- 'padreId' => 'Variante',
- 'precioHoraCorte' => 'Precio Hora Corte',
- 'precioTintaCG' => 'Precio Tinta CG',
- 'precioTintaColor' => 'Precio Tinta Color',
- 'precioTintaNegro' => 'Precio Tinta Negro',
- 'tipo' => 'Tipo',
- 'updatedAt' => 'Updated At',
- 'userCreatedId' => 'User Created ID',
- 'userUpdatedId' => 'User Updated ID',
- 'velocidad' => 'Velocidad',
- 'velocidadCorte' => 'Velocidad Corte',
- 'maquina_tarea' => 'Máquina tarea',
- 'namePlaceholderDuplicated' => "Inserte el nombre de la máquina a duplicar ...",
- 'validation' => [
- 'alto_menor_alto_impresion' => 'El campo \'Alto impresión\' debe ser menor que \'Alto\'',
- 'ancho_menor_ancho_impresion' => '\'Ancho Impresión\' debe ser menor que \'Ancho\'',
- 'alto' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'greater_than' => 'El campo {field} debe ser mayor que {param}',
- ],
+ 'acabado' => 'acabado',
+ 'alto' => 'Alto',
+ 'altoClick' => 'Alto Click',
+ 'altoImpresion' => 'Alto Impresion',
+ 'ancho' => 'Ancho',
+ 'anchoImpresion' => 'Ancho Impresion',
+ 'createdAt' => 'Created At',
+ 'deletedAt' => 'Deleted At',
+ 'duracionJornada' => 'Duracion Jornada',
+ 'forzarNumFormasHorizontalesPortada' => 'Forzar Num Formas Horizontales Cubierta',
+ 'forzarNumFormasVerticalesPortada' => 'Forzar Num Formas Verticales Cubierta',
+ 'id' => 'ID',
+ 'impresion' => 'impresion',
+ 'isDeleted' => 'Is Deleted',
+ 'isPadre' => 'Usar para variante?',
+ 'isRotativa' => 'Es Rotativa?',
+ 'isTinta' => 'Inkjet',
+ 'isEtiquetaEnvio' => 'Etiqueta títulos',
+ 'manipulado' => 'manipulado',
+ 'maquina' => 'Maquina',
+ 'maquinaList' => 'Lista Máquinas',
+ 'maquinas' => 'Máquinas',
+ 'max' => 'POD Max',
+ 'metrosxminuto' => 'Metros x minuto',
+ 'min' => 'POD Min',
+ 'moduleTitle' => 'Máquinas',
+ 'nombre' => 'Nombre',
+ 'alias_ot' => 'Alias',
+ 'observaciones' => 'Observaciones',
+ 'ordenPlanning' => 'Orden Planning',
+ 'padreId' => 'Variante',
+ 'precioHoraCorte' => 'Precio Hora Corte',
+ 'precioTintaCG' => 'Precio Tinta CG',
+ 'precioTintaColor' => 'Precio Tinta Color',
+ 'precioTintaNegro' => 'Precio Tinta Negro',
+ 'tipo' => 'Tipo',
+ 'updatedAt' => 'Updated At',
+ 'userCreatedId' => 'User Created ID',
+ 'userUpdatedId' => 'User Updated ID',
+ 'velocidad' => 'Velocidad',
+ 'velocidadCorte' => 'Velocidad Corte',
+ 'maquina_tarea' => 'Máquina tarea',
+ 'namePlaceholderDuplicated' => "Inserte el nombre de la máquina a duplicar ...",
+ 'validation' => [
+ 'alto_menor_alto_impresion' => 'El campo \'Alto impresión\' debe ser menor que \'Alto\'',
+ 'ancho_menor_ancho_impresion' => '\'Ancho Impresión\' debe ser menor que \'Ancho\'',
+ 'alto' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'greater_than' => 'El campo {field} debe ser mayor que {param}',
+ ],
- 'ancho' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'greater_than' => 'El campo {field} debe ser mayor que {param}',
- ],
+ 'ancho' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'greater_than' => 'El campo {field} debe ser mayor que {param}',
+ ],
- 'forzar_num_formas_horizontales_cubierta' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
+ 'forzar_num_formas_horizontales_cubierta' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
- ],
+ ],
- 'forzar_num_formas_verticales_cubierta' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
+ 'forzar_num_formas_verticales_cubierta' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
- ],
+ ],
- 'alto_click' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
- 'greater_than' => 'El campo {field} debe ser mayor que {param}',
- ],
+ 'alto_click' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
+ 'greater_than' => 'El campo {field} debe ser mayor que {param}',
+ ],
- 'alto_impresion' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
- 'greater_than' => 'El campo {field} debe ser mayor que {param}',
- ],
+ 'alto_impresion' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
+ 'greater_than' => 'El campo {field} debe ser mayor que {param}',
+ ],
- 'ancho_impresion' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
- 'greater_than' => 'El campo {field} debe ser mayor que {param}',
- ],
+ 'ancho_impresion' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
+ 'greater_than' => 'El campo {field} debe ser mayor que {param}',
+ ],
- 'duracion_jornada' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'duracion_jornada' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'max' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'max' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'metrosxminuto' => [
- 'max_length' => 'El campo {field} no puede exeder de {param} caracteres de longitud.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'metrosxminuto' => [
+ 'max_length' => 'El campo {field} no puede exceder de {param} caracteres de longitud.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'min' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'min' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'nombre' => [
- 'max_length' => 'El campo {field} no puede exeder de {param} caracteres de longitud.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'nombre' => [
+ 'max_length' => 'El campo {field} no puede exceder de {param} caracteres de longitud.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
+ 'alias' => [
+ 'max_length' => 'El campo {field} no puede exceder de {param} caracteres de longitud.',
+ ],
- 'observaciones' => [
- 'max_length' => 'El campo {field} no puede exeder de {param} caracteres de longitud.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'observaciones' => [
+ 'max_length' => 'El campo {field} no puede exceder de {param} caracteres de longitud.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'orden_planning' => [
- 'integer' => 'El campo {field} debe contener un número entero.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'orden_planning' => [
+ 'integer' => 'El campo {field} debe contener un número entero.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'precio_hora_corte' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'precio_hora_corte' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'precio_tinta_cg' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'precio_tinta_cg' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'precio_tinta_color' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'precio_tinta_color' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'precio_tinta_negro' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'precio_tinta_negro' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'tipo' => [
- 'in_list' => 'El campo {field} debe ser uno uno de: {param}.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'tipo' => [
+ 'in_list' => 'El campo {field} debe ser uno uno de: {param}.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
+ ],
- 'velocidad' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
+ 'velocidad' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
- ],
-
- 'velocidad_corte' => [
- 'decimal' => 'El campo {field} debe contener un número decimal.',
- 'required' => 'El campo {field} es obligatorio.',
-
- ],
+ ],
+ 'velocidad_corte' => [
+ 'decimal' => 'El campo {field} debe contener un número decimal.',
+ 'required' => 'El campo {field} es obligatorio.',
],
-];
\ No newline at end of file
+ ],
+
+
+];
diff --git a/ci4/app/Language/es/OrdenTrabajo.php b/ci4/app/Language/es/OrdenTrabajo.php
new file mode 100644
index 00000000..e27bba39
--- /dev/null
+++ b/ci4/app/Language/es/OrdenTrabajo.php
@@ -0,0 +1,6 @@
+ 'El cliente tiene opción de tirada flexible: ±{unidades, number, integer} unidades.',
+];
\ No newline at end of file
diff --git a/ci4/app/Language/es/Presupuestos.php b/ci4/app/Language/es/Presupuestos.php
index 238dac47..dde98be6 100755
--- a/ci4/app/Language/es/Presupuestos.php
+++ b/ci4/app/Language/es/Presupuestos.php
@@ -61,7 +61,7 @@ return [
'coleccion' => 'Colección',
'numeroEdicion' => 'Número de edición',
'isbn' => 'ISBN',
- 'referenciaCliente' => 'Referencia del cliente',
+ 'referenciaCliente' => 'Referencia cliente',
'referenciaCliente2' => 'Referencia',
'papelFormatoId' => "Tamaño",
'papelFormatoPersonalizado' => 'Tamaño personalizado',
@@ -363,6 +363,9 @@ return [
'borrador' => 'Borrador',
'confirmado' => 'Confirmado',
+ 'reprint' => 'Reimpresión',
+ 'presupuestoGenerado' => 'Presupuesto generado con éxito',
+
'files' => 'Ficheros',
'titulos' => [
'libroFresadoTapaDura' => 'Rústica Fresado tapa dura',
@@ -392,6 +395,7 @@ return [
'gramaje_interior' => 'Seleccione el gramaje',
'pais' => 'Debe seleccionar un país',
'integer_greatherThan_0' => 'Número entero > 0 requerido',
+ 'greater_than_0' => 'El campo {field} debe ser mayor que 0',
'tirada_no_valida' => "Tirada no valida",
'sin_gramaje' => "Seleccione gramaje",
'tipo_cubierta' => 'Seleccione tipo de cubierta',
@@ -402,6 +406,7 @@ return [
],
'errores' => [
+ 'presupuestoNotFound' => 'Presupuesto no encontrado',
'paginas' => 'El campo páginas tiene que ser mayor que cero',
'paginasLP' => 'El número de páginas no coincide con el total',
'tiradas' => 'El campo tiradas tiene que ser mayor que cero',
diff --git a/ci4/app/Language/es/Produccion.php b/ci4/app/Language/es/Produccion.php
index ee18d7b6..7e47cd7c 100755
--- a/ci4/app/Language/es/Produccion.php
+++ b/ci4/app/Language/es/Produccion.php
@@ -1,15 +1,29 @@
"Descargar",
+ "navs" => [
+ 'finalizadas' => 'Finalizadas',
+ 'pendientes' => 'Pendientes',
+ 'pendientes_ferro' => 'Ferro pendiente',
+ 'ferro_ok' => 'Ferro/Prototipo OK',
+ 'news' => 'Nuevas',
+ 'waiting' => 'En espera',
+ 'revision_com' => 'Revisión comercial',
+ 'prod' => 'Producción'
+ ],
"datatable" => [
- "pedido_id"=> "Pedido ID",
- "fecha_encuadernacion"=> "Fecha encuadernación",
- "fecha_impresion"=> "Fecha impresión",
- "cliente"=> "Cliente",
- "titulo"=> "Título",
- "ubicacion"=> "Ubicación",
- "tirada"=> "Tirada",
- "impresion"=> "Impresión",
+ "nombre" => "Nombre",
+ "ot_id" => "OT ID",
+ "barcode" => "Código",
+ "pedido_id" => "Pedido ID",
+ "fecha_encuadernacion" => "Fecha encuadernación",
+ "fecha_impresion" => "Fecha impresión",
+ "cliente" => "Cliente",
+ "titulo" => "Título",
+ "ubicacion" => "Ubicación",
+ "tirada" => "Tirada",
+ "impresion" => "Impresión",
"fecha_entrega_at" => "Fecha entrega prevista",
"maquina" => "Máquina",
"ancho" => "Ancho",
@@ -25,14 +39,13 @@ return [
"progreso" => "Progreso",
"logo" => "Logo impresion",
"filter_by_task" => "Filtrar por tarea",
+ "filter_by_machine" => "Filtrar por máquina",
"filter_by_paper" => "Filtrar por papel",
"metros" => "Metros",
"corte" => "Corte",
"pliegos" => "Pliegos",
"pliegos_libro" => "Pliegos",
"fecha" => "fecha"
-
-
],
"task" => [
"order" => "Orden",
@@ -63,6 +76,7 @@ return [
"formato" => "Formato",
"paginas" => "Páginas",
"guillotina" => "Guillotina/Corte",
+ "prep_interior_guillotina" => "Prep. interior guillotina",
"tirada" => "Tirada",
"merma" => "Merma",
"pendiente_ferro" => "Pendiente ferro",
@@ -89,6 +103,7 @@ return [
"papel_gramajes" => "Papel y gramajes",
"estado" => "Estado",
"pedido_espera" => "Pedido en espera",
+ "preimpresion_revisada" => "Preimpresión revisada",
"imposicion_no_label" => "Sin etiqueta",
"pliegos_de" => "pliegos de",
"size" => "Tamaño",
@@ -107,6 +122,7 @@ return [
//IMPRESION
"impresion_bn" => "Impresión BN",
"cubierta" => "Cubierta/Portada",
+ "sobrecubierta" => "Sobrecubierta",
"guarda" => "Guarda",
"encuadernacion" => "Encuadernación",
@@ -116,7 +132,7 @@ return [
"pre_solapa" => "Revisión solapa",
"pre_codbarras" => "Revisión código barras",
"pre_imposicion" => "Revisión imposición",
-
+
"iniciada" => "Iniciada",
"finalizada" => "Finalizada",
"error" => "Error",
@@ -128,7 +144,8 @@ return [
"attr_not_exist" => "El atributo {0,string} no pertenece al modelo Pedido"
],
-
+ "maquinas_planas" => "Máquinas planas",
+ "select_maquina_padre" => "Seleccione una máquina",
"progress_ferro" => "Ferro",
"progress_preimpresion" => "Preimpresión",
"progress_logistica" => "Logística",
@@ -139,16 +156,37 @@ return [
"maquinas" => "Máquinas",
"tareas_hoy" => "Tareas para HOY",
"tareas_all" => "Todas",
+ "tareas_delay" => "Aplazadas",
"play_tarea" => "Continuar",
"play_pause" => "Pausar",
"play_stop" => "Aplazar",
"play_end" => "Finalizar",
"cancel" => "Cancelar",
+ "fichaje_auto" => "F.auto",
+ "scan" => "Escanear",
+ "tarea_list" => "Lista de tareas",
+ "fichaje_auto_alert_text" => "Cada vez que introduza un nº de pedido se iniciará la tarea y se finalizará la tarea actual (del pedido anterior)",
+ "next_ot" => "SIGUIENTE OT",
+ "placeholder_ot_id" => "Introduce el ID de la OT",
+ "fa_ot_input_form_text" => "Introduce una OT para terminar la actual e iniciar la siguiente.",
+ "scan_ot_input_form_text" => "Introduce una OT para añadirla al proceso",
+ "next_scan_ot" => "Comenzar",
+ "reset" => "Resetear"
+
+ ],
+ 'tarea_estados' => [
+ 'P' => 'Pendiente',
+ 'I' => 'Iniciada',
+ 'F' => 'Finalizada',
+ 'S' => 'Pausada',
+ 'D' => 'Aplazada',
+ 'E' => 'Error'
],
'duplicate_estado_tarea_progress' => "Último estado de la tarea repetido",
'task_already_finished' => "La tarea se ha marcado como finalizada.",
'print_label' => "Imprimir etiqueta",
+ 'fichar_embalaje' => "Fichar embalaje",
'click_init' => "Clicks al inicio",
'click_end' => "Clicks al final",
"comentarios" => "Comentarios",
@@ -158,4 +196,20 @@ return [
"comentariosEncuadernacion" => "Comentarios encuadernación",
"comentariosLogistica" => "Comentarios logística",
"info_solapa_guillotina" => "Datos solapa y preparación guillotina",
-];
\ No newline at end of file
+ "responses" => [
+ "finish_maquina_ordenes_trabajo" => "Tareas finalizadas correctamente",
+ "update_maquina_ordenes_trabajo_estado" => "Tareas actualizadas correctamente",
+
+ ],
+ "errors" => [
+ "maquina_not_in_ot" => "Esta OT no tiene ninguna tarea con esta máquina",
+ "tareas_finalizadas" => "Las tareas de esta OT y máquina están marcadas como finalizadas",
+ "ot_not_found" => "La orden de trabajo número {ot_id} no existe"
+
+ ],
+ 'hunkeler' => "Corte HUNKELER",
+ 'tecnau' => "Corte TECNAU",
+ 'end_cut' => "Corte final",
+ "interior_cut" => "Preparación interior",
+ "cover_cut" => "Preparación cubierta"
+];
diff --git a/ci4/app/Language/es/RolesPermisos.php b/ci4/app/Language/es/RolesPermisos.php
index 9326991d..8731c5a3 100755
--- a/ci4/app/Language/es/RolesPermisos.php
+++ b/ci4/app/Language/es/RolesPermisos.php
@@ -64,6 +64,7 @@ return [
'actividadSection' => 'Accesos',
'backupSection' => 'Backups',
'facturasSection' => 'Facturas',
+ 'logisticaSection' => 'Logística',
'albaranesPermission' => 'Albaranes',
'vencimientosPermission' => 'Vencimientos',
"ticketsSection" => "Tickets",
@@ -72,6 +73,7 @@ return [
'importadoresSection' => 'Importadores',
'catalogoPermission' => 'Desde catálogo',
'bubokPermission' => 'Bubok',
+ 'logisticaPermission' => 'Logística',
diff --git a/ci4/app/Libraries/SafekatFtpClient.php b/ci4/app/Libraries/SafekatFtpClient.php
index 663e8c7a..9993eb49 100755
--- a/ci4/app/Libraries/SafekatFtpClient.php
+++ b/ci4/app/Libraries/SafekatFtpClient.php
@@ -40,13 +40,14 @@ class SafekatFtpClient
public function uploadXML(string $content, string $filename): bool
{
try {
- if ($this->xml_enabled == false) return false;
- $remotePath = implode("/", [$this->base_dir,'pedidos','xml_nuevos']);
+ if ($this->xml_enabled == false)
+ return false;
+ $remotePath = implode("/", [$this->base_dir, 'pedidos', 'xml_nuevos']);
$this->ftp->login(username: $this->username, password: $this->password);
- if(!$this->ftp->is_dir($remotePath)){
- $this->ftp->mkdir($remotePath,recursive:true);
+ if (!$this->ftp->is_dir($remotePath)) {
+ $this->ftp->mkdir($remotePath, recursive: true);
}
- $this->ftp->put($remotePath.'/'.$filename, $content);
+ $this->ftp->put($remotePath . '/' . $filename, $content);
return true;
} catch (\Throwable $th) {
@@ -58,22 +59,23 @@ class SafekatFtpClient
public function uploadFilePresupuesto(int $presupuesto_id)
{
try {
- if ($this->xml_enabled == false) return false;
+ if ($this->xml_enabled == false)
+ return false;
$model = model(PresupuestoFicheroModel::class);
$modelPedidoLinea = model(PedidoLineaModel::class);
$pedidoLinea = $modelPedidoLinea->findByPresupuesto($presupuesto_id);
$rootIdExtern = $this->pedido_xml_config->id_offset + $pedidoLinea->pedido_id;
$presupuestoFiles = $model->getFiles($presupuesto_id);
$this->ftp->login(username: $this->username, password: $this->password);
-
+
foreach ($presupuestoFiles as $key => $value) {
$filename = array_reverse(explode("/", $value->file_path))[0];
- $remoteDir = implode("/", [$this->base_dir,"pedidos_files",$rootIdExtern]);
- $remoteFile = implode("/", [$this->base_dir,"pedidos_files",$rootIdExtern,$filename]);
- if(!$this->ftp->is_dir($remoteDir)){
- $this->ftp->mkdir($remoteDir,recursive:true);
+ $remoteDir = implode("/", [$this->base_dir, "pedidos_files", $rootIdExtern]);
+ $remoteFile = implode("/", [$this->base_dir, "pedidos_files", $rootIdExtern, $filename]);
+ if (!$this->ftp->is_dir($remoteDir)) {
+ $this->ftp->mkdir($remoteDir, recursive: true);
}
- $this->ftp->put($remoteFile,$value->file_path,mode:$this->ftp::SOURCE_LOCAL_FILE);
+ $this->ftp->put($remoteFile, $value->file_path, mode: $this->ftp::SOURCE_LOCAL_FILE);
}
$this->ftp->disconnect();
} catch (Exception $e) {
@@ -91,10 +93,10 @@ class SafekatFtpClient
$rootIdExtern = $this->pedido_xml_config->id_offset + $pedidoLinea->pedido_id;
$presupuestoFiles = $model->getFiles($presupuesto_id);
$this->ftp->login(username: $this->username, password: $this->password);
-
+
foreach ($presupuestoFiles as $key => $value) {
$filename = array_reverse(explode("/", $value->file_path))[0];
- $remoteFile = implode("/", [$this->base_dir,"pedidos_files",$rootIdExtern,$filename]);
+ $remoteFile = implode("/", [$this->base_dir, "pedidos_files", $rootIdExtern, $filename]);
$this->ftp->delete($remoteFile);
}
$this->ftp->disconnect();
@@ -103,4 +105,66 @@ class SafekatFtpClient
throw $e;
}
}
+
+ public function getPresupuestoRemotePath(int $presupuesto_id): string
+ {
+ $modelPedidoLinea = model(PedidoLineaModel::class);
+ $pedidoLinea = $modelPedidoLinea->findByPresupuesto($presupuesto_id);
+ $rootIdExtern = $this->pedido_xml_config->id_offset + $pedidoLinea->pedido_id;
+
+ return implode('/', [$this->base_dir, 'pedidos_files', $rootIdExtern]);
+ }
+
+ public function downloadZipPresupuesto(int $presupuesto_id): ?string
+ {
+ $modelPedidoLinea = model(PedidoLineaModel::class);
+ $model = model(PresupuestoFicheroModel::class);
+
+ $pedidoLinea = $modelPedidoLinea->findByPresupuesto($presupuesto_id);
+ $rootIdExtern = $this->pedido_xml_config->id_offset + $pedidoLinea->pedido_id;
+
+ $remotePath = implode('/', [$this->base_dir, 'pedidos_files', $rootIdExtern]);
+
+ $this->ftp->login(username: $this->username, password: $this->password);
+
+ if (!$this->ftp->is_dir($remotePath)) {
+ return null;
+ }
+
+ $files = $model->getFiles($presupuesto_id);
+ if (empty($files)) {
+ return null;
+ }
+
+ $localTempDir = WRITEPATH . 'zip_presupuestos/' . uniqid("presupuesto_");
+ if (!is_dir($localTempDir)) {
+ mkdir($localTempDir, 0777, true);
+ }
+
+ foreach ($files as $file) {
+ $originalName = $file->nombre ?? basename($file->file_path);
+ $localFile = $localTempDir . '/' . $originalName;
+ $remoteFile = $remotePath . '/' . basename($file->file_path);
+ $this->ftp->get($remoteFile, $localFile);
+ }
+
+ $zipPath = $localTempDir . '.zip';
+ $zip = new \ZipArchive();
+ if ($zip->open($zipPath, \ZipArchive::CREATE | \ZipArchive::OVERWRITE)) {
+ foreach (glob($localTempDir . '/*') as $localFile) {
+ $zip->addFile($localFile, basename($localFile));
+ }
+ $zip->close();
+ }
+
+ // Limpieza temporal
+ foreach (glob($localTempDir . '/*') as $localFile) {
+ unlink($localFile);
+ }
+ rmdir($localTempDir);
+
+ return $zipPath;
+ }
+
+
}
diff --git a/ci4/app/Models/Albaranes/AlbaranLineaModel.php b/ci4/app/Models/Albaranes/AlbaranLineaModel.php
index 0cc160d5..9d49cd06 100755
--- a/ci4/app/Models/Albaranes/AlbaranLineaModel.php
+++ b/ci4/app/Models/Albaranes/AlbaranLineaModel.php
@@ -30,6 +30,8 @@ class AlbaranLineaModel extends \App\Models\BaseModel
'created_at',
'updated_at',
'deleted_at',
+ 'cajas',
+ 'unidades_cajas',
];
protected $useSoftDeletes = true;
@@ -52,7 +54,7 @@ class AlbaranLineaModel extends \App\Models\BaseModel
->select(
"t1.id, t1.titulo as titulo, t1.isbn as isbn, t1.ref_cliente as ref_cliente,
t1.cantidad as unidades, t1.precio_unidad as precio_unidad, t1.iva_reducido as iva_reducido,
- t1.total as total, pedidos.id AS pedido"
+ t1.total as total, pedidos.id AS pedido, t1.cajas, t1.unidades_cajas"
)
->join("pedidos_linea", "t1.pedido_linea_id = pedidos_linea.id", "left")
->join("pedidos", "pedidos_linea.pedido_id = pedidos.id", "left");
@@ -70,7 +72,7 @@ class AlbaranLineaModel extends \App\Models\BaseModel
->table($this->table . " t1")
->select(
"t1.id, t1.titulo as titulo, t1.isbn as isbn, t1.ref_cliente as ref_cliente,
- t1.cantidad as unidades, t1.precio_unidad as precio_unidad, t1.iva_reducido as iva_reducido,
+ t1.cantidad as unidades, t1.cajas, t1.unidades_cajas, t1.precio_unidad as precio_unidad, t1.iva_reducido as iva_reducido,
t1.total as total, pedidos.id AS pedido"
)
->join("pedidos_linea", "t1.pedido_linea_id = pedidos_linea.id", "left")
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..abe68ab3
--- /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/Models/Chat/ChatModel.php b/ci4/app/Models/Chat/ChatModel.php
index 5ac10631..bc3351c1 100755
--- a/ci4/app/Models/Chat/ChatModel.php
+++ b/ci4/app/Models/Chat/ChatModel.php
@@ -136,7 +136,7 @@ class ChatModel extends Model
$chatDeparmentModel = model(ChatDeparmentModel::class);
$ot = $model->find($orden_trabajo_id);
return $this->insert([
- "title" => "[OT]".$ot->id . "[" . $chatDeparmentModel->getDisplay($chat_department_id) . "]",
+ "title" => "[OT]" . $ot->id . "[" . $chatDeparmentModel->getDisplay($chat_department_id) . "]",
"orden_trabajo_id" => $orden_trabajo_id,
"chat_department_id" => $chat_department_id
]);
@@ -381,8 +381,7 @@ class ChatModel extends Model
$row->title = $row->facturaId;
$rows_new[] = $row;
- }
- elseif ($row->ordenTrabajoId) {
+ } elseif ($row->ordenTrabajoId) {
// $row->model = $facturaModel->find($row->facturaId);
$row->uri = "/chat/ot/" . $row->ordenTrabajoId . "#accordionChatOrdenTrabajo";
$row->avatar = "OT";
@@ -439,8 +438,7 @@ class ChatModel extends Model
$row->chatDisplay .= "[INTERNAL]";
$row->title = $row->facturaId;
$rows_new[] = $row;
- }
- elseif ($row->ordenTrabajoId) {
+ } elseif ($row->ordenTrabajoId) {
$row->uri = "/produccion/ordentrabajo/edit/" . $row->ordenTrabajoId . "#accordionChatOrdenTrabajo";
$row->avatar = "OT";
$row->chatDisplay .= "[INTERNAL]";
@@ -847,7 +845,7 @@ class ChatModel extends Model
->join("users u", "u.id = cm.sender_id", 'left')
->where("chats.presupuesto_id is NOT NULL", NULL, FALSE);
- if (auth()->user()->inGroup("cliente-administrador","cliente")) {
+ if (auth()->user()->inGroup("cliente-administrador", "cliente")) {
$query->where('presupuestos.cliente_id', auth()->user()->cliente_id)
->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
}
@@ -878,7 +876,7 @@ class ChatModel extends Model
->join("presupuestos", "presupuestos.id = pedidos_linea.presupuesto_id", 'left')
->where("chats.pedido_id is NOT NULL", NULL, FALSE);
- if (auth()->user()->inGroup("cliente-administrador","cliente")) {
+ if (auth()->user()->inGroup("cliente-administrador", "cliente")) {
$query->where('presupuestos.cliente_id', auth()->user()->cliente_id)
->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
}
@@ -908,10 +906,10 @@ class ChatModel extends Model
->join("facturas", "facturas.id = chats.factura_id", "left")
->where("chats.factura_id is NOT NULL", NULL, FALSE);
- if (auth()->user()->inGroup("cliente-administrador","cliente")) {
- $query->where('facturas.cliente_id', auth()->user()->cliente_id)
- ->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
- }
+ if (auth()->user()->inGroup("cliente-administrador", "cliente")) {
+ $query->where('facturas.cliente_id', auth()->user()->cliente_id)
+ ->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
+ }
return $query->groupBy('chatMessageId');
}
public function getQueryDatatableMessageOrdenTrabajo(int $user_id): BaseBuilder
@@ -938,10 +936,42 @@ class ChatModel extends Model
->join("ordenes_trabajo", "ordenes_trabajo.id = chats.orden_trabajo_id", "left")
->where("chats.orden_trabajo_id is NOT NULL", NULL, FALSE);
- if (auth()->user()->inGroup("cliente-administrador","cliente")) {
- $query->where('facturas.cliente_id', auth()->user()->cliente_id)
- ->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
- }
+ if (auth()->user()->inGroup("cliente-administrador", "cliente")) {
+ $query->where('facturas.cliente_id', auth()->user()->cliente_id)
+ ->where("chats.chat_department_id is NOT NULL", NULL, FALSE);
+ }
+ return $query->groupBy('chatMessageId');
+ }
+ public function getQueryDatatableDirectMessages(): BaseBuilder
+ {
+ $query = $this->builder()
+ ->select([
+ "chats.id",
+ "cm.id as chatMessageId",
+ "u.id as userId",
+ "cm.message",
+ "chats.created_at",
+ "
+ (
+ SELECT cm2.updated_at
+ FROM chat_messages cm2
+ WHERE cm2.chat_id = chats.id
+ ORDER BY cm2.updated_at DESC LIMIT 1
+ ) as updated_at",
+ "CONCAT(u.first_name,' ',u.last_name) as creator",
+ "chats.title as title",
+ ])
+ ->join("chat_messages cm", "chats.id = cm.chat_id", "left")
+ ->join("users u", "u.id = cm.sender_id", 'left')
+ ->where("chats.presupuesto_id", NULL)
+ ->where("chats.pedido_id", NULL)
+ ->where("chats.factura_id", NULL)
+ ->where("chats.orden_trabajo_id", NULL)
+ ->groupStart()
+ ->orWhere("cm.receiver_id",auth()->user()->id)
+ ->orWhere("cm.sender_id",auth()->user()->id)
+ ->groupEnd();
+
return $query->groupBy('chatMessageId');
}
public function createNewDirectChat(string $title, string $message, array $users)
diff --git a/ci4/app/Models/Configuracion/MaquinaModel.php b/ci4/app/Models/Configuracion/MaquinaModel.php
index d462cc08..600f7c0f 100755
--- a/ci4/app/Models/Configuracion/MaquinaModel.php
+++ b/ci4/app/Models/Configuracion/MaquinaModel.php
@@ -52,7 +52,9 @@ class MaquinaModel extends \App\Models\BaseModel
"deleted_at",
"is_deleted",
"user_created_id",
- "user_updated_id"
+ "user_updated_id",
+ "etiqueta_envio",
+ "alias_ot",
];
protected $returnType = "App\Entities\Configuracion\Maquina";
@@ -148,6 +150,10 @@ class MaquinaModel extends \App\Models\BaseModel
"label" => "Maquinas.velocidadCorte",
"rules" => "decimal",
],
+ "alias_ot" => [
+ "label" => "Maquinas.alias_ot",
+ "rules" => "max_length[255]",
+ ],
];
protected $validationMessages = [
@@ -195,6 +201,9 @@ class MaquinaModel extends \App\Models\BaseModel
"max_length" => "Maquinas.validation.nombre.max_length",
"required" => "Maquinas.validation.nombre.required",
],
+ "alias_ot" => [
+ "max_length" => "Maquinas.validation.alias.max_length"
+ ],
"observaciones" => [
"max_length" => "Maquinas.validation.observaciones.max_length",
//"required" => "Maquinas.validation.observaciones.required",
@@ -404,7 +413,9 @@ class MaquinaModel extends \App\Models\BaseModel
->select([
'lg_maquinas.id as maquinaId',
'lg_maquinas.nombre',
- 'COUNT(tarea_progress.ot_tarea_id) as countTareas'
+ 'COUNT(tarea_progress.ot_tarea_id) as countTareas',
+ 'COUNT(maquina_ot_tareas.orden_trabajo_id) as countMaquinaTareas'
+
])
->join('orden_trabajo_tareas', 'orden_trabajo_tareas.maquina_id = lg_maquinas.id', 'left')
->join(
@@ -420,6 +431,14 @@ class MaquinaModel extends \App\Models\BaseModel
'tarea_progress.ot_tarea_id = orden_trabajo_tareas.id',
'left'
)
+ ->join(
+ "(SELECT orden_trabajo_id,deleted_at,maquina_id
+ FROM maquina_ot_tareas
+ WHERE deleted_at is NULL
+ ) as maquina_ot_tareas",
+ 'maquina_ot_tareas.maquina_id = lg_maquinas.id',
+ 'left'
+ )
->join('ordenes_trabajo', 'ordenes_trabajo.id = orden_trabajo_tareas.orden_trabajo_id', 'left')
->join('pedidos', 'pedidos.id = ordenes_trabajo.pedido_id', 'left')
->where('lg_maquinas.tipo', $maquina_tipo)
diff --git a/ci4/app/Models/Configuracion/MaquinaOtTareaModel.php b/ci4/app/Models/Configuracion/MaquinaOtTareaModel.php
new file mode 100755
index 00000000..dce7d17e
--- /dev/null
+++ b/ci4/app/Models/Configuracion/MaquinaOtTareaModel.php
@@ -0,0 +1,66 @@
+builder()
+ ->select([
+ 'maquina_ot_tareas.id as maquinaOtTareaId',
+ 'ordenes_trabajo.id as otId'
+ ])
+ ->join('ordenes_trabajo','ordenes_trabajo.id = maquina_ot_tareas.orden_trabajo_id','left')
+ ->where('maquina_ot_tareas.maquina_id',$maquina_id)
+ ->where('maquina_ot_tareas.deleted_at',null);
+
+ }
+
+
+}
diff --git a/ci4/app/Models/Configuracion/PapelGenericoModel.php b/ci4/app/Models/Configuracion/PapelGenericoModel.php
index 118dadf2..d4a18445 100755
--- a/ci4/app/Models/Configuracion/PapelGenericoModel.php
+++ b/ci4/app/Models/Configuracion/PapelGenericoModel.php
@@ -433,7 +433,7 @@ class PapelGenericoModel extends \App\Models\BaseModel
4.-> papeles genericos que aparecen en esos papeles impresion
*/
- if ($POD == true && ($tipo == 'color' || $tipo == 'negro')) {
+ if ($POD == true && ($tipo == 'color')) {
if ($tipo == 'color')
$tipo = 'colorhq';
else if ($tipo == 'negro')
diff --git a/ci4/app/Models/Configuracion/PapelImpresionModel.php b/ci4/app/Models/Configuracion/PapelImpresionModel.php
index fc03ccae..d816b9c6 100755
--- a/ci4/app/Models/Configuracion/PapelImpresionModel.php
+++ b/ci4/app/Models/Configuracion/PapelImpresionModel.php
@@ -13,20 +13,22 @@ class PapelImpresionModel extends \App\Models\BaseModel
protected $useAutoIncrement = true;
const SORTABLE = [
- 0 => "t1.nombre",
- 1 => "t2.nombre",
- 2 => "t1.gramaje",
- 3 => "t1.interior",
- 4 => "t1.bn",
- 5 => "t1.color",
- 6 => "t1.cubierta",
- 7 => "t1.use_for_tapa_dura",
- 8 => "t1.sobrecubierta",
- 9 => "t1.guardas",
- 10 => "t1.inkjet",
- 11 => "t1.rotativa",
- 12 => "t1.isActivo",
- 13 => "t1.use_in_client",
+ 0 => "t1.id",
+ 1 => "t1.nombre",
+ 2 => "t2.nombre",
+ 3 => "t1.gramaje",
+ 4 => "t1.interior",
+ 5 => "t1.bn",
+ 6 => "t1.color",
+ 7 => "t1.cubierta",
+ 8 => "t1.use_for_tapa_dura",
+ 9 => "t1.sobrecubierta",
+ 10 => "t1.guardas",
+ 11 => "t1.inkjet",
+ 12 => "t1.rotativa",
+ 13 => "t1.isActivo",
+ 14 => "t1.use_in_client",
+ 15 => "t1.precio_tonelada",
];
@@ -173,7 +175,7 @@ class PapelImpresionModel extends \App\Models\BaseModel
->groupStart()
->like("t1.nombre", $search)
->orLike("t1.gramaje", $search)
- ->orLike("t1.nombre", $search)
+ ->orLike("t1.precio_tonelada", $search)
->orLike("t1.gramaje", $search)
->orLike("t2.nombre", $search)
->groupEnd();
diff --git a/ci4/app/Models/Configuracion/SelectorCalidadImpresionModel.php b/ci4/app/Models/Configuracion/SelectorCalidadImpresionModel.php
new file mode 100644
index 00000000..f0d54847
--- /dev/null
+++ b/ci4/app/Models/Configuracion/SelectorCalidadImpresionModel.php
@@ -0,0 +1,71 @@
+getVariable('POD')->value);
+ $isPoD = $tirada <= $pod ? 1 : 0;
+ $builder = $this->db
+ ->table($this->table . " t1")
+ ->select('output_isColor, output_isHq')
+ ->where('alias', $alias)
+ ->where('input_isColor', $isColor)
+ ->where('input_isHq', $isHq)
+ ->where('isPod', $isPoD)
+ ->where('deleted_at', null);
+ if ($cliente_id) {
+ $builder->where('cliente_id', $cliente_id);
+ }
+
+ $output_isColor = 0;
+ $output_isHq = 0;
+
+ $result = $builder->get()->getRowArray();
+ if ($result){
+ $output_isColor = $result['output_isColor'];
+ $output_isHq = $result['output_isHq'];
+
+ return [
+ 'status' => true,
+ 'isColor' => $output_isColor,
+ 'isHq' => $output_isHq,
+ ];
+ } else {
+ return [
+ 'status' => false,
+ 'isColor' => $output_isColor,
+ 'isHq' => $output_isHq,
+ ];
+ }
+ }
+
+}
diff --git a/ci4/app/Models/Etiquetas/EtiquetasTitulosLineasModel.php b/ci4/app/Models/Etiquetas/EtiquetasTitulosLineasModel.php
new file mode 100644
index 00000000..a98b0ef1
--- /dev/null
+++ b/ci4/app/Models/Etiquetas/EtiquetasTitulosLineasModel.php
@@ -0,0 +1,108 @@
+user()->id;
+
+ if (!isset($data['data'])) {
+ $data['data'] = [];
+ }
+
+ if (!empty($data['id'])) {
+ $builder = $this->builder();
+ $builder->whereIn($this->primaryKey, (array) $data['id'])
+ ->update(['user_deleted_at' => $userId]);
+ }
+ return $data;
+ }
+
+ protected function addUserUpdated(array $data)
+ {
+ $userId = auth()->user()->id;
+
+ if (!isset($data['data'])) {
+ $data['data'] = [];
+ }
+
+ if (!empty($data['id'])) {
+ $builder = $this->builder();
+ $builder->whereIn($this->primaryKey, (array) $data['id'])
+ ->update(['user_updated_at' => $userId]);
+ }
+ return $data;
+ }
+
+ public function getDatatableQuery($etiqueta_id, $direccion = null)
+ {
+ $direccionNormalizada = str_replace(' ', '', strtolower(trim($direccion)));
+
+ // Subconsulta: suma de pesos por presupuesto
+ $subPeso = $this->db->table('presupuesto_linea')
+ ->select('presupuesto_id, ROUND(SUM(peso)/1000, 2) as pesoUnidad')
+ ->groupBy('presupuesto_id');
+
+ $builder = $this->db->table('etiquetas_titulos_lineas etl')
+ ->select('
+ etl.id as id,
+ etl.ot_id as ot,
+ pr.titulo as titulo,
+ etl.unidades as unidades,
+ etl.numero_caja as numero_caja,
+ etl.numero_caja as numero_caja_raw,
+ pd.cantidad as unidadesTotal,
+ etl.id as id,
+ etl.unidades as unidadesRaw,
+ peso_sub.pesoUnidad
+ ')
+ ->join('etiquetas_titulos et', 'et.id = etl.etiqueta_titulos_id')
+ ->join('ordenes_trabajo ot', 'ot.id = etl.ot_id')
+ ->join('pedidos p', 'p.id = ot.pedido_id')
+ ->join('pedidos_linea pl', 'pl.pedido_id = p.id')
+ ->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
+ ->join("({$subPeso->getCompiledSelect()}) as peso_sub", 'peso_sub.presupuesto_id = pr.id', 'left')
+ ->join('presupuesto_direcciones pd', 'pd.presupuesto_id = pr.id')
+ ->where('etl.deleted_at IS NULL')
+ ->where('et.id', $etiqueta_id)
+ ->where("REPLACE(LOWER(TRIM(pd.direccion)), ' ', '') = '{$direccionNormalizada}'", null, false)
+ ->orderBy('etl.numero_caja');
+
+ return $builder;
+ }
+
+}
diff --git a/ci4/app/Models/Etiquetas/EtiquetasTitulosModel.php b/ci4/app/Models/Etiquetas/EtiquetasTitulosModel.php
new file mode 100644
index 00000000..3ad4cec8
--- /dev/null
+++ b/ci4/app/Models/Etiquetas/EtiquetasTitulosModel.php
@@ -0,0 +1,82 @@
+user()->id;
+
+ if (!isset($data['data'])) {
+ $data['data'] = [];
+ }
+
+ if (!empty($data['id'])) {
+ $builder = $this->builder();
+ $builder->whereIn($this->primaryKey, (array) $data['id'])
+ ->update(['user_deleted_at' => $userId]);
+ }
+ return $data;
+ }
+
+ protected function addUserUpdated(array $data)
+ {
+ $userId = auth()->user()->id;
+
+ if (!isset($data['data'])) {
+ $data['data'] = [];
+ }
+
+ if (!empty($data['id'])) {
+ $builder = $this->builder();
+ $builder->whereIn($this->primaryKey, (array) $data['id'])
+ ->update(['user_updated_at' => $userId]);
+ }
+ return $data;
+ }
+
+ public function getEtiquetasTitulos()
+ {
+ return $this->db->table('etiquetas_titulos et')
+ ->select('et.id, GROUP_CONCAT(DISTINCT etl.ot_id ORDER BY etl.ot_id ASC SEPARATOR ", ") as lista_ots')
+ ->select('COUNT(DISTINCT etl.numero_caja) as cajas, et.att, et.direccion')
+ ->join('etiquetas_titulos_lineas etl', 'etl.etiqueta_titulos_id = et.id')
+ ->where('et.deleted_at IS NULL')
+ ->where('etl.deleted_at IS NULL')
+ ->groupBy('et.id, et.att, et.direccion');
+ }
+}
diff --git a/ci4/app/Models/Facturas/FacturaModel.php b/ci4/app/Models/Facturas/FacturaModel.php
index 7c2c8142..1cfbddb0 100755
--- a/ci4/app/Models/Facturas/FacturaModel.php
+++ b/ci4/app/Models/Facturas/FacturaModel.php
@@ -27,9 +27,9 @@ class FacturaModel extends \App\Models\BaseModel
];
const SORTABLE_PEDIDOS = [
- 1 => "t1.numero",
- 2 => "t2.nombre",
- 3 => "t4.cantidad",
+ 1 => "t1.id",
+ 2 => "t1.numero",
+ 3 => "t4.ejemplares",
4 => "t2.nombre",
5 => "t1.estado",
6 => "t1.fecha_factura_at",
@@ -129,7 +129,7 @@ class FacturaModel extends \App\Models\BaseModel
$builder->join("clientes t2", "t2.id = t1.cliente_id", "left");
$builder->join("facturas_pagos t3", "t3.factura_id = t1.id", "left");
$builder->join("formas_pago t4", "t3.forma_pago_id = t4.id", "left");
-
+
$builder->where("t1.deleted_at", null);
if (auth()->user()->inGroup("cliente-admin") || auth()->user()->inGroup("cliente-editor")) {
@@ -140,7 +140,7 @@ class FacturaModel extends \App\Models\BaseModel
$builder->where("t1.cliente_id", $cliente_id);
}
- $builder->groupBy("t1.id");
+ $builder->groupBy("t1.id");
//$query = $builder->getCompiledSelect();
return $builder;
}
@@ -166,9 +166,10 @@ class FacturaModel extends \App\Models\BaseModel
return !empty($result);
}
- public function getSumatoriosFacturacionCliente($cliente_id = -1){
+ public function getSumatoriosFacturacionCliente($cliente_id = -1)
+ {
- if($cliente_id == -1){
+ if ($cliente_id == -1) {
return [
'total_facturacion' => 0,
'total_pendiente' => 0
@@ -183,7 +184,7 @@ class FacturaModel extends \App\Models\BaseModel
->where('f.estado', 'validada')
->get()
->getResultObject();
- $result['total_facturacion'] =
+ $result['total_facturacion'] =
round(floatval(($data && $data[0]->total != null) ? $data[0]->total : 0), 2);
$data = $this->db->table('facturas f')
@@ -253,7 +254,17 @@ class FacturaModel extends \App\Models\BaseModel
$builder->join("pedidos t6", "t5.pedido_id = t6.id", "left");
$builder->where("t1.deleted_at IS NULL");
- $builder->where("t6.id", $pedido_id);
+ $builder->groupStart()
+ ->where("t6.id", $pedido_id)
+ ->orWhere("t1.factura_rectificada_id IN (
+ SELECT f.numero
+ FROM facturas f
+ JOIN facturas_pedidos_lineas fpl ON f.id = fpl.factura_id
+ JOIN pedidos_linea pl ON fpl.pedido_linea_id = pl.id
+ JOIN pedidos p ON pl.pedido_id = p.id
+ WHERE p.id = {$pedido_id}
+ )")
+ ->groupEnd();
$builder->groupBy("t1.id"); // Agrupa por id de la factura
diff --git a/ci4/app/Models/Logistica/EnvioLineaModel.php b/ci4/app/Models/Logistica/EnvioLineaModel.php
index a50709d3..76ae7b9b 100644
--- a/ci4/app/Models/Logistica/EnvioLineaModel.php
+++ b/ci4/app/Models/Logistica/EnvioLineaModel.php
@@ -35,7 +35,7 @@ class EnvioLineaModel extends Model
$builder = $this->db
->table($this->table . " t1")
->select(
- "t1.id, t1.pedido_id as pedido, t3.id as presupuesto,
+ "t1.id, t1.pedido_id as pedido, t3.id as presupuesto, t4.id as ordenTrabajo,
t3.titulo as titulo, t1.unidades_envio as unidadesEnvio, t1.unidades_envio as unidadesEnvioRaw,
t1.unidades_total as unidadesTotal, t2.tipo_envio as tipo_envio,
IFNULL((
@@ -59,6 +59,7 @@ class EnvioLineaModel extends Model
);
$builder->join("envios t2", "t1.envio_id = t2.id", "left");
$builder->join("presupuestos t3", "t1.presupuesto_id = t3.id", "left");
+ $builder->join("ordenes_trabajo t4", "t1.pedido_id = t4.pedido_id", "left");
$builder->where("t1.envio_id", $envio_id);
diff --git a/ci4/app/Models/OrdenTrabajo/OrdenTrabajoModel.php b/ci4/app/Models/OrdenTrabajo/OrdenTrabajoModel.php
index 3dc9a95f..5c81a5ab 100755
--- a/ci4/app/Models/OrdenTrabajo/OrdenTrabajoModel.php
+++ b/ci4/app/Models/OrdenTrabajo/OrdenTrabajoModel.php
@@ -5,6 +5,7 @@ namespace App\Models\OrdenTrabajo;
use App\Entities\Produccion\OrdenTrabajoEntity;
use CodeIgniter\Database\BaseBuilder;
use CodeIgniter\Model;
+
class OrdenTrabajoModel extends Model
{
protected $table = 'ordenes_trabajo';
@@ -39,7 +40,10 @@ class OrdenTrabajoModel extends Model
"enviar_impresion",
"portada_path",
"is_pedido_espera",
- "pedido_espera_by"
+ "pedido_espera_by",
+ "preimpresion_revisada",
+ "preimpresion_revisada_by",
+
];
protected bool $allowEmptyInserts = false;
@@ -72,41 +76,92 @@ class OrdenTrabajoModel extends Model
protected $beforeDelete = [];
protected $afterDelete = [];
- public function getDatatableQuery() : BaseBuilder
+ public function getDatatableQuery(): BaseBuilder
{
$q = $this->builder()
- ->select([
- "ordenes_trabajo.id",
- "ordenes_trabajo.pedido_id",
- "pedidos.fecha_encuadernado as fecha_encuadernado_at",
- "clientes.nombre as cliente_nombre",
- "presupuestos.titulo as presupuesto_titulo",
- "ordenes_trabajo.estado",
- "ubicaciones.nombre as ubicacion_nombre",
- "pedidos.total_tirada",
- "tipos_presupuestos.codigo as tipo_presupuesto_impresion",
- "ordenes_trabajo.progreso",
- "presupuesto_linea.tipo as presupuesto_linea_tipo",
- "orden_trabajo_dates.ferro_ok_at",
- "CONCAT(lg_imposiciones.ancho,'x',lg_imposiciones.alto,'_',COALESCE(lg_imposiciones.unidades,'NULL'),'_',COALESCE(lg_imposiciones.orientacion,'NULL')) as imposicion_name"
+ ->select([
+ "ordenes_trabajo.id",
+ "ordenes_trabajo.pedido_id",
+ "pedidos.fecha_encuadernado as fecha_encuadernado_at",
+ "clientes.nombre as cliente_nombre",
+ "presupuestos.titulo as presupuesto_titulo",
+ "ordenes_trabajo.estado",
+ "ubicaciones.nombre as ubicacion_nombre",
+ "pedidos.total_tirada",
+ "tipos_presupuestos.codigo as tipo_presupuesto_impresion",
+ "ordenes_trabajo.progreso",
+ "presupuesto_linea.tipo as presupuesto_linea_tipo",
+ "orden_trabajo_dates.ferro_ok_at",
+ "CONCAT(lg_imposiciones.ancho,'x',lg_imposiciones.alto,'_',COALESCE(lg_imposiciones.unidades,'NULL'),'_',COALESCE(lg_imposiciones.orientacion,'NULL')) as imposicion_name"
- ])
- ->join("orden_trabajo_dates","orden_trabajo_dates.orden_trabajo_id = ordenes_trabajo.id","left")
- ->join("pedidos","pedidos.id = ordenes_trabajo.pedido_id","left")
- ->join("pedidos_linea","pedidos.id = pedidos_linea.pedido_id","left")
- ->join("presupuestos","presupuestos.id = pedidos_linea.presupuesto_id","left")
- ->join("presupuesto_linea","presupuestos.id = presupuesto_linea.presupuesto_id","left")
- ->join("clientes","clientes.id = presupuestos.cliente_id","left")
- ->join("tipos_presupuestos","presupuestos.tipo_impresion_id = tipos_presupuestos.id","left")
- ->join("ubicaciones","ubicaciones.id = pedidos_linea.ubicacion_id","left")
- ->join("orden_trabajo_tareas","orden_trabajo_tareas.orden_trabajo_id = ordenes_trabajo.id","left")
- ->join("lg_imposiciones","lg_imposiciones.id = orden_trabajo_tareas.imposicion_id","left")
+ ])
+ ->join("orden_trabajo_dates", "orden_trabajo_dates.orden_trabajo_id = ordenes_trabajo.id", "left")
+ ->join("pedidos", "pedidos.id = ordenes_trabajo.pedido_id", "left")
+ ->join("pedidos_linea", "pedidos.id = pedidos_linea.pedido_id", "left")
+ ->join("presupuestos", "presupuestos.id = pedidos_linea.presupuesto_id", "left")
+ ->join("presupuesto_linea", "presupuestos.id = presupuesto_linea.presupuesto_id", "left")
+ ->join("clientes", "clientes.id = presupuestos.cliente_id", "left")
+ ->join("tipos_presupuestos", "presupuestos.tipo_impresion_id = tipos_presupuestos.id", "left")
+ ->join("ubicaciones", "ubicaciones.id = pedidos_linea.ubicacion_id", "left")
+ ->join("orden_trabajo_tareas", "orden_trabajo_tareas.orden_trabajo_id = ordenes_trabajo.id", "left")
+ ->join("lg_imposiciones", "lg_imposiciones.id = orden_trabajo_tareas.imposicion_id", "left")
- ->whereIn("presupuesto_linea.tipo",["lp_bn","lp_bnhq","lp_rot_bn","lp_color","lp_colorhq","lp_rot_color"])
- ->where("ordenes_trabajo.deleted_at",null)
- ->groupBy("ordenes_trabajo.id");
+ ->whereIn("presupuesto_linea.tipo", ["lp_bn", "lp_bnhq", "lp_rot_bn", "lp_color", "lp_colorhq", "lp_rot_color"])
+ ->where("ordenes_trabajo.deleted_at", null)
+ ->groupBy("ordenes_trabajo.id");
return $q;
}
+ public function queryMaquinaTareas(int $maquina_id, ?array $tareaEstados = null)
+ {
+ $query = $this->builder()->select([
+ 'orden_trabajo_tareas.*',
+ 'tarea_progress.estado'
+ ])
+ ->join('orden_trabajo_tareas', 'orden_trabajo_tareas.orden_trabajo_id = ordenes_trabajo.id', 'left')
+ ->join('lg_maquinas', 'orden_trabajo_tareas.maquina_id = lg_maquinas.id', 'left');
+ //* Obtener el ultimo estado de la tarea
+ if ($tareaEstados) {
+ $query->join(
+ '(SELECT ot_tarea_id, estado
+ FROM orden_trabajo_tarea_progress_dates
+ WHERE (ot_tarea_id, created_at) IN (
+ SELECT ot_tarea_id, MAX(created_at)
+ FROM orden_trabajo_tarea_progress_dates
+ GROUP BY ot_tarea_id
+ )
+ ) as tarea_progress',
+ 'tarea_progress.ot_tarea_id = orden_trabajo_tareas.id',
+ 'left'
+ )
+ ->groupStart()
+ ->whereIn('tarea_progress.estado', $tareaEstados)
+ ->orWhere('tarea_progress.estado',null)
+ ->groupEnd();
+ }
+ $query->where('orden_trabajo_tareas.deleted_at', null)
+ ->where('lg_maquinas.id', $maquina_id)
+ ->groupBy('orden_trabajo_tareas.id');
+ return $query;
+ }
-
+ public function queryProximosEnvios()
+ {
+ $query = $this->builder()
+ ->select([
+ 'ordenes_trabajo.id as ot',
+ 'orden_trabajo_dates.encuadernacion_at as fechaEncuadernado',
+ ])
+ ->join('pedidos', 'pedidos.id = ordenes_trabajo.pedido_id', 'left')
+ ->join('pedidos_linea', 'pedidos.id = pedidos_linea.pedido_id', 'left')
+ ->join('presupuestos', 'presupuestos.id = pedidos_linea.presupuesto_id', 'left')
+ ->join('presupuesto_direcciones', 'presupuestos.id = presupuesto_direcciones.presupuesto_id', 'left')
+ ->join('orden_trabajo_dates', 'orden_trabajo_dates.orden_trabajo_id = ordenes_trabajo.id', 'left')
+ ->where('ordenes_trabajo.deleted_at', null)
+ ->where('orden_trabajo_dates.encuadernacion_at !=', null)
+
+ //->where('orden_trabajo_dates.fecha_encuadernado_at >=', 0)
+ //->where('ordenes_trabajo.fecha_entrega_warning >=', date("Y-m-d H:i:s"))
+ ->groupBy('ordenes_trabajo.id');
+ return $query;
+ }
}
diff --git a/ci4/app/Models/OrdenTrabajo/OrdenTrabajoTareaProgressDate.php b/ci4/app/Models/OrdenTrabajo/OrdenTrabajoTareaProgressDate.php
index 00b09b7a..79904d05 100644
--- a/ci4/app/Models/OrdenTrabajo/OrdenTrabajoTareaProgressDate.php
+++ b/ci4/app/Models/OrdenTrabajo/OrdenTrabajoTareaProgressDate.php
@@ -3,6 +3,7 @@
namespace App\Models\OrdenTrabajo;
use App\Entities\Produccion\OrdenTrabajoTareaEntity;
+use App\Entities\Produccion\OrdenTrabajoTareaProgressDateEntity;
use CodeIgniter\Database\MySQLi\Builder;
use CodeIgniter\Model;
@@ -11,7 +12,7 @@ class OrdenTrabajoTareaProgressDate extends Model
protected $table = 'orden_trabajo_tarea_progress_dates';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
- protected $returnType = OrdenTrabajoTareaEntity::class;
+ protected $returnType = OrdenTrabajoTareaProgressDateEntity::class;
protected $useSoftDeletes = true;
protected $protectFields = true;
protected $allowedFields = [
diff --git a/ci4/app/Models/Presupuestos/BuscadorModel.php b/ci4/app/Models/Presupuestos/BuscadorModel.php
index df051c59..8eb6af36 100755
--- a/ci4/app/Models/Presupuestos/BuscadorModel.php
+++ b/ci4/app/Models/Presupuestos/BuscadorModel.php
@@ -20,7 +20,7 @@ class BuscadorModel extends \App\Models\BaseModel
3 => "t2.nombre",
4 => "t3.first_name",
5 => "t1.titulo",
- 6 => "t5.nombre",
+ 6 => "t1.referencia_cliente",
7 => "t1.inc_rei",
8 => "t1.paginas",
9 => "t1.tirada",
@@ -127,13 +127,12 @@ class BuscadorModel extends \App\Models\BaseModel
->select(
"t1.id AS id, t1.created_at AS fecha, t7.codigo as codigo, t2.nombre AS cliente,
CONCAT(t3.first_name, ' ', t3.last_name) AS comercial, t1.titulo AS titulo,
- t5.nombre AS pais, t1.inc_rei AS inc_rei, t1.paginas AS paginas, t1.tirada AS tirada,
+ t1.referencia_cliente AS refCliente, t1.inc_rei AS inc_rei, t1.paginas AS paginas, t1.tirada AS tirada,
t1.total_presupuesto AS total_presupuesto, t1.total_presupuesto AS total_presupuesto,
t6.estado AS estado"
);
$builder->join("clientes t2", "t1.cliente_id = t2.id", "left");
$builder->join("users t3", "t2.comercial_id = t3.id", "left");
- $builder->join("lg_paises t5", "t1.pais_id = t5.id", "left");
$builder->join("presupuesto_estados t6", "t1.estado_id = t6.id", "left");
$builder->join("tipos_presupuestos t7", "t1.tipo_impresion_id = t7.id", "left");
diff --git a/ci4/app/Models/Presupuestos/ImportadorModel.php b/ci4/app/Models/Presupuestos/ImportadorModel.php
index 76d01904..bb8c4ee0 100755
--- a/ci4/app/Models/Presupuestos/ImportadorModel.php
+++ b/ci4/app/Models/Presupuestos/ImportadorModel.php
@@ -8,7 +8,8 @@ class ImportadorModel extends \App\Models\BaseModel
protected $primaryKey = 'id';
protected $DBGroup = 'old_erp';
- public function getClientList(){
+ public function getClientList()
+ {
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$builder = $db->table('customers');
@@ -19,29 +20,31 @@ class ImportadorModel extends \App\Models\BaseModel
}
- public function getPresupuestosList($clienteId, $search = ""){
-
+ public function getPresupuestosList($clienteId, $search = "")
+ {
+
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$builder = $db->table('pedido_libro');
$builder->select('id as id, CONCAT(id, " - ", titulo) as name');
$builder->where('customer_id', $clienteId);
- $builder->whereIn('estado', ['finalizado', 'validado']);
+ $builder->whereIn('estado', ['finalizado', 'validado', 'presupuesto']);
$builder->where('deleted_at', NULL);
$builder->orderBy('updated_at', 'DESC');
-
- return empty($search) ?
- $builder->get()->getResultObject() :
+
+ return empty($search) ?
+ $builder->get()->getResultObject() :
$builder->groupStart()->
like('titulo', $search)->
- orLike('id', $search)->
+ orLike('id', $search)->
groupEnd()->get()->getResultObject();
}
- public function getPresupuestoForImport($id){
-
+ public function getPresupuestoForImport($id)
+ {
+
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$builder = $db->table('pedido_libro t1')
- ->select('t1.paginas, t1.tirada, t1.papel_formato_personalizado,
+ ->select('t1.paginas, t1.tirada, t1.papel_formato_personalizado, t1.customer_id,
t1.papel_formato_ancho as papel_formato_personalizado_ancho,
t1.papel_formato_alto as papel_formato_personalizado_alto,
t2.ancho as papel_formato_ancho, t2.alto as papel_formato_alto,
@@ -50,7 +53,7 @@ class ImportadorModel extends \App\Models\BaseModel
->where('t1.id', $id)
->where('t1.deleted_at', NULL);
$query = $builder->get();
- $datosGenerales = $query->getRow();
+ $datosGenerales = $query->getRow();
$builder = $db->table('pedido_libro_manipulado')
->select('nombre')
@@ -69,10 +72,9 @@ class ImportadorModel extends \App\Models\BaseModel
->where('pedido_libro_id', $id)
->where('nombre', 'Prototipo');
$query = $builder->countAllResults();
- if($query > 0){
+ if ($query > 0) {
$datosGenerales->prototipo = 1;
- }
- else{
+ } else {
$datosGenerales->prototipo = 0;
}
@@ -85,7 +87,7 @@ class ImportadorModel extends \App\Models\BaseModel
$query = $builder->get();
$lineas = $query->getResultObject();
-
+
return [
'datosGenerales' => $datosGenerales,
'manipulados' => $manipulados,
@@ -95,8 +97,9 @@ class ImportadorModel extends \App\Models\BaseModel
}
- public function getDatosGuardar($id){
-
+ public function getDatosGuardar($id)
+ {
+
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$builder = $db->table('pedido_libro t1')
@@ -107,12 +110,13 @@ class ImportadorModel extends \App\Models\BaseModel
->where('t1.id', $id)
->where('t1.deleted_at', NULL);
$query = $builder->get();
- $datosGenerales = $query->getRow();
+ $datosGenerales = $query->getRow();
return $query->getRow();
}
- public function getDirecciones($id){
-
+ public function getDirecciones($id)
+ {
+
$db = \Config\Database::connect($this->DBGroup); // Conectar a olderp
$builder = $db->table('pedido_libro_envios t1')
->select('t1.ejemplares as unidades, t1.att, t1.email, t1.direccion, t1.pais,
@@ -123,6 +127,29 @@ class ImportadorModel extends \App\Models\BaseModel
return $query->getResultObject();
}
+ public function getHistoricoPedidosCatalogo(?int $catalogoId = null)
+ {
+ $db = \Config\Database::connect($this->DBGroup);
+
+ $builder = $db->table('pedido_libro t1')
+ ->select(
+ 't1.id,
+ t1.created_at,
+ t1.tirada,
+ (CASE
+ WHEN t1.tirada > 0 THEN t1.total / t1.tirada
+ ELSE 0
+ END) AS precio_ud,
+ t1.total,
+ t1.estado');
+
+ if ($catalogoId !== null) {
+ $builder->where('t1.catalogo_id', $catalogoId);
+ }
+
+ return $builder;
+ }
+
}
diff --git a/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php b/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
index 562c40fc..91541f0d 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php
@@ -305,17 +305,17 @@ class PresupuestoAcabadosModel extends \App\Models\BaseModel
$precio_unidad = $tarifa->precio_max;
$precio_unidad = $precio_unidad * (1 + floatval($tarifa->margen) / 100.0);
- if (!$is_POD) {
- $precio_unidad += floatval($tarifa->tarifa_importe_fijo)/floatval($tirada);
- }
-
$total = $precio_unidad * $tirada;
$margen = floatval($tarifa->margen);
+ $tarifa_precio_min = floatval($tarifa->tarifa_precio_min);
- if ($tarifa->tarifa_precio_min > $total) {
- $total = $total - ($total * $margen / 100.0);
- $margen = round(100.0 * (floatval($tarifa->tarifa_precio_min) - $total) / floatval($tarifa->tarifa_precio_min), 0);
- $total = floatval($tarifa->tarifa_precio_min);
+ if ($tarifa_precio_min * (1 + floatval($tarifa->margen) / 100.0) > $total) {
+ $total = $tarifa_precio_min * (1 + floatval($tarifa->margen)/100.0);
+ $precio_unidad = round(floatval($total / $tirada), 2);
+ }
+
+ if (!$is_POD) {
+ $total += floatval($tarifa->tarifa_importe_fijo) ;
$precio_unidad = round(floatval($total / $tirada), 2);
}
diff --git a/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php b/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php
index 44614da1..ea73f682 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php
@@ -86,6 +86,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'tarifa_nombre' => $tarifa_proveedor->tarifa_enc_nombre,
'nombre' => $tarifa_proveedor->tarifa_enc_nombre,
'precio_unidad' => $result_data[0],
+ 'importe_fijo' => $tarifa_proveedor->importe_fijo,
'tiempo' => $tiempo,
'total' => $result_data[1],
'precio_total' => $result_data[1],
@@ -124,6 +125,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'nombre' => $tarifa['tarifa_nombre'],
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad' => 0,
+ 'importe_fijo' => 0,
'tiempo' => null,
'total' => 0,
'precio_total' => 0,
@@ -143,6 +145,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'tarifa_nombre' => $tarifa_proveedor->tarifa_enc_nombre,
'nombre' => $tarifa_proveedor->tarifa_enc_nombre,
'precio_unidad' => $result_data[0],
+ 'importe_fijo' => $tarifa_proveedor->importe_fijo,
'tiempo' => null,
'total' => $result_data[1],
'precio_total' => $result_data[1],
@@ -170,6 +173,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'nombre' => $tarifa['tarifa_nombre'],
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad' => 0,
+ 'importe_fijo' => 0,
'tiempo' => null,
'total' => 0,
'precio_total' => 0,
@@ -228,6 +232,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
array_push($ret_array, (object) [
'tarifa_id' => $tarifa->tarifa_enc_id,
'tarifa_nombre' => $tarifa->tarifa_enc_nombre,
+ 'importe_fijo' => $tarifa->importe_fijo,
'nombre' => $tarifa->tarifa_enc_nombre,
'precio_unidad' => $result_data[0],
'tiempo' => null,
@@ -254,6 +259,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'nombre' => $modelTarifa->getNombreTarifaEncuadernacion($tarifa_encuadernacion_id)[0]->nombre,
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad' => 0,
+ 'importe_fijo' => 0,
'tiempo' => null,
'total' => 0,
'precio_total' => 0,
@@ -309,6 +315,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'precio_unidad' => $result_data[0],
'tiempo' => $tiempo,
'paginas_por_cuadernillo' => $paginas_cuadernillo,
+ 'importe_fijo' => $tarifa_proveedor->importe_fijo,
'precio_total' => $result_data[1],
'total' => $result_data[1],
'margen' => $result_data[2],
@@ -334,6 +341,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
'nombre' => $modelTarifa->getNombreTarifaEncuadernacion($tarifa_encuadernacion_id)[0]->nombre,
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad' => 0,
+ 'importe_fijo' => 0,
'tiempo' => null,
'paginas_por_cuadernillo' => null,
'total' => 0,
@@ -351,22 +359,23 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
$precio_unidad = floatval($tarifa->precio_max) - (floatval($tarifa->precio_max) - floatval($tarifa->precio_min)) / ($tarifa->paginas_max - $tarifa->paginas_min) * ($paginas - $tarifa->paginas_min);
if ($paginas > $tarifa->paginas_max)
$precio_unidad = $tarifa->precio_max;
- $precio_unidad = $precio_unidad * (1 + floatval($tarifa->margen) / 100.0);
-
- if (!$is_POD) {
- $precio_unidad += floatval($tarifa->tarifa_importe_fijo) / floatval($ejemplares);
- }
+ $precio_unidad = $precio_unidad * (1 + floatval($tarifa->margen)/100.0);
$precio_unidad = round($precio_unidad, 2);
$total = $precio_unidad * $ejemplares;
$margen = floatval($tarifa->margen);
+
$tarifa_precio_min = floatval($tarifa->tarifa_precio_min);
- if ($tarifa_precio_min > $total) {
- $total = $total - ($total * $margen / 100.0);
- $margen = round(100.0 * (floatval($tarifa_precio_min) - $total) / floatval($tarifa_precio_min), 0);
- $total = floatval($tarifa_precio_min);
+ if ($tarifa_precio_min * (1 + floatval($tarifa->margen) / 100.0) > $total) {
+
+ $total = $tarifa_precio_min * (1 + floatval($tarifa->margen)/100.0);
+ $precio_unidad = round(floatval($total / $ejemplares), 2);
+
+ }
+ if (!$is_POD) {
+ $total += floatval($tarifa->tarifa_importe_fijo) ;
$precio_unidad = round(floatval($total / $ejemplares), 2);
}
@@ -459,18 +468,66 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
*/
public function getResource($presupuesto_id = -1)
{
- $builder = $this->db
- ->table($this->table . " t1")
- ->select(
- "t1.id AS id, t1.tarifa_encuadernado_id AS tarifa_encuadernado_id, t1.precio_unidad AS precio_unidad, t1.tiempo AS tiempo,
- t1.precio_total AS precio_total, t1.margen AS margen, t2.nombre AS nombre, t1.proveedor_id AS proveedor_id, t3.nombre AS proveedor,
- t1.paginas_por_cuadernillo AS paginas_por_cuadernillo"
- );
-
- $builder->where('t1.presupuesto_id', $presupuesto_id);
- $builder->join("tarifa_encuadernacion t2", "t1.tarifa_encuadernado_id = t2.id", "left");
- $builder->join("lg_proveedores t3", "t1.proveedor_id = t3.id", "left");
-
+
+ $builder = $this->db->table('presupuesto_encuadernaciones t1')
+ ->select("
+ t1.id AS id,
+ t1.tarifa_encuadernado_id AS tarifa_encuadernado_id,
+ t1.precio_unidad AS precio_unidad,
+ t1.tiempo AS tiempo,
+ t1.precio_total AS precio_total,
+ t1.margen AS margen,
+ t2.nombre AS nombre,
+ t1.proveedor_id AS proveedor_id,
+ t3.nombre AS proveedor,
+ t1.paginas_por_cuadernillo AS paginas_por_cuadernillo,
+ presupuestos.tirada AS tirada,
+ CASE
+ WHEN t2.por_horas = 0 THEN (
+ SELECT t2_sub.importe_fijo
+ FROM tarifa_encuadernacion_tiradas t2_sub
+ JOIN tarifa_encuadernacion_lineas t3_sub ON t2_sub.id = t3_sub.tirada_encuadernacion_id
+ JOIN tarifa_encuadernacion_dimensiones t4_sub ON t3_sub.dimensiones_id = t4_sub.id
+ WHERE t2_sub.tarifa_encuadernacion_id = t1.tarifa_encuadernado_id
+ AND t2_sub.tirada_min <= presupuestos.tirada
+ AND t2_sub.tirada_max >= presupuestos.tirada
+ AND t3_sub.paginas_libro_min <= presupuestos.paginas
+ AND t3_sub.paginas_libro_max >= presupuestos.paginas
+ AND t4_sub.ancho_min <=
+ CASE WHEN presupuestos.papel_formato_personalizado = 1 THEN LEAST(presupuestos.papel_formato_ancho, presupuestos.papel_formato_alto)
+ ELSE LEAST(lg_papel_formato.ancho, lg_papel_formato.alto) END
+ AND t4_sub.ancho_max >
+ CASE WHEN presupuestos.papel_formato_personalizado = 1 THEN LEAST(presupuestos.papel_formato_ancho, presupuestos.papel_formato_alto)
+ ELSE LEAST(lg_papel_formato.ancho, lg_papel_formato.alto) END
+ AND t4_sub.alto_min <=
+ CASE WHEN presupuestos.papel_formato_personalizado = 1 THEN GREATEST(presupuestos.papel_formato_ancho, presupuestos.papel_formato_alto)
+ ELSE GREATEST(lg_papel_formato.ancho, lg_papel_formato.alto) END
+ AND t4_sub.alto_max >=
+ CASE WHEN presupuestos.papel_formato_personalizado = 1 THEN GREATEST(presupuestos.papel_formato_ancho, presupuestos.papel_formato_alto)
+ ELSE GREATEST(lg_papel_formato.ancho, lg_papel_formato.alto) END
+ AND t2_sub.proveedor_id = t1.proveedor_id
+ LIMIT 1
+ )
+ WHEN t2.por_horas = 1 THEN (
+ SELECT t2_sub.importe_fijo
+ FROM tarifa_encuadernacion_tiradas t2_sub
+ JOIN tarifa_encuadernacion_lineas_horas t3_sub ON t2_sub.id = t3_sub.tirada_encuadernacion_id
+ WHERE t2_sub.tarifa_encuadernacion_id = t1.tarifa_encuadernado_id
+ AND t2_sub.tirada_min <= presupuestos.tirada
+ AND t2_sub.tirada_max > presupuestos.tirada
+ AND t3_sub.tiempo_min <= t1.tiempo
+ AND t3_sub.tiempo_max > t1.tiempo
+ AND t2_sub.proveedor_id = t1.proveedor_id
+ LIMIT 1
+ )
+ ELSE NULL
+ END AS importe_fijo
+ ")
+ ->join("tarifa_encuadernacion t2", "t1.tarifa_encuadernado_id = t2.id", "left")
+ ->join("lg_proveedores t3", "t1.proveedor_id = t3.id", "left")
+ ->join("presupuestos", "presupuestos.id = t1.presupuesto_id", "left")
+ ->join("lg_papel_formato", "lg_papel_formato.id = presupuestos.papel_formato_id", "left")
+ ->where("t1.presupuesto_id", $presupuesto_id);
return $builder;
}
@@ -486,7 +543,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\BaseModel
return 0.01;
else
return $temp;
-
+
}
private function calcularTiempoCosido($maquina_id, $paginas, $tirada, $cuadernillos_por_pagina = 32)
diff --git a/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php b/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php
index 46ab3db6..41deef1e 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php
@@ -24,10 +24,11 @@ class PresupuestoFicheroModel extends \App\Models\BaseModel
public static $labelField = "nombre";
- public function saveFileInBBDD($presupuesto_id, $filename, $extension ,$user_id) {
- try{
+ public function saveFileInBBDD($presupuesto_id, $filename, $extension, $user_id)
+ {
+ try {
$new_filename = $this->generateFileHash($filename) . '.' . $extension;
-
+
$this->db->table($this->table . " t1")
->set('presupuesto_id', $presupuesto_id)
->set('nombre', $filename)
@@ -42,13 +43,14 @@ class PresupuestoFicheroModel extends \App\Models\BaseModel
}
}
- public function deleteFiles($presupuesto_id, $old_files = []){
+ public function deleteFiles($presupuesto_id, $old_files = [])
+ {
$files = $this->db
->table($this->table . " t1")
->where('presupuesto_id', $presupuesto_id)->get()->getResult();
- if($files){
- foreach($files as $file){
+ if ($files) {
+ foreach ($files as $file) {
// se comprueba que el $file->nombre no sea igual a ninguno de los elementos del array $old_files
if (!in_array($file->nombre, $old_files)) {
@@ -67,21 +69,52 @@ class PresupuestoFicheroModel extends \App\Models\BaseModel
}
- public function getFiles($presupuesto_id){
+ public function copyFiles($presupuesto_id_origen, $presupuesto_id_destino)
+ {
+
+ $files = $this->db
+ ->table($this->table . " t1")
+ ->where('presupuesto_id', $presupuesto_id_origen)->get()->getResult();
+ if ($files) {
+
+ foreach ($files as $file) {
+
+ $hash = $this->generateFileHash($file->nombre);
+
+ // se copia el fichero a la nueva ubicación
+ if (!file_exists(WRITEPATH . $file->file_path)) {
+ copy($file->file_path, WRITEPATH . 'uploads/presupuestos/' . $hash);
+ }
+
+ $this->db->table($this->table . " t1")
+ ->set('presupuesto_id', $presupuesto_id_destino)
+ ->set('nombre', $file->nombre)
+ ->set('file_path', WRITEPATH . 'uploads/presupuestos/' . $hash)
+ ->set('upload_by', auth()->user()->id)
+ ->set('upload_at', date('Y-m-d H:i:s'))
+ ->insert();
+ }
+ }
+ }
+
+
+ public function getFiles($presupuesto_id)
+ {
return $this->db
->table($this->table . " t1")
->where('presupuesto_id', $presupuesto_id)->get()->getResult();
}
-
+
/**
- * Función para convertir el nombre y extensión de un fichero en un hash único
- * usando cifrado simétrico.
- *
- * @param string $filename Nombre del fichero con extensión
- * @return string Hash encriptado del fichero
- */
- private function generateFileHash($filename) {
+ * Función para convertir el nombre y extensión de un fichero en un hash único
+ * usando cifrado simétrico.
+ *
+ * @param string $filename Nombre del fichero con extensión
+ * @return string Hash encriptado del fichero
+ */
+ private function generateFileHash($filename)
+ {
return hash('sha256', $filename);
}
diff --git a/ci4/app/Models/Presupuestos/PresupuestoManipuladosModel.php b/ci4/app/Models/Presupuestos/PresupuestoManipuladosModel.php
index 9e0637a9..f33c8e32 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoManipuladosModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoManipuladosModel.php
@@ -102,17 +102,15 @@ class PresupuestoManipuladosModel extends \App\Models\BaseModel
$precio_unidad = $tarifa->precio_max;
$precio_unidad = $precio_unidad * (1 + floatval($tarifa->margen) / 100.0);
- if (!$is_POD) {
- $precio_unidad += floatval($tarifa->tarifa_importe_fijo)/floatval($tirada);
- }
-
$total = $precio_unidad * $tirada;
$margen = floatval($tarifa->margen);
-
- if ($tarifa->tarifa_precio_min > $total) {
- $total = $total - ($total * $margen / 100.0);
- $margen = round(100.0 * (floatval($tarifa->tarifa_precio_min) - $total) / floatval($tarifa->tarifa_precio_min), 0);
- $total = floatval($tarifa->tarifa_precio_min);
+ $tarifa_precio_min = floatval($tarifa->tarifa_precio_min);
+ if ($tarifa_precio_min * (1 + floatval($tarifa->margen) / 100.0) > $total) {
+ $total = $tarifa_precio_min * (1 + floatval($tarifa->margen)/100.0);
+ $precio_unidad = round(floatval($total / $tirada), 2);
+ }
+ if (!$is_POD) {
+ $total += floatval($tarifa->tarifa_importe_fijo);
$precio_unidad = round(floatval($total / $tirada), 2);
}
diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php
index c57aa1c0..69c2a034 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php
@@ -151,6 +151,14 @@ class PresupuestoModel extends \App\Models\BaseModel
public static $labelField = "titulo";
protected $validationRulesAdd = [
+ "tirada" => [
+ "label" => "Presupuestos.tirada",
+ "rules" => "required|integer|greater_than[0]",
+ ],
+ "paginas" => [
+ "label" => "Presupuestos.paginas",
+ "rules" => "required|integer|greater_than[0]",
+ ],
"autor" => [
"label" => "Presupuestos.autor",
"rules" => "trim|max_length[150]",
@@ -190,6 +198,12 @@ class PresupuestoModel extends \App\Models\BaseModel
];
protected $validationMessagesAdd = [
+ "tirada" => [
+ "greater_than" => "Presupuestos.validation.greater_than_0",
+ ],
+ "paginas" => [
+ "greater_than" => "Presupuestos.validation.greater_than_0",
+ ],
"autor" => [
"max_length" => "Presupuestos.validation.max_length",
"required" => "Presupuestos.validation.requerido",
@@ -271,7 +285,7 @@ class PresupuestoModel extends \App\Models\BaseModel
t1.total_presupuesto AS total_presupuesto, t1.total_presupuesto AS total_presupuesto, t6.estado AS estado"
);
$builder->join("clientes t2", "t1.cliente_id = t2.id", "left");
- $builder->join("users t3", "t1.user_update_id = t3.id", "left");
+ $builder->join("users t3", "t2.comercial_id = t3.id", "left");
$builder->join("lg_paises t5", "t1.pais_id = t5.id", "left");
$builder->join("presupuesto_estados t6", "t1.estado_id = t6.id", "left");
@@ -453,7 +467,7 @@ class PresupuestoModel extends \App\Models\BaseModel
'comparador_json_data' => $this->generateJson($data),
- 'faja_color' => is_array($data['faja']) ? 1 : 0,
+ 'faja_color' => is_array($data['faja']) && count($data['faja'])>0 ? 1 : 0,
'solapas_ancho_faja_color' => is_array($data['faja']) && $data['faja'] !== [] ? $data['faja']['solapas'] : 60,
'alto_faja_color' => is_array($data['faja']) && $data['faja'] !== [] ? $data['faja']['alto'] : 50,
@@ -508,15 +522,18 @@ class PresupuestoModel extends \App\Models\BaseModel
'excluir_rotativa' => $excluir_rotativa,
];
+ /* Actualizacion */
if ($id != 0) {
$fields['id'] = $id;
$fields['updated_at'] = date('Y-m-d H:i:s', now());
- }
-
- if ($id != 0) {
+ $fields['user_update_id'] = auth()->id();
$this->db->table($this->table)->where('id', $id)->update($fields);
return $id;
- } else {
+ }
+ /* Inserccion */
+ else {
+ $fields['user_created_id'] = auth()->id();
+ $fields['user_update_id'] = auth()->id();
$this->db->table($this->table)->insert($fields);
return $this->db->insertID();
}
diff --git a/ci4/app/Models/Sistema/ActivityModel.php b/ci4/app/Models/Sistema/ActivityModel.php
index 21f22d47..fa0704f3 100755
--- a/ci4/app/Models/Sistema/ActivityModel.php
+++ b/ci4/app/Models/Sistema/ActivityModel.php
@@ -20,7 +20,7 @@ class ActivityModel extends BaseModel
const SORTABLE = [
1 => "t1.id",
- 2 => "t2.username",
+ 2 => "t3.secret",
3 => "t1.level",
4 => "t1.event",
5 => "t1.ip",
@@ -55,10 +55,17 @@ class ActivityModel extends BaseModel
$builder = $this->db
->table($this->table . " t1")
->select(
- "t1.id AS id, t2.username AS user, t1.level AS level, t1.event AS event, t1.ip AS ip, t1.os AS os,
- t1.browser AS browser, t1.created_at AS created_at"
+ "t1.id AS id,
+ t3.secret AS user,
+ t1.level AS level,
+ t1.event AS event,
+ t1.ip AS ip,
+ t1.os AS os,
+ t1.browser AS browser,
+ t1.created_at AS created_at"
)
->join("users t2", "t1.user_id = t2.id", "left")
+ ->join("auth_identities t3", "t3.user_id = t2.id AND t3.type = 'email_password'", "left")
->orderBy('t1.created_at', 'DESC');
return empty($search)
@@ -66,7 +73,7 @@ class ActivityModel extends BaseModel
: $builder
->groupStart()
->like("t1.id", $search)
- ->orLike("t2.username", $search)
+ ->orLike("t3.secret", $search)
->orLike("t1.level", $search)
->orLike("t1.event", $search)
->orLike("t1.ip", $search)
diff --git a/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php b/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php
index 9cf03991..8680d628 100755
--- a/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php
+++ b/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php
@@ -127,7 +127,7 @@ class TarifaEncuadernacionModel extends \App\Models\BaseModel
$builder = $this->db
->table($this->table . " t1")
->select(
- "t1.id AS tarifa_enc_id, t1.nombre AS tarifa_enc_nombre, t3.total_min AS tarifa_precio_min, t2.importe_fijo AS tarifa_importe_fijo,
+ "t1.id AS tarifa_enc_id, t1.nombre AS tarifa_enc_nombre, t3.total_min AS tarifa_precio_min, t2.importe_fijo AS tarifa_importe_fijo, t2.importe_fijo AS importe_fijo,
t2.id AS tarifa_tirada_id, t2.proveedor_id AS proveedor_id, t5.nombre AS proveedor_nombre, t2.tirada_min AS tirada_min, t2.tirada_max AS tirada_max,
t3.id AS tarifa_linea_id, t3.paginas_libro_min AS paginas_min, t3.paginas_libro_max AS paginas_max, t3.precio_min AS precio_min, t3.precio_max AS precio_max, t3.margen AS margen,
t4.ancho_min AS ancho_min, t4.ancho_max AS ancho_max, t4.alto_min AS alto_min, t4.alto_max AS alto_max"
@@ -166,7 +166,7 @@ class TarifaEncuadernacionModel extends \App\Models\BaseModel
$builder = $this->db
->table($this->table . " t1")
->select(
- "t1.id AS tarifa_enc_id, t1.nombre AS tarifa_enc_nombre, t3.total_min AS tarifa_precio_min, t2.importe_fijo AS tarifa_importe_fijo,
+ "t1.id AS tarifa_enc_id, t1.nombre AS tarifa_enc_nombre, t3.total_min AS tarifa_precio_min, t2.importe_fijo AS tarifa_importe_fijo, t2.importe_fijo AS importe_fijo,
t2.id AS tarifa_tirada_id, t2.proveedor_id AS proveedor_id, t5.nombre AS proveedor_nombre, t2.tirada_min AS tirada_min, t2.tirada_max AS tirada_max,
t3.id AS tarifa_linea_id, t3.tiempo_min AS tiempo_min, t3.tiempo_max AS tiempo_max, t3.precio_hora AS precio_hora, t3.margen AS margen"
)
diff --git a/ci4/app/Services/EmailService.php b/ci4/app/Services/EmailService.php
index 5b6f7f99..be7dc57a 100755
--- a/ci4/app/Services/EmailService.php
+++ b/ci4/app/Services/EmailService.php
@@ -13,7 +13,7 @@ class EmailService
// Si no estamos en producción, forzar el destinatario a uno fijo
if ($skEnv !== 'production') {
- $recipient = env('MAIL_DEV_RECIPIENT', 'imnavajas@coit.es'); // fallback opcional
+ $recipient = env('MAIL_DEV_RECIPIENT', 'imnavajas@coit.es,info@jjimenez.eu'); // fallback opcional
}
$settings_model = model('App\Models\Configuracion\ConfigVariableModel');
@@ -43,7 +43,13 @@ class EmailService
$email->setSubject($subject);
$email->setMessage($body);
- return $email->send();
+ if (!$email->send()) {
+ log_message('error', 'Error enviando email: ' . $email->printDebugger(['headers', 'subject', 'body']));
+ return false;
+ }
+
+
+ return true;
} catch (\Throwable $e) {
log_message('error', 'EmailService failed: ' . $e->getMessage());
return false;
diff --git a/ci4/app/Services/EtiquetasTitulosService.php b/ci4/app/Services/EtiquetasTitulosService.php
new file mode 100644
index 00000000..35d617a8
--- /dev/null
+++ b/ci4/app/Services/EtiquetasTitulosService.php
@@ -0,0 +1,363 @@
+table('ordenes_trabajo ot')
+ ->select("
+ ot.id AS id,
+ CONCAT('[', ot.id, '] - ', pr.titulo) AS name")
+ ->join('pedidos p', 'p.id = ot.pedido_id')
+ ->join('pedidos_linea pl', 'p.id = pl.pedido_id')
+ ->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
+ ->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
+ ->whereIn('p.estado', ['finalizado', 'produccion']);
+
+ return $builder;
+ }
+
+ public static function getDireccionesOT($ot_id)
+ {
+
+ $db = \Config\Database::connect();
+
+ // 3. Subconsulta principal
+ $builder = $db->table('presupuesto_direcciones pd')
+ ->select("
+ pd.id AS id,
+ pd.direccion AS name")
+ ->join('presupuestos pr', 'pr.id = pd.presupuesto_id')
+ ->join('pedidos_linea pl', 'pr.id = pl.presupuesto_id')
+ ->join('pedidos p', 'p.id = pl.pedido_id')
+ ->join('ordenes_trabajo ot', 'ot.pedido_id = p.id')
+ ->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
+ ->whereIn('p.estado', ['finalizado', 'produccion'])
+ ->where('ot.id', $ot_id);
+
+ return $builder;
+ }
+
+ public static function addEtiqueta($data)
+ {
+ $db = \Config\Database::connect();
+
+ $builder = $db->table('presupuesto_direcciones pd');
+ $builder->select('pd.att, pd.direccion, pd.cantidad, pr.cliente_id');
+ $builder->join('presupuestos pr', 'pr.id = pd.presupuesto_id');
+ $builder->join('pedidos_linea pl', 'pr.id = pl.presupuesto_id');
+ $builder->join('pedidos p', 'p.id = pl.pedido_id');
+ $builder->join('ordenes_trabajo ot', 'ot.pedido_id = p.id');
+ $builder->where('ot.id', $data['ot_id']);
+ $builder->where('pd.direccion', $data['direccion']);
+
+ $result = $builder->get()->getRow();
+ $data['att'] = $result->att;
+ $data['direccion'] = $result->direccion;
+ $data['cantidad'] = $result->cantidad;
+ $data['cliente_id'] = $result->cliente_id;
+
+ $modelEtiquetasTitulos = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+ $modelEtiquetasTitulos->insert([
+ 'direccion' => $data['direccion'],
+ 'att' => $data['att'],
+ 'cliente_id' => $data['cliente_id'],
+ 'user_created_at' => $data['user_id'],
+ ]);
+ $etiquetaId = $modelEtiquetasTitulos->getInsertID();
+
+ if ($etiquetaId == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errorInsertarEtiqueta'),
+ ];
+ }
+
+ $cantidad_restante = intval($data['cantidad']);
+ $numero_caja = 1;
+ while ($cantidad_restante > 0) {
+ $modelEtiquetasTitulosLineas = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+ $modelEtiquetasTitulosLineas->insert([
+ 'etiqueta_titulos_id' => $etiquetaId,
+ 'ot_id' => $data['ot_id'],
+ 'unidades' => $cantidad_restante - intval($data['unidades_caja']) < 0 ? $cantidad_restante : intval($data['unidades_caja']),
+ 'numero_caja' => $numero_caja,
+ 'user_created_at' => $data['user_id'],
+ ]);
+ $cantidad_restante -= $data['unidades_caja'];
+ $numero_caja++;
+ }
+
+
+ return [
+ 'status' => true,
+ 'etiqueta' => $etiquetaId,
+ ];
+ }
+
+ public static function findOTsWithAddress(int $etiqueta_id)
+ {
+ $db = \Config\Database::connect();
+
+ // 1. Dirección del envío actual
+ $etiqueta = $db->table('etiquetas_titulos')->select('direccion')->where('id', $etiqueta_id)->get()->getRow();
+ if (!$etiqueta) {
+ return $db->table('(SELECT NULL AS id, NULL AS name, NULL as unidades) AS empty')->where('1 = 0');
+ }
+
+ $direccionNormalizada = str_replace(' ', '', strtolower(trim($etiqueta->direccion)));
+ $direccionSQL = $db->escape($direccionNormalizada);
+
+ // 2. Obtener presupuestos con esa dirección
+ $presupuestosConEsaDireccion = $db->table('presupuesto_direcciones')
+ ->select('presupuesto_id')
+ ->where("REPLACE(LOWER(TRIM(direccion)), ' ', '') = $direccionSQL", null, false)
+ ->get()
+ ->getResultArray();
+
+ $presupuestoIds = array_column($presupuestosConEsaDireccion, 'presupuesto_id');
+ if (empty($presupuestoIds)) {
+ return $db->table('(SELECT NULL AS id, NULL AS name, NULL as unidades) AS empty')->where('1 = 0');
+ }
+
+ // 3. Subconsulta principal
+ $subBuilder = $db->table('pedidos_linea pl')
+ ->select("
+ ot.id AS id,
+ CONCAT('[', ot.id, '] - ', pr.titulo) AS name,
+ pd.cantidad AS description
+ ")
+ ->join('pedidos p', 'p.id = pl.pedido_id')
+ ->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
+ ->join('presupuesto_direcciones pd', 'pd.presupuesto_id = pr.id')
+ ->join('ordenes_trabajo ot', 'ot.pedido_id = p.id')
+ ->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
+ ->whereIn('pr.id', $presupuestoIds)
+ ->whereIn('p.estado', ['finalizado', 'produccion'])
+ ->groupBy('pl.id');
+
+ // 4. Envolver y filtrar por unidades pendientes
+ $builder = $db->table("({$subBuilder->getCompiledSelect(false)}) AS sub");
+ $builder->select('id, name, description');
+
+ return $builder;
+ }
+
+ public static function addLineasEtiqueta($etiqueta_id, $ot_id, $unidades, $cajas)
+ {
+
+ $unidades_caja = intdiv($unidades, $cajas);
+ $unidades_caja = $unidades_caja == 0 ? $unidades : $unidades_caja;
+
+ $unidades_restantes = $unidades;
+
+ $modelEtitquetaLinea = model('\App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+ $next_caja = $modelEtitquetaLinea
+ ->selectMax('numero_caja')
+ ->where('etiqueta_titulos_id', $etiqueta_id)
+ ->first();
+ $next_caja = $next_caja->numero_caja ?? 0;
+ $next_caja++;
+
+ $user_id = auth()->user()->id;
+
+ while ($unidades_restantes > 0) {
+ $modelEtitquetaLinea->insert([
+ 'etiqueta_titulos_id' => $etiqueta_id,
+ 'ot_id' => $ot_id,
+ 'unidades' => $unidades_restantes - $unidades_caja < 0 ? $unidades_restantes : intval($unidades_caja),
+ 'numero_caja' => $next_caja,
+ 'user_created_at' => $user_id,
+ ]);
+ $unidades_restantes -= $unidades_caja;
+ $next_caja++;
+ }
+
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.successInsertLines'),
+ ];
+
+ }
+
+ public static function reordenarCajas($etiqueta_id)
+ {
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+
+ // 1. Obtener todas las líneas ordenadas por numero_caja e id
+ $lineas = $model
+ ->where('etiqueta_titulos_id', $etiqueta_id)
+ ->orderBy('numero_caja ASC')
+ ->orderBy('id ASC')
+ ->findAll();
+
+ // 2. Agrupar por caja
+ $grupos = [];
+ foreach ($lineas as $linea) {
+ $grupos[$linea->numero_caja][] = $linea;
+ }
+
+ // 3. Reasignar números de caja de forma consecutiva
+ $nuevoNumeroCaja = 1;
+ foreach ($grupos as $grupo) {
+ foreach ($grupo as $linea) {
+ $model->update($linea->id, ['numero_caja' => $nuevoNumeroCaja]);
+
+ }
+ $nuevoNumeroCaja++;
+ }
+
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.successReordenarCajas'),
+ ];
+ }
+
+ public static function imprimirEtiquetas($etiqueta_id = null, $ids = [], $printer = null){
+
+ $model = model('App\Models\Etiquetas\EtiquetasTitulosModel');
+ $modelLineas = model('App\Models\Etiquetas\EtiquetasTitulosLineasModel');
+
+ if ($etiqueta_id) {
+ $etiquetas = $model->where('id', $etiqueta_id)->first();
+ $etiquetas_lineas = $modelLineas->whereIn('id', $ids)->orderBy('numero_caja', 'ASC')->findAll();
+ }
+
+ // buscar el maximo numero_cajas en el array de objetos etiquetas_lineas
+ $max_num_cajas = 0;
+ foreach ($etiquetas_lineas as $linea) {
+ if ($linea->numero_caja > $max_num_cajas) {
+ $max_num_cajas = $linea->numero_caja;
+ }
+ }
+
+ // se obtienen los numero_caja diferentes en un array
+ $numero_cajas = [];
+ foreach ($etiquetas_lineas as $linea) {
+ if (!in_array($linea->numero_caja, $numero_cajas)) {
+ $numero_cajas[] = $linea->numero_caja;
+ }
+ }
+
+ if (empty($etiquetas)) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiqueta'),
+ ];
+ }
+ if (empty($etiquetas_lineas)) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiquetaLineas'),
+ ];
+ }
+
+
+ $data = [
+ "printer" => $printer->name,
+ "header" => [
+ "_FORMAT" => "E:MULTI.ZPL",
+ "_QUANTITY" => 1,
+ "_PRINBTERNAME" => $printer->name,
+ "_JOBNAME" => "LBL101"
+ ],
+ 'direccion' => $etiquetas->direccion,
+ 'grupos' => [],
+ 'notas' => $etiquetas->comentarios,
+ 'nombre' => $etiquetas->att,
+ ];
+
+
+ $index_etiqueta = 0;
+ foreach ($numero_cajas as $caja) {
+
+ array_push($data['grupos'], [
+ ]);
+
+ $lineas = array_filter($etiquetas_lineas, function ($linea) use ($caja) {
+ return $linea->numero_caja == $caja;
+ });
+
+ $lineaCounter = 0;
+ foreach($lineas as $linea){
+
+
+ if($lineaCounter >= 5){
+ $lineaCounter = 0;
+ $index_etiqueta++;
+ array_push($data['grupos'], []);
+ }
+
+ $modelPresupuestos = model('App\Models\OrdenTrabajo\OrdenTrabajoModel');
+ $datos_etiqueta = $modelPresupuestos->select('
+ pr.titulo as titulo,
+ pr.isbn as isbn,
+ pr.referencia_cliente as referencia_cliente,
+ p.id as id_pedido,
+ ordenes_trabajo.total_tirada as total_tirada,')
+ ->join('pedidos p', 'p.id = ordenes_trabajo.pedido_id')
+ ->join('pedidos_linea pl', 'pl.pedido_id = p.id')
+ ->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
+ ->where('ordenes_trabajo.id',$linea->ot_id)->first();
+
+
+
+ $data['grupos'][$index_etiqueta][] = [
+ 'prefix' => $lineaCounter+1,
+ 'titulo' => mb_substr($datos_etiqueta->titulo, 0, 40),
+ 'cantidad' => $linea->unidades,
+ 'tirada' => $datos_etiqueta->total_tirada,
+ 'ean' => str_replace('-', '', $datos_etiqueta->isbn),
+ 'npedido' => $datos_etiqueta->id_pedido,
+ 'refcliente' => $datos_etiqueta->referencia_cliente,
+ ];
+
+ $lineaCounter++;
+ }
+ $index_etiqueta++;
+ }
+
+ $servicioImpresora = new ImpresoraEtiquetaService();
+ $xml = $servicioImpresora->createEtiquetaTitulos($data);
+ if ($xml == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiquetas'),
+ ];
+ }
+ $sk_environment = getenv('SK_ENVIRONMENT');
+ if ($sk_environment == 'production') {
+
+ $status = $servicioImpresora->sendToImpresoraEtiqueta("ETIQUETA", $xml, $printer);
+ if ($status) {
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.imprimirEtiquetas'),
+ ];
+ } else {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiquetas'),
+ ];
+ }
+
+ } else {
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.imprimirEtiquetas'),
+ 'data' => $xml
+ ];
+ }
+
+
+ }
+}
\ No newline at end of file
diff --git a/ci4/app/Services/ImpresoraEtiquetaService.php b/ci4/app/Services/ImpresoraEtiquetaService.php
index 41be8605..fa823e24 100755
--- a/ci4/app/Services/ImpresoraEtiquetaService.php
+++ b/ci4/app/Services/ImpresoraEtiquetaService.php
@@ -24,9 +24,9 @@ class ImpresoraEtiquetaService extends BaseService
"labels" => [
[
"cliente" => "Cliente Potencial",
- "titulo" => "[1234] TEST OLIVEROS",
+ "titulo" => "[1234] TEST OLIVEROS",
"cantidad" => 100,
- "tirada" => 50,
+ "tirada" => 50,
"cajas" => 1,
"ean" => null,
"nombre" => "___Nombre___",
@@ -76,6 +76,147 @@ class ImpresoraEtiquetaService extends BaseService
$xml->appendChild($labels);
return $xml->saveXML();
}
+
+
+ public function createEtiquetaTitulos(array $data_label = []): ?string
+ {
+ $xml = new DOMDocument('1.0', 'utf-8');
+
+ // Crear nodo raíz "labels"
+ $labels = $xml->createElement("labels");
+
+ // Establecer atributos de "labels" desde "header"
+ foreach ($data_label["header"] as $key => $value) {
+ $labels->setAttribute($key, $value);
+ }
+
+ // Recorrer grupos de etiquetas
+ foreach ($data_label["grupos"] as $grupo) {
+ $labelChild = $xml->createElement('label');
+
+ // Crear variables específicas del grupo
+ foreach ($grupo as $libro) {
+ $prefix = $libro['prefix']==1 ? '' : $libro['prefix'];
+
+ $variables = [
+ "titulo$prefix" => $libro['titulo'],
+ "tirada$prefix" => $libro['tirada'],
+ "ean$prefix" => $libro['ean'],
+ "npedido$prefix" => $libro['npedido'],
+ "refcliente$prefix" => $libro['refcliente'],
+ "textpedido$prefix" => 'Pedido',
+ "textcantidad$prefix" => 'Cantidad:',
+ "textref$prefix" => 'Ref:',
+ "textean$prefix" => 'ISBN',
+ ];
+
+ foreach ($variables as $varName => $varValue) {
+ $variableChild = $xml->createElement('variable');
+ $variableChild->setAttribute("name", $varName);
+ $variableChild->appendChild($xml->createTextNode((string) $varValue));
+ $labelChild->appendChild($variableChild);
+ }
+ }
+
+ // Variables comunes del grupo
+ $nombreVariable = $xml->createElement('variable', htmlspecialchars($data_label['nombre']));
+ $nombreVariable->setAttribute('name', 'nombre');
+ $labelChild->appendChild($nombreVariable);
+
+ $direccionVariable = $xml->createElement('variable', htmlspecialchars($data_label['direccion']));
+ $direccionVariable->setAttribute('name', 'direccion');
+ $labelChild->appendChild($direccionVariable);
+
+ $labels->appendChild($labelChild);
+ }
+
+ $xml->appendChild($labels);
+ return $xml->saveXML();
+ }
+
+ public function generateEtiquetasEmbalaje($ot_id, $ejemplares_caja, $printer)
+ {
+ $data = [
+ "printer" => $printer->name,
+ "header" => [
+ "_FORMAT" => "E:PEDIDO.ZPL",
+ "_QUANTITY" => 1,
+ "_PRINBTERNAME" => $printer->name,
+ "_JOBNAME" => "LBL101"
+ ],
+ ];
+
+ $ot_model = model('App\Models\OrdenTrabajo\OrdenTrabajoModel');
+ $datos = $ot_model->select('
+ ordenes_trabajo.total_tirada as unidades,
+ clientes.nombre as cliente,
+ presupuestos.titulo as titulo,
+ presupuestos.isbn as isbn,
+ presupuestos.referencia_cliente as referencia_cliente,
+ pedidos.id as pedido
+ ')
+ ->join('pedidos', 'ordenes_trabajo.pedido_id = pedidos.id')
+ ->join('pedidos_linea', 'pedidos.id = pedidos_linea.pedido_id')
+ ->join('presupuestos', 'pedidos_linea.presupuesto_id = presupuestos.id')
+ ->join('clientes', 'presupuestos.cliente_id = clientes.id')
+ ->where('ordenes_trabajo.id', $ot_id)
+ ->first();
+ $cajas = ceil($datos->unidades / $ejemplares_caja);
+ $cantidad = 0;
+
+ for( $i = 1; $i <= $cajas; $i++) {
+ $data["labels"][] = [
+ "cliente" => $datos->cliente,
+ "titulo" => $datos->titulo,
+ "cantidad" => $cantidad + $ejemplares_caja <= $datos->unidades ? $ejemplares_caja : $datos->unidades-$cantidad,
+ "tirada" => $datos->unidades,
+ "cajas" => $i . '/' . $cajas,
+ "ean" => str_replace("-", "", $datos->isbn),
+ "nombre" => null,
+ "direccion" => null,
+ "notas" => "",
+ "refcliente" => $datos->referencia_cliente,
+ "npedido" => $datos->pedido
+ ];
+
+ $cantidad += $ejemplares_caja;
+ }
+
+ $servicioImpresora = new ImpresoraEtiquetaService();
+ $xml = $servicioImpresora->createEtiqueta($data);
+ if ($xml == null) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiquetas'),
+ ];
+ }
+ $sk_environment = getenv('SK_ENVIRONMENT');
+ if ($sk_environment == 'production') {
+
+ $status = $servicioImpresora->sendToImpresoraEtiqueta("ETIQUETA", $xml, $printer);
+ if ($status) {
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.imprimirEtiquetas'),
+ 'data' => $xml
+ ];
+ } else {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noEtiquetas'),
+ ];
+ }
+
+ } else {
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.imprimirEtiquetas'),
+ 'data' => $xml
+ ];
+ }
+ }
+
+
public function sendToImpresoraEtiqueta(string $name, string $content, ImpresoraEtiquetaEntity $impresoraEtiqueta): bool
{
$tmpFile = tmpfile();
@@ -84,8 +225,8 @@ class ImpresoraEtiquetaService extends BaseService
rewind($tmpFile);
$tmpMetaData = stream_get_meta_data($tmpFile);
- $conn = @ftp_connect($impresoraEtiqueta->ip,$impresoraEtiqueta->port);
- if(!$conn){
+ $conn = @ftp_connect($impresoraEtiqueta->ip, $impresoraEtiqueta->port);
+ if (!$conn) {
throw new Exception('Error al establecer conexión FTP');
}
$isLoginSuccess = @ftp_login($conn, $impresoraEtiqueta->user, $impresoraEtiqueta->pass);
@@ -99,10 +240,10 @@ class ImpresoraEtiquetaService extends BaseService
if (ftp_put($conn, $name, $tmpMetaData['uri'], FTP_ASCII) === FALSE) {
$status = false;
ftp_close($conn);
- }else{
+ } else {
$status = true;
}
-
+
return $status;
}
}
diff --git a/ci4/app/Services/LogisticaService.php b/ci4/app/Services/LogisticaService.php
index d2251313..b5f28237 100644
--- a/ci4/app/Services/LogisticaService.php
+++ b/ci4/app/Services/LogisticaService.php
@@ -57,7 +57,8 @@ class LogisticaService
->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
->whereIn('pr.id', $presupuestoIds)
->whereIn('p.estado', ['finalizado', 'produccion'])
- ->where('ot_dates.embalaje_at IS NOT NULL')
+ ->where('p.fecha_encuadernado IS NOT NULL')
+ ->where('DATE(p.fecha_encuadernado) <=', date('Y-m-d'))
->where("NOT EXISTS (
SELECT 1
FROM envios_lineas el
@@ -78,6 +79,80 @@ class LogisticaService
return $builder;
}
+ public static function findNextEnvios(int $envio_id)
+ {
+ $db = \Config\Database::connect();
+
+ // 1. Dirección del envío actual
+ $envio = $db->table('envios')->select('direccion')->where('id', $envio_id)->get()->getRow();
+ if (!$envio) {
+ return $db->table('(SELECT NULL AS id, NULL AS name) AS empty')->where('1 = 0');
+ }
+
+ $direccionNormalizada = str_replace(' ', '', strtolower(trim($envio->direccion)));
+ $direccionSQL = $db->escape($direccionNormalizada);
+
+ // 2. Obtener presupuestos con esa dirección
+ $presupuestosConEsaDireccion = $db->table('presupuesto_direcciones')
+ ->select('presupuesto_id')
+ ->where("REPLACE(LOWER(TRIM(direccion)), ' ', '') = $direccionSQL", null, false)
+ ->get()
+ ->getResultArray();
+
+ $presupuestoIds = array_column($presupuestosConEsaDireccion, 'presupuesto_id');
+ if (empty($presupuestoIds)) {
+ return $db->table('(SELECT NULL AS id, NULL AS name) AS empty')->where('1 = 0');
+ }
+
+ $hoy = date('Y-m-d');
+ $sieteDiasDespues = date('Y-m-d', strtotime('+7 days'));
+
+ // 3. Subconsulta principal
+ $subBuilder = $db->table('pedidos_linea pl')
+ ->select("
+ ot.id AS ot,
+ DATE(p.fecha_encuadernado) as fechaEncuadernado,
+ (
+ SELECT IFNULL(SUM(el.unidades_envio), 0)
+ FROM envios_lineas el
+ JOIN envios e ON e.id = el.envio_id
+ WHERE el.pedido_id = p.id
+ AND el.presupuesto_id = pr.id
+ AND REPLACE(LOWER(TRIM(e.direccion)), ' ', '') = $direccionSQL
+ AND (e.finalizado = 1 OR e.id = $envio_id)
+ ) AS unidades_enviadas,
+ pd.cantidad AS cantidad
+ ")
+ ->join('pedidos p', 'p.id = pl.pedido_id')
+ ->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
+ ->join('presupuesto_direcciones pd', 'pd.presupuesto_id = pr.id')
+ ->join('ordenes_trabajo ot', 'ot.pedido_id = p.id')
+ ->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
+ ->whereIn('pr.id', $presupuestoIds)
+ ->whereIn('p.estado', ['finalizado', 'produccion'])
+ ->where('p.fecha_encuadernado IS NOT NULL')
+ ->where('DATE(p.fecha_encuadernado) >=', $hoy)
+ ->where('DATE(p.fecha_encuadernado) <=', $sieteDiasDespues)
+ ->where("NOT EXISTS (
+ SELECT 1
+ FROM envios_lineas el
+ WHERE el.envio_id = $envio_id
+ AND el.pedido_id = p.id
+ AND el.presupuesto_id = pr.id
+ GROUP BY el.pedido_id, el.presupuesto_id
+ HAVING SUM(el.unidades_envio) >= pd.cantidad
+ )", null, false)
+ ->groupBy('pl.id');
+
+ // 4. Envolver y filtrar por unidades pendientes
+ $builder = $db->table("({$subBuilder->getCompiledSelect(false)}) AS sub");
+ $builder->select('ot, fechaEncuadernado');
+ $builder->where('cantidad > unidades_enviadas');
+
+ return $builder;
+ }
+
+
public static function findForNewEnvio()
{
$db = \Config\Database::connect();
@@ -102,16 +177,15 @@ class LogisticaService
->join('presupuestos pr', 'pr.id = pl.presupuesto_id')
->join('presupuesto_direcciones pd', 'pd.presupuesto_id = pr.id')
->join('ordenes_trabajo ot', 'ot.pedido_id = p.id')
- ->join('orden_trabajo_dates ot_dates', 'ot_dates.orden_trabajo_id = ot.id')
->whereIn('p.estado', ['finalizado', 'produccion'])
- ->where('ot_dates.embalaje_at IS NOT NULL')
+ ->where('p.fecha_encuadernado IS NOT NULL')
+ ->where('DATE(p.fecha_encuadernado) <=', date('Y-m-d'))
->groupBy('pl.id');
// 4. Envolver y filtrar por unidades pendientes
$builder = $db->table("({$subBuilder->getCompiledSelect(false)}) AS sub");
$builder->select('id, name');
$builder->where('cantidad > unidades_enviadas');
- $builder->orderBy('name', 'ASC');
return $builder;
}
@@ -288,6 +362,81 @@ class LogisticaService
}
+ public static function sendConfirmacionEnvio($envio, $lineaEnvio, $isFerro = false)
+ {
+
+ $view = \Config\Services::renderer();
+
+ if ($isFerro)
+ $subject = '[Safekat]' . " El envio del ferro de su pedido se ha realizado";
+ else
+ $subject = '[Safekat]' . " El envio de su pedido se ha realizado";
+
+ $presupuestoModel = model('App\Models\Presupuestos\PresupuestoModel');
+ $presupuesto = $presupuestoModel->find($lineaEnvio->presupuesto_id);
+ $proveedorModel = model('App\Models\Compras\ProveedorModel');
+ $proveedor = $proveedorModel->find($envio->proveedor_id);
+ $userModel = model('App\Models\Usuarios\UserModel');
+ $datos_correo = $userModel->select("CONCAT(users.first_name, ' ', users.last_name) as comercial_nombre, auth_identities.secret as comercial_correo, clientes.email as cliente_email")
+ ->join('auth_identities', 'auth_identities.user_id = users.id')
+ ->join('clientes', 'clientes.comercial_id = users.id')
+ ->where('clientes.id', $presupuesto->cliente_id)
+ ->first();
+
+
+
+ $pedido = (object) [
+ 'pedido_id' => $lineaEnvio->pedido_id,
+ 'titulo' => $presupuesto->titulo,
+ 'cp' => $envio->cp,
+ 'proveedor_nombre' => $proveedor->nombre,
+ 'codigo_seguimiento' => $envio->codigo_seguimiento,
+ 'comercial_nombre' => $datos_correo->comercial_nombre,
+ 'comercial_correo' => $datos_correo->comercial_correo,
+ ];
+
+ if ($proveedor->nombre == "GLS") {
+ $pedido->url = 'https://m.asmred.com/e/' . $envio->codigo_seguimiento . '/' . $envio->cp;
+ }
+
+ $content = $view->setVar('datos_pedido', $pedido)
+ ->render('themes/vuexy/mail/envio_pedido');
+ // Renderiza la plantilla completa
+ if ($isFerro)
+ $finalBody = $view->setVar('emailTitle2', "El ferro de su pedido " . $lineaEnvio->pedido_id . " ha sido enviado el " . date('d/m/Y'))
+ ->setVar('content', $content)
+ ->render('themes/vuexy/mail/mail_layout_2');
+ else
+ $finalBody = $view->setVar('emailTitle2', "Su pedido " . $lineaEnvio->pedido_id . " ha sido enviado el " . date('d/m/Y'))
+ ->setVar('content', $content)
+ ->render('themes/vuexy/mail/mail_layout_2');
+
+
+ $email = service('emailService');
+ $result = $email->send($subject, $finalBody, $datos_correo->cliente_email);
+
+ $chat = Service('chat');
+ $data = [
+ 'chat_department_id' => 5,
+ 'client' => $presupuesto->cliente_id,
+ 'message' => "El pedido " . $lineaEnvio->pedido_id . " ha sido enviado el " . date('d/m/Y') . ". " .
+ "CP:" . $envio->cp . ". " .
+ "Proveedor envío: " . $proveedor->nombre . ". " .
+ "Código de seguimiento: " . $envio->codigo_seguimiento . ". "
+ ];
+ if ($proveedor->nombre == "GLS") {
+ $data['message'] = $data['message'] . 'URL segumiento: ' .
+ 'https://m.asmred.com/e/' . $envio->codigo_seguimiento . '/' . $envio->cp . ' ';
+ }
+ $chat->storeChatMessage(5, "pedido", $lineaEnvio->pedido_id, $data);
+
+ return [
+ 'status' => $result,
+ 'message' => $result ? lang('Logistica.success.emailSent') : lang('Logistica.errors.emailNotSent'),
+ ];
+ }
+
+
public static function generateEnvio($ot_id, $direccion = null)
{
@@ -532,16 +681,29 @@ class LogisticaService
"name" => "ferro_en_cliente_at",
"ferro_en_cliente_at" => date('Y-m-d H:i:s')
]);
+
+ LogisticaService::sendConfirmacionEnvio($envio, $linea, true);
+
} else {
- if ($cantidad_enviada + $linea->unidades_envio == $pedido->total_tirada) {
+ if ($cantidad_enviada + $linea->unidades_envio >= $pedido->total_tirada) {
$otModel = model('App\Models\OrdenTrabajo\OrdenTrabajoModel');
$ot = $otModel->where('pedido_id', $linea->pedido_id)
->first();
$ps = (new ProductionService())->init($ot->id);
+ $date = $ps->getOrdenTrabajo()->dates()->embalaje_at;
+ if (is_null($date) || empty($date)) {
+ $ps->updateOrdenTrabajoDate([
+ "name" => "embalaje_at",
+ "embalaje_at" => date('Y-m-d H:i:s')
+ ]);
+ }
$ps->updateOrdenTrabajoDate([
"name" => "envio_at",
"envio_at" => date('Y-m-d H:i:s')
]);
+
+ LogisticaService::sendConfirmacionEnvio($envio, $linea);
+
if ($finalizar_ot) {
$ps->updateOrdenTrabajo(
[
@@ -571,16 +733,39 @@ class LogisticaService
return $data_return;
}
+ public static function ficharEmbalaje($ids = null)
+ {
+
+ if (is_null($ids) || empty($ids) || count($ids) == 0) {
+ return [
+ 'status' => false,
+ 'message' => lang('Logistica.errors.noLineas'),
+ ];
+ }
+
+ for ($index = 0; $index < count($ids); $index++) {
+ $ps = (new ProductionService())->init($ids[$index]);
+ $ps->updateOrdenTrabajoDate([
+ "name" => "embalaje_at",
+ "embalaje_at" => date('Y-m-d')
+ ]);
+ }
+ return [
+ 'status' => true,
+ 'message' => lang('Logistica.success.successFicharEmbalaje'),
+ ];
+ }
+
public static function generateEtiquetasTitulos($envio, $lineas, $printer, $cajas)
{
$data = [
"printer" => $printer->name,
"header" => [
- "_FORMAT" => "E:PEDIDO.ZPL",
- "_QUANTITY" => 1,
- "_PRINBTERNAME" => $printer->name,
- "_JOBNAME" => "LBL101"
- ],
+ "_FORMAT" => "E:PEDIDO.ZPL",
+ "_QUANTITY" => 1,
+ "_PRINBTERNAME" => $printer->name,
+ "_JOBNAME" => "LBL101"
+ ],
];
foreach ($lineas as $linea) {
diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php
index 21dc68d1..bb702918 100755
--- a/ci4/app/Services/PresupuestoClienteService.php
+++ b/ci4/app/Services/PresupuestoClienteService.php
@@ -13,11 +13,15 @@ class PresupuestoClienteService extends BaseService
{
public static function obtenerInterior($data)
{
+ $POD = model('App\Models\Configuracion\ConfigVariableModel')->getVariable('POD')->value;
+ $tirada = $data['datosPedido']->tirada;
+
+ $isPoD = $POD >= $tirada;
$rotativa = [];
$plana = [];
- // no se busca en plana cuando es estándar (no Premium)
- if ($data['isHq'])
+ // no se busca en plana cuando es estándar (no Premium) excepto cuando es PoD
+ if ($data['isHq'] || $isPoD)
$plana = PresupuestoClienteService::obtenerPresupuestoClienteInterior($data);
if (!$data['excluirRotativa'] && !$data['isHq'])
$rotativa = PresupuestoClienteService::obtenerPresupuestoClienteInteriorRotativa($data);
diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php
index 6feb5b4f..a4294cf4 100755
--- a/ci4/app/Services/PresupuestoService.php
+++ b/ci4/app/Services/PresupuestoService.php
@@ -1786,6 +1786,8 @@ class PresupuestoService extends BaseService
options: $opciones_papel
);
+ #$query = model("App\Models\Configuracion\PapelImpresionModel")->db->getLastQuery();
+
$lineas = array();
// Para cada papel, se obtienen las maquinas disponibles
foreach ($papeles as $papel) {
@@ -1799,6 +1801,8 @@ class PresupuestoService extends BaseService
papel_impresion_id: $papel->id,
)->orderBy("t1.id", "asc")->get()->getResultObject();
+ $query = model("App\Models\Configuracion\PapelImpresionModel")->db->getLastQuery();
+
// Se recorren las máquinas y se calcula el coste de linea por cada una
foreach ($maquinas as $maquina) {
@@ -1864,7 +1868,7 @@ class PresupuestoService extends BaseService
- public static function crearPedido($presupuesto_id)
+ public static function crearPedido($presupuesto_id, ?bool $isImported = false)
{
$model_pedido = model('App\Models\Pedidos\PedidoModel');
$model_pedido_linea = model('App\Models\Pedidos\PedidoLineaModel');
@@ -1896,7 +1900,7 @@ class PresupuestoService extends BaseService
"user_updated_id" => auth()->user()->id,
];
$id_linea = $model_pedido_linea->insert($data_pedido_linea);
- PedidoXMLService::generate_xml($pedido_id);
+ //PedidoXMLService::generate_xml($pedido_id);
}
if ($id_linea != 0 && $pedido_id != 0) {
@@ -1907,9 +1911,26 @@ class PresupuestoService extends BaseService
$pedido = $modelPedido->find($pedido_id);
$serviceProduction->setPedido($pedido);
if (!$pedido->orden_trabajo()) {
-
- $r = $serviceProduction->createOrdenTrabajo();
+
+ $r = $serviceProduction->createOrdenTrabajo($isImported);
$modelPedido->set(['estado' => 'produccion'])->where('id', $pedido_id)->update();
+
+ $clienteModel = model('App\Models\Clientes\ClienteModel');
+ $cliente = $clienteModel->find($datos_presupuesto->cliente_id);
+ $clienteModel = model('App\Models\Clientes\ClienteModel');
+
+ if ($cliente) {
+ if ($cliente->tirada_flexible == 1) {
+ $ejemplares_tirada_flexible = intval($datos_presupuesto->tirada * 0.05);
+ $comentario = lang('OrdenTrabajo.tiradaFlexible', [
+ 'unidades' => $ejemplares_tirada_flexible
+ ]) . "\n" . trim($cliente->comentarios_tirada_flexible);
+ $serviceProduction->init($r->id)->updateOrdenTrabajoData([
+ 'name' => 'comment_logistica',
+ 'comment_logistica' => $comentario
+ ]);
+ }
+ }
}
}
return true;
@@ -1984,17 +2005,17 @@ class PresupuestoService extends BaseService
return $peso;
}
- public static function ajustarPresupuesto($id, $precio_unidad = null, $unidades = null, $precio_total = null, $forzar_descuento = false){
+ public static function ajustarPresupuesto($id, $precio_unidad = null, $unidades = null, $precio_total = null, $forzar_descuento = false)
+ {
$precio_total_asignado = 0;
$precio_unidad_asignado = $precio_unidad;
$warning = false;
- $model = model('App\Models\Presupuestos\PresupuestoModel');
- if($precio_unidad != null && $unidades != null){
+ $model = model('App\Models\Presupuestos\PresupuestoModel');
+ if ($precio_unidad != null && $unidades != null) {
$precio_total_asignado = round(floatval($precio_unidad) * intval($unidades), 2);
- }
- else{
+ } else {
$precio_total_asignado = floatval($precio_total);
}
$presupuesto = $model->find($id);
@@ -2003,13 +2024,12 @@ class PresupuestoService extends BaseService
$total_descuento = 0;
$total_descuentoPercent = 0;
- if($costes + $envio_base > $precio_total_asignado){
+ if ($costes + $envio_base > $precio_total_asignado) {
- if($forzar_descuento){
+ if ($forzar_descuento) {
$total_descuento = $costes + $envio_base - $precio_total_asignado;
$total_descuentoPercent = round($total_descuento / ($costes + $envio_base) * 100, 2);
- }
- else{
+ } else {
$precio_total_asignado = round($costes + $envio_base, 2);
$precio_unidad_asignado = round($precio_total_asignado / intval($unidades), 4);
}
@@ -2021,22 +2041,22 @@ class PresupuestoService extends BaseService
$sumForFactor = floatval($presupuesto->total_coste_papel) + floatval($presupuesto->total_coste_impresion);
$sumForFactorPonderado = $sumForFactor + floatval($presupuesto->total_coste_servicios);
-
- $factor = ($precio_total_asignado - floatval($presupuesto->envio_base)
+
+ $factor = ($precio_total_asignado - floatval($presupuesto->envio_base)
- floatval($presupuesto->total_coste_envios) - floatval($presupuesto->total_margen_envios)) / $sumForFactor;
-
- $factorPonderado = ($precio_total_asignado - floatval($presupuesto->envio_base)
+
+ $factorPonderado = ($precio_total_asignado - floatval($presupuesto->envio_base)
- floatval($presupuesto->total_coste_envios) - floatval($presupuesto->total_margen_envios)) / $sumForFactorPonderado;
-
+
if ($presupuesto) {
- $presupuesto->total_margenes = $total_margenes;
+ $presupuesto->total_margenes = $total_margenes;
$presupuesto->total_aceptado = $precio_total_asignado;
$presupuesto->total_aceptado_revisado = $precio_total_asignado;
$presupuesto->total_presupuesto = $precio_total_asignado;
$presupuesto->total_antes_descuento = $precio_total_asignado - $costes - $envio_base < 0 ?
- $costes + $envio_base :
- $precio_total_asignado;
+ $costes + $envio_base :
+ $precio_total_asignado;
$presupuesto->total_precio_unidad = $precio_unidad_asignado;
$presupuesto->total_descuento = $total_descuento;
$presupuesto->total_descuentoPercent = $total_descuentoPercent;
@@ -2057,7 +2077,10 @@ class PresupuestoService extends BaseService
$merma = 0;
- if ($tirada > $POD) {
+ if ($tirada == 0) {
+ $merma = 0;
+ }
+ else if ($tirada > $POD) {
$merma = $tirada * 0.1;
} else {
$merma_lineas = [];
@@ -2074,4 +2097,114 @@ class PresupuestoService extends BaseService
return round($merma, 0);
}
+
+
+ public static function getCalidad($alias, $cliente_id, $isColor, $isHq, $tirada)
+ {
+ $model = model('App\Models\Configuracion\SelectorCalidadImpresionModel');
+ $calidad = $model->getCalidadImpresion($alias, $cliente_id, $isColor, $isHq, $tirada);
+ if ($calidad) {
+ return [$calidad['isColor'], $calidad['isHq']];
+ }
+ return null;
+ }
+
+ public static function duplicarPresupuesto($id = null, $is_reimpresion = false, $copy_files = false)
+ {
+ try {
+
+ $modelPresupuesto = model('App\Models\Presupuestos\PresupuestoModel');
+ $presupuesto = $modelPresupuesto->find($id);
+ if (!$presupuesto || $id == null) {
+ return [
+ 'success' => false,
+ 'message' => lang('Presupuestos.presupuestoNotFound'),
+ ];
+ }
+ $presupuesto->titulo = $presupuesto->titulo . ' - ' . lang('Presupuestos.duplicado');
+ $presupuesto->is_duplicado = 1;
+ $presupuesto->estado_id = 1;
+ if($is_reimpresion && boolval($copy_files)){
+ $presupuesto->inc_rei = "reimpresion";
+ $modelPedidoLinea = model('App\Models\Pedidos\PedidoLineaModel');
+ $pedido_linea = $modelPedidoLinea->where('presupuesto_id', $id)->first();
+ if($pedido_linea){
+ $text = "REIMPRESION [" . date('Y-m-d H:i:s') . "] - PEDIDO: " . $pedido_linea->pedido_id .
+ "\n================================================\n";
+ $presupuesto->comentarios_safekat = $text . $presupuesto->comentarios_safekat ;
+ }
+ }
+ else if($is_reimpresion){
+ $presupuesto->inc_rei = null;
+ $modelPedidoLinea = model('App\Models\Pedidos\PedidoLineaModel');
+ $pedido_linea = $modelPedidoLinea->where('presupuesto_id', $id)->first();
+ if($pedido_linea){
+ $text = "DUPLICADO [" . date('Y-m-d H:i:s') . "] - PEDIDO: " . $pedido_linea->pedido_id .
+ "\n================================================\n";
+ $presupuesto->comentarios_safekat = $text . $presupuesto->comentarios_safekat;
+ }
+ }
+ else{
+ $presupuesto->inc_rei = null;
+ }
+ $new_id = $modelPresupuesto->insert($presupuesto);
+
+ $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
+ foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
+ $acabado->presupuesto_id = $new_id;
+ $presupuestoAcabadosModel->insert($acabado);
+ }
+
+ $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
+ foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
+ $encuadernacion->presupuesto_id = $new_id;
+ $presupuestoEncuadernacionesModel->insert($encuadernacion);
+ }
+
+ $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
+ foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
+ $manipulado->presupuesto_id = $new_id;
+ $presupuestoManipuladosModel->insert($manipulado);
+ }
+
+ $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
+ foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
+ $preimpresion->presupuesto_id = $new_id;
+ $presupuestoPreimpresionesModel->insert($preimpresion);
+ }
+
+ $presupuestoServiciosExtraModel = model('App\Models\Presupuestos\PresupuestoServiciosExtraModel');
+ foreach ($presupuestoServiciosExtraModel->where('presupuesto_id', $presupuesto->id)->findAll() as $servicioExtra) {
+ $servicioExtra->presupuesto_id = $new_id;
+ $presupuestoServiciosExtraModel->insert($servicioExtra);
+ }
+
+ $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
+ foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
+ $direccion->presupuesto_id = $new_id;
+ $presupuestoDireccionesModel->insert($direccion);
+ }
+
+ $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
+ $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
+
+
+ if (boolval($copy_files)== true) {
+ $presupuestoFilesModel = model('App\Models\Presupuestos\PresupuestoFicheroModel');
+ $presupuestoFilesModel->copyFiles($presupuesto->id, $new_id);
+ }
+
+ return [
+ 'success' => true,
+ 'id' => $new_id,
+ 'message' => lang('Presupuestos.presupuestoGenerado'),
+ ];
+
+ } catch (\Exception $e) {
+ return [
+ 'success' => false,
+ 'message' => $e->getMessage()
+ ];
+ }
+ }
}
diff --git a/ci4/app/Services/ProductionService.php b/ci4/app/Services/ProductionService.php
index de5c7dfa..e5304add 100755
--- a/ci4/app/Services/ProductionService.php
+++ b/ci4/app/Services/ProductionService.php
@@ -52,6 +52,7 @@ class ProductionService extends BaseService
*/
public array $TIPOS_ROTATIVA = ['lp_rot_bn', 'lp_rot_color'];
+ public array $OT_TAREA_STATUS_TITLE;
protected OrdenTrabajoModel $otModel;
protected OrdenTrabajoTarea $otTarea;
@@ -83,6 +84,12 @@ class ProductionService extends BaseService
* @var string
*/
public string $statusColor;
+ public int $guillotinaMaquinaId;
+ public int $hunkelerMaquinaId;
+ public int $tecnauMaquinaId;
+ public int $trimmingMaquinaId;
+ public int $guillotinaPreparacionInteriorMaquinaId;
+
/**
* Valor límite del POD
*
@@ -110,6 +117,12 @@ class ProductionService extends BaseService
* @var boolean
*/
public bool $isPlastificado = false; //* CHECK DONE
+ /**
+ * Indica si la orden de trabajo contiene retractilado
+ * Se usa para mostrar la fecha correspondiente en la vista
+ * @var boolean
+ */
+ public bool $isRetractilado = false; //* CHECK DONE
/**
* Indica si la orden de trabajo contiene gofrado
* Se usa para mostrar la fecha correspondiente en la vista
@@ -175,6 +188,14 @@ class ProductionService extends BaseService
* @var boolean
*/
public bool $isCorte = false; //* CHECK DONE
+
+ /**
+ * Indica si hay una tarea de preparacion interior de guillotina ya se cubierta o interior
+ * Se usa para mostrar la fecha correspondiente en la vista
+ *
+ * @var boolean
+ */
+ public bool $isPrepInteriorGuillotina = false; //* CHECK DONE
/**
* Pedido Entity
*
@@ -191,6 +212,7 @@ class ProductionService extends BaseService
public function __construct()
{
$this->otModel = model(OrdenTrabajoModel::class);
+ $this->maquinaModel = model(MaquinaModel::class);
$this->otDate = model(OrdenTrabajoDate::class);
$this->otTarea = model(OrdenTrabajoTarea::class);
$this->otUser = model(OrdenTrabajoUser::class);
@@ -205,14 +227,30 @@ class ProductionService extends BaseService
$this->statusColor = $this->ordenTrabajoConfig->OT_COLORS["sin_imprimir"];
$this->configVariableModel = model(ConfigVariableModel::class);
$this->podValue = $this->configVariableModel->getVariable('POD')->value;
+ $this->guillotinaMaquinaId = $this->configVariableModel->getVariable('maquina_guillotina_id_default')->value;
+ $this->hunkelerMaquinaId = $this->configVariableModel->getVariable('maquina_hunkeler_id')->value;
+ $this->tecnauMaquinaId = $this->configVariableModel->getVariable('maquina_tecnau_id')->value;
+ $this->trimmingMaquinaId = $this->configVariableModel->getVariable('maquina_trimming_id')->value;
+ $this->guillotinaPreparacionInteriorMaquinaId = $this->configVariableModel->getVariable('maquina_guillotina_prep_id_default')->value;
+
+ $this->OT_TAREA_STATUS_TITLE = [
+ "P" => lang('Produccion.tarea_estados.P'),
+ "F" => lang('Produccion.tarea_estados.F'),
+ "S" => lang('Produccion.tarea_estados.S'),
+ "I" => lang('Produccion.tarea_estados.I'),
+ "E" => lang('Produccion.tarea_estados.E'),
+ "D" => lang('Produccion.tarea_estados.D'),
+ ];
}
public function init(int $orden_trabajo_id): self
{
try {
- $this->maquinaModel = model(MaquinaModel::class);
- $this->otModel = model(OrdenTrabajoModel::class);
- $this->ot = $this->otModel->find($orden_trabajo_id);
+ $ot = $this->otModel->find($orden_trabajo_id);
+ if ($ot == null) {
+ throw new Exception(lang('Produccion.errors.ot_not_found', ['ot_id' => $orden_trabajo_id]));
+ }
+ $this->ot = $ot;
$pedido = $this->ot->pedido();
$this->setPedido($pedido);
$this->defaultMaquinaCorte = $this->maquinaModel->where('nombre', $this->defaultMaquinaCorteName)->first();
@@ -253,7 +291,7 @@ class ProductionService extends BaseService
*
* @return self
*/
- public function createOrdenTrabajo(): OrdenTrabajoEntity|DatabaseException
+ public function createOrdenTrabajo(bool $imported = false): OrdenTrabajoEntity|DatabaseException
{
$auth_user = auth()->user();
@@ -266,13 +304,18 @@ class ProductionService extends BaseService
"user_created_id" => $auth_user->id,
"user_updated_id" => $auth_user->id,
"total_tirada" => $this->pedido->total_tirada,
- "total_precio" => $this->pedido->total_precio
+ "total_precio" => $this->pedido->total_precio,
+ "preimpresion_revisada" => $imported
];
$id = $this->otModel->insert($data);
$this->init($id);
$this->storeOrdenTrabajoUsers();
$this->storeOrdenTrabajoDates();
$this->storeAllTareas();
+ try {
+ $this->updatePodDates();
+ } catch (\Throwable $th) {
+ }
$this->updatePedidoEspera();
return $this->ot;
}
@@ -344,6 +387,8 @@ class ProductionService extends BaseService
$this->storeOrdenTrabajoManipuladoTareas();
// $this->storeOrdenTrabajoPreimpresionTareas();
$this->storeOrdenTrabajoEncuadernacionTareas();
+ $this->storeTareaCorteFinal();
+
// $this->storeOrdenTrabajoExtraTareas();
}
/**
@@ -384,10 +429,37 @@ class ProductionService extends BaseService
$ot_tareas["tiempo_real"] = 0;
$insert_query_result = $this->otTarea->insert($ot_tareas);
$ot_tareas = [];
+ $this->storeTareaCorteBloque($p_linea);
$this->storeTareaCorte($p_linea);
}
return $insert_query_result;
}
+ /**
+ * Inserta una tarea de corte si la impresion es en `rotativa`
+ *
+ * @return OrdenTrabajoTareaEntity|null
+ */
+ protected function storeTareaCorteFinal(): ?OrdenTrabajoTareaEntity
+ {
+ $maquina_id = $this->presupuesto->solapas == 1 ? $this->trimmingMaquinaId : $this->defaultMaquinaCorte->id;
+ $presupuestoLineaImpresion = $this->presupuesto->presupuestoLineaImpresion();
+ $maquinaCorteEntity = $this->maquinaModel->find($maquina_id);
+ $data = [
+ 'orden_trabajo_id' => $this->ot->id,
+ 'presupuesto_linea_id' => $presupuestoLineaImpresion->id,
+ 'nombre' => lang('Produccion.end_cut'),
+ 'maquina_id' => $maquina_id,
+ 'orden' => $maquinaCorteEntity->orden_planning,
+ 'tiempo_estimado' => $this->tiempoEstimadoPorUnidad($maquinaCorteEntity),
+ 'tiempo_real' => 0,
+ 'is_corte' => true,
+ 'tipo_corte' => "bobina",
+ ];
+ $tareaId = $this->otTarea->insert($data);
+ $otCorte = $this->otTarea->find($tareaId);
+ return $otCorte;
+ }
+
/**
* Inserta una tarea de corte si la impresion es en `rotativa`
*
@@ -397,23 +469,70 @@ class ProductionService extends BaseService
protected function storeTareaCorte(PresupuestoLineaEntity $pLinea): ?OrdenTrabajoTareaEntity
{
$otCorte = null;
+ $presupuestoTipo = $this->presupuesto->tipo_presupuesto()->codigo;
+ $isRusticaFresado = str_contains($presupuestoTipo, "Fresado");
+ $maquinaCorteEntity = $this->maquinaModel->find($this->guillotinaPreparacionInteriorMaquinaId);
+ $data = [
+ 'orden_trabajo_id' => $this->ot->id,
+ 'presupuesto_linea_id' => $pLinea->id,
+ 'nombre' => 'Corte',
+ 'maquina_id' => $this->guillotinaPreparacionInteriorMaquinaId,
+ 'orden' => $this->maquinaModel->find($this->guillotinaPreparacionInteriorMaquinaId)->orden_planning,
+ 'tiempo_estimado' => $pLinea->rotativa_tiempo_corte * 60,
+ 'tiempo_real' => 0,
+ 'is_corte' => true,
+ 'tipo_corte' => "prep",
+ ];
+ if ($pLinea->isCubierta()) {
+ $data['nombre'] = lang('Produccion.cover_cut');
+ $data['tiempo_estimado'] = $this->tiempoCortePrepInterior($maquinaCorteEntity);
+ $tareaId = $this->otTarea->insert($data);
+ $otCorte = $this->otTarea->find($tareaId);
+ }
+ if ($pLinea->isImpresionInteriorPlana() || $pLinea->isRotativa()) {
+ if ($pLinea->isImpresionInteriorPlana()) {
+ $data['tiempo_estimado'] = $this->tiempoCortePrepInterior($maquinaCorteEntity);
+ }
+ $data['nombre'] = lang('Produccion.interior_cut');
+ //* Si es rustica fresado y rotativa no se añade preparación de interior en guillotina
+ if (!$isRusticaFresado && !$pLinea->isRotativa()) {
+ $tareaId = $this->otTarea->insert($data);
+ $otCorte = $this->otTarea->find($tareaId);
+ return $otCorte;
+ }
+ }
+ return $otCorte;
+ }
+
+ /**
+ * Inserta una tarea de corte a bloque
+ * Se añade después de una tarea de impresión interior en rotativa.
+ *
+ *
+ * @param PresupuestoLineaEntity $pLinea
+ * @return OrdenTrabajoTareaEntity|null
+ */
+ protected function storeTareaCorteBloque(PresupuestoLineaEntity $pLinea)
+ {
+ $otCorte = null;
+ $name = $this->cosido() ? lang('Produccion.hunkeler') : lang('Produccion.tecnau');
+ $maquina_id = $this->cosido() ? $this->hunkelerMaquinaId : $this->tecnauMaquinaId;
if ($pLinea->isRotativa()) {
$tareaId = $this->otTarea->insert([
'orden_trabajo_id' => $this->ot->id,
'presupuesto_linea_id' => $pLinea->id,
- 'nombre' => 'Corte',
- 'maquina_id' => $this->defaultMaquinaCorte->id,
- 'orden' => $this->defaultMaquinaCorte->orden_planning,
+ 'nombre' => $name,
+ 'maquina_id' => $maquina_id,
+ 'orden' => $this->maquinaModel->find($maquina_id)->orden_planning,
'tiempo_estimado' => $pLinea->rotativa_tiempo_corte * 60,
'tiempo_real' => 0,
'is_corte' => true,
- 'tipo_corte' => "bobina",
+ 'tipo_corte' => "bloque",
]);
$otCorte = $this->otTarea->find($tareaId);
}
return $otCorte;
}
-
/**
* General las tareas de acabado segun las líneas de presupuesto_acabados
*
@@ -427,12 +546,14 @@ class ProductionService extends BaseService
$ot_tareas = [];
if (count($p_linea_maquinas) > 0) {
$linea_maquina = $p_linea_maquinas[0]; //Se obtiene la primera máquina aunque tenga varias
+ $maquinaEntity = $this->maquinaModel->find($linea_maquina->id);
$ot_tareas["orden_trabajo_id"] = $this->ot->id;
$ot_tareas["presupuesto_acabado_id"] = $p_linea->id;
$ot_tareas["nombre"] = $p_linea->tarifa()->nombre;
$ot_tareas["orden"] = $linea_maquina->orden_planning ?? 100;
$ot_tareas["maquina_id"] = $linea_maquina->id;
$ot_tareas["imposicion_id"] = null;
+ $ot_tareas['tiempo_estimado'] = $this->tiempoEstimadoPorUnidad($maquinaEntity);
$this->otTarea->insert($ot_tareas);
$ot_tareas = [];
} else {
@@ -458,12 +579,14 @@ class ProductionService extends BaseService
$ot_tareas = [];
if (count($p_linea_maquinas) > 0) {
$linea_maquina = $p_linea_maquinas[0]; //Se obtiene la primera máquina aunque tenga varias
+ $maquinaEntity = $this->maquinaModel->find($linea_maquina->id);
$ot_tareas["orden_trabajo_id"] = $this->ot->id;
$ot_tareas["presupuesto_manipulado_id"] = $p_linea->id;
$ot_tareas["nombre"] = $p_linea->tarifa()->nombre;
$ot_tareas["orden"] = $linea_maquina->orden_planning ?? 100;
$ot_tareas["maquina_id"] = $linea_maquina->id;
$ot_tareas["imposicion_id"] = null;
+ $ot_tareas['tiempo_estimado'] = $this->tiempoEstimadoPorUnidad($maquinaEntity);
$this->otTarea->insert($ot_tareas);
$ot_tareas = [];
} else {
@@ -489,12 +612,14 @@ class ProductionService extends BaseService
$ot_tareas = [];
if (count($p_linea_maquinas) > 0) {
$linea_maquina = $p_linea_maquinas[0]; //Se obtiene la primera máquina aunque tenga varias
+ $maquinaEntity = $this->maquinaModel->find($linea_maquina->id);
$ot_tareas["orden_trabajo_id"] = $this->ot->id;
$ot_tareas["presupuesto_preimpresion_id"] = $p_linea->id;
$ot_tareas["nombre"] = $p_linea->tarifa()->nombre;
$ot_tareas["orden"] = $linea_maquina->orden_planning ?? 100;
$ot_tareas["maquina_id"] = $linea_maquina->id;
$ot_tareas["imposicion_id"] = null;
+ $ot_tareas['tiempo_estimado'] = $this->tiempoEstimadoPorUnidad($maquinaEntity);
$this->otTarea->insert($ot_tareas);
$ot_tareas = [];
} else {
@@ -520,12 +645,18 @@ class ProductionService extends BaseService
$ot_tareas = [];
if (count($p_linea_maquinas) > 0) {
$linea_maquina = $p_linea_maquinas[0]; //Se obtiene la primera máquina aunque tenga varias
+ $maquinaEntity = $this->maquinaModel->find($linea_maquina->id);
$ot_tareas["orden_trabajo_id"] = $this->ot->id;
$ot_tareas["presupuesto_encuadernado_id"] = $p_linea->id;
$ot_tareas["nombre"] = $p_linea->tarifa()->nombre;
$ot_tareas["orden"] = $linea_maquina->orden_planning ?? 110;
$ot_tareas["maquina_id"] = $linea_maquina->id;
- $ot_tareas["tiempo_estimado"] = $p_linea->tiempo;
+ if($p_linea->tiempo <= 0){
+ $ot_tareas["tiempo_estimado"] = $this->tiempoEstimadoPorUnidad($maquinaEntity);
+ }
+ else{
+ $ot_tareas["tiempo_estimado"] = $p_linea->tiempo*3600; // El manipulado viene en horas
+ }
$ot_tareas["tiempo_real"] = $p_linea->tiempo;
$ot_tareas["imposicion_id"] = null;
$this->otTarea->insert($ot_tareas);
@@ -586,11 +717,21 @@ class ProductionService extends BaseService
}
return ["tareas" => $tareas];
}
+ public function getTareasWithMaquina(int $maquina_id, ?array $tareaEstados = null): ?array
+ {
+ return $this->otModel->queryMaquinaTareas($maquina_id, $tareaEstados)
+ ->where('ordenes_trabajo.id', $this->ot->id)
+ ->get()->getResult(OrdenTrabajoTareaEntity::class);
+ }
public function getPdf()
{
return view("themes/vuexy/pdfs/orden_trabajo", $this->getDataPdf());
}
+ public function getPdfContent()
+ {
+ return view("themes/vuexy/pdfs/orden_trabajo_view", $this->getDataPdf());
+ }
public function getFerroPdf()
{
return view("themes/vuexy/pdfs/ferro", $this->getDataPdf());
@@ -672,6 +813,7 @@ class ProductionService extends BaseService
->join("lg_imposiciones", "lg_imposiciones.id = orden_trabajo_tareas.imposicion_id", "left")
->whereIn("presupuesto_linea.tipo", $this->TIPOS_ROTATIVA)
->where('lg_maquinas.is_rotativa', true)
+ ->where('lg_maquinas.tipo', 'impresion')
->where("orden_trabajo_tareas.deleted_at", null)
->orderBy("orden_trabajo_tareas.orden", "ASC")
->groupBy('ordenes_trabajo.id');
@@ -714,6 +856,7 @@ class ProductionService extends BaseService
// ->where("orden_trabajo_tareas.orden_trabajo_id", $this->ot->id)
->whereIn("presupuesto_linea.tipo", $this->TIPOS_PLANA)
->where('lg_maquinas.is_rotativa', false)
+ ->where('lg_maquinas.tipo', 'impresion')
->where("orden_trabajo_tareas.deleted_at", null)
->orderBy("orden_trabajo_tareas.orden", "ASC")
->groupBy('ordenes_trabajo.id');
@@ -808,6 +951,31 @@ class ProductionService extends BaseService
+ return $q;
+ }
+ public function maquinaPlanaDatatableQuery()
+ {
+ $q = $this->otModel->builder()->select([
+ "lg_maquinas.nombre as maquinaNombre",
+ "lg_maquinas.id as maquinaId",
+ "COUNT(orden_trabajo_tareas.id) as tareasCount",
+ "presupuesto_linea.pliegos_pedido as pliegosPedido",
+ "SUM(ordenes_trabajo.total_tirada) as totalTirada",
+ "SUM(orden_trabajo_tareas.tiempo_real) as tiempoReal"
+ ])
+ ->join("orden_trabajo_tareas", "orden_trabajo_tareas.orden_trabajo_id = ordenes_trabajo.id", "left")
+ ->join("presupuesto_linea", "presupuesto_linea.id = orden_trabajo_tareas.presupuesto_linea_id", "left")
+ ->join("presupuestos", "presupuestos.id = presupuesto_linea.presupuesto_id", "right")
+ ->join('lg_maquinas', "lg_maquinas.id = orden_trabajo_tareas.maquina_id", "left")
+ ->where("orden_trabajo_tareas.deleted_at", null)
+ ->where("orden_trabajo_tareas.presupuesto_linea_id IS NOT NULL", NULL, FALSE)
+ ->whereIn("presupuesto_linea.tipo", $this->TIPOS_PLANA)
+ ->where('lg_maquinas.tipo', 'impresion')
+ // ->where('lg_maquinas.padre_id', 0)
+ ->groupBy('lg_maquinas.id');
+
+
+
return $q;
}
/**
@@ -843,7 +1011,8 @@ class ProductionService extends BaseService
"tareas_encuadernacion" => $this->tareas_encuadernacion(),
"tareas_preimpresion" => $this->tareas_preimpresion(),
"tareas_impresion" => $this->tareas_impresion(),
- "tiempo_procesamiento" => $this->getTiempoProcesamientoHHMM(),
+ "tiempo_procesamiento" => $this->getTiempoProcesamientoHHMMSS(),
+ "tiempo_total" => $this->getTiempoTotalTareas(),
"statusColor" => $this->getOtColorStatus(),
"tareaCosido" => $this->getTareaCosido(),
];
@@ -871,8 +1040,8 @@ class ProductionService extends BaseService
"peso_unidad" => $logistica_data["peso_unidad"],
"peso_pedido" => $logistica_data["peso_pedido"],
"imposicion" => $this->getImposicionTareaImpresion(),
- "tiempo_procesamiento" => $this->getTiempoProcesamientoHHMM(),
- "tiempo_impresion" => $this->getTiempoTareasImpresionHHMM(),
+ "tiempo_procesamiento" => $this->getTiempoProcesamientoHHMMSS(),
+ "tiempo_impresion" => $this->getTiempoTareasImpresionHHMMSS(),
"colors" => $this->getPdfColors(),
"isPOD" => $this->isPOD,
"uvi" => $this->getUVI(),
@@ -958,6 +1127,11 @@ class ProductionService extends BaseService
public function updateOrdenTrabajoTarea($tarea_id, $data): bool
{
+ $tareaEntity = $this->otTarea->find($tarea_id);
+ if(isset($data['maquina_id']) && $tareaEntity->maquina_id != $data['maquina_id']) {
+ $maquinaEntity = $this->maquinaModel->find($data['maquina_id']);
+ $data['tiempo_estimado'] = $this->tiempoEstimadoPorUnidad($maquinaEntity);
+ }
if (isset($data['maquina_id'])) {
$maquina = model(MaquinaModel::class)->find($data['maquina_id']);
$data['orden'] = $maquina->orden_planning;
@@ -982,15 +1156,15 @@ class ProductionService extends BaseService
$data["action_user_id"] = auth()->user()->id;
$lastDate = $this->otTareaProgressDate->where('ot_tarea_id', $data['ot_tarea_id'])->orderBy('action_at', 'DESC')->first();
if ($lastDate) {
- if ($lastDate->estado == $data['estado']) {
- throw new Exception(lang('Produccion.duplicate_estado_tarea_progress'));
- }
+ // if ($lastDate->estado == $data['estado']) {
+ // throw new Exception(lang('Produccion.duplicate_estado_tarea_progress'));
+ // }
if ($lastDate->estado == 'F') {
throw new Exception(lang('Produccion.task_already_finished'));
}
}
- if(isset($data['estado'])){
- if($data['estado'] == 'F'){
+ if (isset($data['estado'])) {
+ if ($data['estado'] == 'F') {
$tareaEntity = $this->otTarea->find($data['ot_tarea_id']);
$this->init($tareaEntity->orden_trabajo_id);
$dateName = $this->getOrdenTrabajoTareaDate($tareaEntity);
@@ -1015,11 +1189,15 @@ class ProductionService extends BaseService
$data["action_at"] = Time::now()->format('Y-m-d H:i:s');
$data["action_user_id"] = auth()->user()->id;
$status = $this->otTareaProgressDate->where('ot_tarea_id', $orden_trabajo_tarea_id)->delete();
- if($status){
- $tareaEntity = $this->otTarea->find($orden_trabajo_tarea_id);
- $this->init($tareaEntity->orden_trabajo_id);
- $dateName = $this->getOrdenTrabajoTareaDate($tareaEntity);
- $this->emptyOrdenTrabajoDate($this->ot->id,$dateName);
+ if ($status) {
+ $tareaEntity = $this->otTarea->find($orden_trabajo_tarea_id);
+ $this->init($tareaEntity->orden_trabajo_id);
+ $dateName = $this->getOrdenTrabajoTareaDate($tareaEntity);
+ $this->emptyOrdenTrabajoDate($this->ot->id, $dateName);
+ $tareaEntity->tiempo_real = 0;
+ $tareaEntity->click_init = 0;
+ $tareaEntity->click_end = 0;
+ $this->otTarea->save($tareaEntity);
}
if ($status) {
$response = $this->storeOrdenTrabajoTareaProgressDate($data);
@@ -1047,6 +1225,16 @@ class ProductionService extends BaseService
$this->updateProgress();
return $result;
}
+
+
+ public function updateOrdenTrabajoData($data)
+ {
+ $result = $this->otModel->where('id', $this->ot->id)
+ ->set($data['name'], $data[$data['name']])
+ ->update();
+ return $result;
+ }
+
public function emptyOrdenTrabajoDate(int $orden_trabajo_id, string $dateName)
{
$status = $this->otDate->where('orden_trabajo_id', $orden_trabajo_id)
@@ -1105,6 +1293,9 @@ class ProductionService extends BaseService
if (isset($data["is_pedido_espera"])) {
$data["pedido_espera_by"] = auth()->user()->id;
}
+ if (isset($data["preimpresion_revisada"])) {
+ $data["preimpresion_revisada_by"] = auth()->user()->id;
+ }
return $this->otModel->update($this->ot->id, $data);
}
public function updateOrdenTrabajoPedido($data)
@@ -1200,13 +1391,14 @@ class ProductionService extends BaseService
->whereIn("presupuesto_linea.tipo", $this->TIPOS_ROTATIVA)
->where('lg_maquinas.is_rotativa', true)
->where("orden_trabajo_tareas.deleted_at", null)
- ->orderBy("orden_trabajo_tareas.orden", "ASC");
+ ->orderBy("orden_trabajo_tareas.orden", "ASC")
+ ->groupBy('lg_maquinas.id');
if ($q) {
$query->like('lg_maquinas.nombre', $q);
}
return $query->get()->getResultArray();
}
- public function querySelectMaquinaPlanningPlana($q)
+ public function querySelectMaquinaPlanningPlana($q, ?string $padreId)
{
$query = $this->otModel->builder()->select([
"orden_trabajo_tareas.maquina_id as id",
@@ -1218,10 +1410,14 @@ class ProductionService extends BaseService
->whereIn("presupuesto_linea.tipo", $this->TIPOS_PLANA)
->where('lg_maquinas.is_rotativa', false)
->where("orden_trabajo_tareas.deleted_at", null)
- ->orderBy("orden_trabajo_tareas.orden", "ASC");
+ ->orderBy("orden_trabajo_tareas.orden", "ASC")
+ ->groupBy('lg_maquinas.id');
if ($q) {
$query->like('lg_maquinas.nombre', $q);
}
+ if ($padreId) {
+ $query->where('lg_maquinas.padre_id', $padreId);
+ }
return $query->get()->getResultArray();
}
public function querySelectMaquinaPadrePlanningPlana($q)
@@ -1234,10 +1430,8 @@ class ProductionService extends BaseService
->join("presupuesto_linea", "presupuesto_linea.id = orden_trabajo_tareas.presupuesto_linea_id", "left")
->join("lg_maquinas", "lg_maquinas.id = orden_trabajo_tareas.maquina_id", "left")
->join("lg_maquinas mp", "mp.id = lg_maquinas.padre_id", "left")
- ->whereIn("presupuesto_linea.tipo", $this->TIPOS_PLANA)
->where('lg_maquinas.is_rotativa', false)
- ->where('mp.is_padre', 0)
- ->where("orden_trabajo_tareas.deleted_at", null)
+ ->where('lg_maquinas.is_padre !=', 0)
->groupBy("mp.id");
if ($q) {
$query->like('lg_maquinas.nombre', $q);
@@ -1264,7 +1458,7 @@ class ProductionService extends BaseService
}
return $query->get()->getResultArray();
}
- public function querySelectPapelPlanningPlana($q)
+ public function querySelectPapelPlanningPlana($q, ?string $maquinaId)
{
$query = $this->otModel->builder()->select([
"lg_papel_impresion.id",
@@ -1282,12 +1476,15 @@ class ProductionService extends BaseService
if ($q) {
$query->like('lg_papel_impresion.nombre', $q);
}
+ if ($maquinaId) {
+ $query->where('orden_trabajo_tareas.maquina_id', $maquinaId);
+ }
return $query->get()->getResultArray();
}
public function tareaUpdateMaquinaCorte($orden_trabajo_id): bool
{
$cvm = model(ConfigVariableModel::class);
- $otTarea = $this->otTarea->where('orden_trabajo_id', $orden_trabajo_id)->where('is_corte', true)->first();
+ $otTarea = $this->otTarea->where('orden_trabajo_id', $orden_trabajo_id)->where('is_corte', true)->whereIn('tipo_corte', ['bobina', 'guillotina'])->first();
$toggleCorte = "bobina";
if ($otTarea->tipo_corte == "bobina") {
$maquina_id = $cvm->where('name', "id_maquina_guillotina_corte_ot_tarea")->first()["value"];
@@ -1397,26 +1594,55 @@ class ProductionService extends BaseService
}
return $pedidoUserDates;
}
- public function getTiempoProcesamientoHHMM(): ?string
+ public function getTiempoEstimadoTotalTareasSeconds(): int
{
try {
$time_tareas_seconds = array_map(fn($q) => $q->tiempo_estimado ?? 0, $this->ot->tareas());
$seconds = array_sum($time_tareas_seconds);
- return float_seconds_to_hhmm_string($seconds);
+ return $seconds;
+ } catch (\Throwable $th) {
+ return 0;
+ }
+ }
+ public function getTiempoProcesamientoHHMMSS(): ?string
+ {
+ try {
+ $time_tareas_seconds = array_map(fn($q) => $q->tiempo_estimado ?? 0, $this->ot->tareas());
+ $seconds = array_sum($time_tareas_seconds);
+ return float_seconds_to_hhmmss_string($seconds);
+ } catch (\Throwable $th) {
+ return '00:00:00';
+ }
+ }
+ public function getTiempoTareasImpresionHHMMSS(): string
+ {
+ try {
+ $tareas_impresion = $this->ot->tareas_impresion();
+ $tiempo_seconds = 0;
+ foreach ($tareas_impresion as $key => $tarea) {
+ if ($tarea->is_corte == false) {
+ $tiempo_seconds += $tarea->tiempo_estimado;
+ }
+ }
+ return float_seconds_to_hhmmss_string($tiempo_seconds);
} catch (\Throwable $th) {
return '00:00';
}
}
- public function getTiempoTareasImpresionHHMM(): string
+ public function getTiempoTotalTareas(): string
{
- $tareas_impresion = $this->ot->tareas_impresion();
- $tiempo_seconds = 0;
- foreach ($tareas_impresion as $key => $tarea) {
- if ($tarea->is_corte == false) {
- $tiempo_seconds += $tarea->tiempo_estimado;
+ try {
+ $tareas = $this->ot->tareas();
+ $tiempo_seconds = 0;
+ foreach ($tareas as $key => $tarea) {
+ if ($tarea->tiempo_real) {
+ $tiempo_seconds += $tarea->tiempo_real;
+ }
}
+ return float_seconds_to_hhmm_string($tiempo_seconds);
+ } catch (\Throwable $th) {
+ return '00:00';
}
- return float_seconds_to_hhmm_string($tiempo_seconds);
}
public function getUVI(): ?TarifaAcabadoEntity
{
@@ -1429,32 +1655,36 @@ class ProductionService extends BaseService
}
return $uvi;
}
+
public function updateProgress(): bool
{
- $userDates = $this->ordenTrabajoConfig->DATE_USER_MAPPING;
- $pedidoUserDates = $this->ordenTrabajoConfig->DATE_USER_MAPPING_PEDIDO;
-
- $fill_dates = 0;
- $status = false;
- $total = count($userDates) + count($pedidoUserDates);
+ $progress = $this->getOtProgress();
if ($this->ot->estado != "F") {
- if ($this->ot->dates()) {
-
- foreach ($userDates as $key => $value) {
- if ($this->ot->dates()->{$key} != null) $fill_dates++;
- }
- foreach ($pedidoUserDates as $key => $value) {
- if ($this->pedido->{$key} != null) $fill_dates++;
- }
-
- $progreso = (float) $fill_dates / $total * 100;
- $status = $this->otModel->update($this->ot->id, ["progreso" => round($progreso, 2)]);
- }
+ $status = $this->otModel->update($this->ot->id, ["progreso" => round($progress, 2)]);
} else {
$status = $this->otModel->update($this->ot->id, ["progreso" => 100]);
}
return $status;
}
+ public function getOtProgress()
+ {
+ $datesWithTime = $this->getOrdenTrabajoTareaDatesWithTiempoEstimado();
+ $tiempo_estimado_total = $this->getTiempoEstimadoTotalTareasSeconds();
+ $progress = 0;
+ $otDates = $this->ot->dates();
+ foreach ($datesWithTime as $key => $dateWithTime) {
+ ["date" => $date, "tiempo_estimado" => $tiempo_estimado] = $dateWithTime;
+ try {
+ if ($otDates->{$date}) {
+ $progress += $tiempo_estimado / $tiempo_estimado_total * 100;
+ }
+ } catch (\Throwable $th) {
+ //throw $th;
+ $progress += 0;
+ }
+ }
+ return $progress;
+ }
public function getOtColorStatus(): string
{
if ($this->ot->dates()) {
@@ -1584,22 +1814,22 @@ class ProductionService extends BaseService
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['default'];
$papel_code = $papel->code_ot;
if ($papel_code) {
- if (strpos($papel_code, "BCLOF")) {
+ if (str_contains($papel_code, "BCLOF")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['blanco'];
}
- if (strpos($papel_code, "AH") && $papel->code == "OFF2") {
+ if (str_contains($papel_code, "AH")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['ahuesado'];
}
- if (strpos($papel_code, "MARF")) {
+ if (str_contains($papel_code, "MARF")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['marfil'];
}
- if (strpos($papel_code, "VOLAH")) {
+ if (str_contains($papel_code, "VOLAH")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['volumen_ahuesado'];
}
- if ($papel_code == "EM") {
+ if (str_contains($papel_code, "EM")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['estucado_mate'];
}
- if ($papel_code == "CGE") {
+ if (str_contains($papel->nombre, "CARTULINA")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['cartulina'];
}
}
@@ -1617,22 +1847,22 @@ class ProductionService extends BaseService
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['default'];
$papel_code = $papel->code_ot;
if ($papel_code) {
- if (strpos($papel_code, "BCLOF")) {
+ if (str_contains($papel_code, "BCLOF")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['blanco'];
}
- if (strpos($papel_code, "AH") && $papel->code == "OFF2") {
+ if (str_contains($papel_code, "AH")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['ahuesado'];
}
- if (strpos($papel_code, "MARF")) {
+ if (str_contains($papel_code, "MARF")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['marfil'];
}
- if (strpos($papel_code, "VOLAH")) {
+ if (str_contains($papel_code, "VOLAH")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['volumen_ahuesado'];
}
- if ($papel_code == "EM") {
+ if (str_contains($papel_code, "EM")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['estucado_mate'];
}
- if ($papel_code == "CGE") {
+ if (str_contains($papel->nombre, "CARTULINA")) {
$color = $this->ordenTrabajoConfig->OT_PAPEL_COLOR['cartulina'];
}
}
@@ -1694,6 +1924,7 @@ class ProductionService extends BaseService
"isColor" => $this->isColor,
"isBN" => $this->isBN,
"isCorte" => $this->corte(),
+ "isPrepInteriorGuillotina" => $this->hasPrepInteriorGuillotina(),
"isGrapado" => $this->isGrapado,
"isCosido" => $this->cosido(),
];
@@ -1735,13 +1966,13 @@ class ProductionService extends BaseService
$acabados = $this->presupuesto->acabados();
foreach ($acabados as $key => $acabado) {
$tarifa_acabado = $acabado->tarifa();
- if ($tarifa_acabado->retractilado) {
+ if ($tarifa_acabado->rectractilado) {
$flag = true;
break;
}
}
- $this->isPlakene = $flag;
- return $this->isPlakene;
+ $this->isRetractilado = $flag;
+ return $this->isRetractilado;
}
public function plakene_tipo(): ?string
{
@@ -1787,10 +2018,10 @@ class ProductionService extends BaseService
public function cosido(): bool
{
$flag = false;
- $manipulados = $this->presupuesto->manipulados();
- foreach ($manipulados as $key => $manipulado) {
- $tarifa_manipulado = $manipulado->tarifa();
- if ($tarifa_manipulado->isCosido()) {
+ $encuadernaciones = $this->presupuesto->encuadernaciones();
+ foreach ($encuadernaciones as $key => $encuadernacion) {
+ $tarifaEncuadernacionEntity = $encuadernacion->tarifa();
+ if ($tarifaEncuadernacionEntity->isCosido()) {
$flag = true;
break;
}
@@ -1859,6 +2090,17 @@ class ProductionService extends BaseService
}
return $this->isCorte;
}
+ public function hasPrepInteriorGuillotina(): bool
+ {
+ $ot_tareas = $this->ot->tareas();
+ foreach ($ot_tareas as $key => $tarea) {
+ if ($tarea->is_corte && $tarea->tipo_corte = "prep") {
+ $this->isPrepInteriorGuillotina = true;
+ break;
+ }
+ }
+ return $this->isPrepInteriorGuillotina;
+ }
public function getFileBarCode()
{
return $this->ot->getBarCodeFile();
@@ -1873,10 +2115,12 @@ class ProductionService extends BaseService
"pedidos.fecha_impresion",
"orden_trabajo_tareas.nombre as tareaName",
"orden_trabajo_tareas.maquina_id",
- "tarea_progress.estado as tareaEstado"
+ "tarea_progress.estado as tareaEstado",
+ "tarea_progress.estado",
+
])
->join("orden_trabajo_tareas", "orden_trabajo_tareas.orden_trabajo_id = ordenes_trabajo.id", "left")
- // Obtener el ultimo estado de la tarea
+ //* Obtener el ultimo estado de la tarea
->join(
'(SELECT ot_tarea_id, estado
FROM orden_trabajo_tarea_progress_dates
@@ -1891,10 +2135,10 @@ class ProductionService extends BaseService
)
->join("pedidos", "pedidos.id = ordenes_trabajo.pedido_id", "right")
->join("lg_maquinas", "lg_maquinas.id = orden_trabajo_tareas.maquina_id", "left")
- ->where('orden_trabajo_tareas.maquina_id', $maquina_id)
- // ->where('pedidos.fecha_impresion IS NOT NULL', null, false)
+ ->where('orden_trabajo_tareas.maquina_id', $maquina_id)
+ // ->where('pedidos.fecha_impresion IS NOT NULL', null, false) //! Dejar comentado por ahora
+ ->where('ordenes_trabajo.preimpresion_revisada', true)
->where("orden_trabajo_tareas.deleted_at", null)
- ->where("tarea_progress.estado", 'P')
->orderBy("pedidos.fecha_impresion", "ASC")
->groupBy('orden_trabajo_tareas.id');
@@ -2075,7 +2319,7 @@ class ProductionService extends BaseService
$data[$tareasAcabado->id] = 'plastificado_at';
}
if ($tarifaAcabado->rectractilado) {
- $data[$tareasAcabado->id] = 'rectractilado_at';
+ $data[$tareasAcabado->id] = 'retractilado_at';
}
if ($tarifaAcabado->estampado) {
$data[$tareasAcabado->id] = 'estampado_at';
@@ -2097,7 +2341,7 @@ class ProductionService extends BaseService
$dateName = 'plastificado_at';
}
if ($tarifaAcabado->rectractilado) {
- $dateName = 'rectractilado_at';
+ $dateName = 'retractilado_at';
}
if ($tarifaAcabado->plakene) {
$dateName = 'plakene_at';
@@ -2130,6 +2374,15 @@ class ProductionService extends BaseService
}
return $data;
}
+ public function getOrdenTrabajoTareaDatesWithTiempoEstimado(): array
+ {
+ $dates = [];
+ foreach ($this->ot->tareas() as $key => $tarea) {
+ $dates[$tarea->id]["date"] = $this->getOrdenTrabajoTareaDate($tarea);
+ $dates[$tarea->id]["tiempo_estimado"] = $tarea->tiempo_estimado;
+ }
+ return $dates;
+ }
public function getOrdenTrabajoTareaDates(): array
{
$dates = [];
@@ -2153,6 +2406,65 @@ class ProductionService extends BaseService
if ($tarea->isEncuadernado()) {
$dateName = "encuadernacion_at";
}
+ if ($tarea->is_corte) {
+ $dateName = "corte_at";
+ }
+ if ($tarea->is_corte && $tarea->tipo_corte == "prep") {
+ $dateName = "preparacion_interiores_at";
+ }
return $dateName;
}
+ public function getTitleTareaEstado($tarea_id): array
+ {
+ $estadoTitle = $this->OT_TAREA_STATUS_TITLE["P"];
+ $estadoColor = $this->ordenTrabajoConfig->OT_TAREA_STATUS_COLOR['P'];
+ $userName = null;
+ $progressDateEntity = $this->otTarea->find($tarea_id)->lastState();
+ if ($progressDateEntity) {
+ if (isset($this->OT_TAREA_STATUS_TITLE[$progressDateEntity->estado])) {
+ $estadoTitle = $this->OT_TAREA_STATUS_TITLE[$progressDateEntity->estado];
+ $estadoColor = $this->ordenTrabajoConfig->OT_TAREA_STATUS_COLOR[$progressDateEntity->estado];
+ $userName = $progressDateEntity->user()->fullName();
+ }
+ }
+ return [
+ "title" => $estadoTitle,
+ "color" => $estadoColor,
+ "userName" => $userName ?? "",
+ ];
+ }
+ /**
+ * Devuelve en segundos el tiempo que tarda una máquina de corte en realizar el corte de la tirada completa
+ *
+ * $t = tirada[libros] / velocidad_maquina[libros/minutos]$
+ *
+ * @param MaquinaEntity $maquina
+ * @return float $seconds
+ */
+ public function tiempoEstimadoPorUnidad(MaquinaEntity $maquina): float
+ {
+ $seconds = 0;
+ if ($this->presupuesto->tirada > 0) {
+ $minutos = $this->presupuesto->tirada / $maquina->velocidad;
+ $seconds = $minutos * 60;
+ }
+ return $seconds;
+ }
+ /**
+ * Devuelve en segundos el tiempo que tarda una máquina de corte en realizar
+ *
+ * $t = tirada[libros] / velocidad_maquina[libros/minutos]$
+ *
+ * @param MaquinaEntity $maquina
+ * @return float $seconds
+ */
+ public function tiempoCortePrepInterior(MaquinaEntity $maquina)
+ {
+ $seconds = 0;
+ if ($this->presupuesto->tirada > 0) {
+ $minutos = $this->presupuesto->tirada / $maquina->velocidad;
+ $seconds = $minutos * 60;
+ }
+ return $seconds;
+ }
}
diff --git a/ci4/app/Views/themes/vuexy/components/cards/tarea_card.php b/ci4/app/Views/themes/vuexy/components/cards/tarea_card.php
index 735f1d6f..096ce7d9 100644
--- a/ci4/app/Views/themes/vuexy/components/cards/tarea_card.php
+++ b/ci4/app/Views/themes/vuexy/components/cards/tarea_card.php
@@ -11,7 +11,7 @@
OT ID
-
= $ot->id ?>
+
= $ot->id ?>
Clicks presupuesto
diff --git a/ci4/app/Views/themes/vuexy/components/cards/tarea_card_auto.php b/ci4/app/Views/themes/vuexy/components/cards/tarea_card_auto.php
new file mode 100644
index 00000000..51b682d6
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/components/cards/tarea_card_auto.php
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Tiempo estimado
+
00:00:00
+
+
+
Tiempo real
+
00:00:00
+
+
+
+
+
+
+
+
+ = lang('Produccion.maquinista.cancel') ?>
+ = lang('Produccion.maquinista.play_end') ?>
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/cards/tarea_multiple_card_actions.php b/ci4/app/Views/themes/vuexy/components/cards/tarea_multiple_card_actions.php
new file mode 100644
index 00000000..58e362c9
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/components/cards/tarea_multiple_card_actions.php
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+ = lang('Produccion.maquinista.play_tarea') ?>
+ = lang('Produccion.maquinista.play_pause') ?>
+ = lang('Produccion.maquinista.play_stop') ?>
+ = lang('Produccion.maquinista.play_end') ?>
+ = lang('Produccion.maquinista.cancel') ?>
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_direct.php b/ci4/app/Views/themes/vuexy/components/chat_direct.php
index 8a33235f..3e70a2d2 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_direct.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_direct.php
@@ -148,6 +148,6 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_factura.php b/ci4/app/Views/themes/vuexy/components/chat_factura.php
index 72b1f64a..642ab59f 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_factura.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_factura.php
@@ -157,6 +157,6 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_general.php b/ci4/app/Views/themes/vuexy/components/chat_general.php
index 45c1f16e..ab56ce7e 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_general.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_general.php
@@ -144,7 +144,7 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_orden_trabajo.php b/ci4/app/Views/themes/vuexy/components/chat_orden_trabajo.php
index 546e488c..ac3a1a5a 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_orden_trabajo.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_orden_trabajo.php
@@ -151,6 +151,6 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_pedido.php b/ci4/app/Views/themes/vuexy/components/chat_pedido.php
index d779f831..4ddcdaab 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_pedido.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_pedido.php
@@ -154,6 +154,6 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php b/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php
index 9e8d9421..9550d14d 100755
--- a/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php
+++ b/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php
@@ -152,6 +152,6 @@
= $this->section("additionalExternalJs") ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/dropzone.php b/ci4/app/Views/themes/vuexy/components/dropzone.php
index ad2893df..4065ca91 100755
--- a/ci4/app/Views/themes/vuexy/components/dropzone.php
+++ b/ci4/app/Views/themes/vuexy/components/dropzone.php
@@ -31,6 +31,10 @@
= lang('App.global_save_file') ?>
+
+ = lang('App.global_download_files') ?>
+
+
diff --git a/ci4/app/Views/themes/vuexy/components/tables/maquinista_tarea_table.php b/ci4/app/Views/themes/vuexy/components/tables/maquinista_tarea_table.php
index 2ff699af..11a93134 100755
--- a/ci4/app/Views/themes/vuexy/components/tables/maquinista_tarea_table.php
+++ b/ci4/app/Views/themes/vuexy/components/tables/maquinista_tarea_table.php
@@ -1,9 +1,9 @@
-
+
- = lang('ID') ?>
+ = lang('OT ID') ?>
= lang('Produccion.task.task') ?>
= lang('Produccion.task.estado') ?>
= lang('Produccion.datatable.fecha_impresion') ?>
diff --git a/ci4/app/Views/themes/vuexy/components/tables/ot_table.php b/ci4/app/Views/themes/vuexy/components/tables/ot_table.php
index 21388a84..c42bccec 100755
--- a/ci4/app/Views/themes/vuexy/components/tables/ot_table.php
+++ b/ci4/app/Views/themes/vuexy/components/tables/ot_table.php
@@ -3,6 +3,8 @@
+
+ = lang('Produccion.datatable.ot_id') ?>
= lang('Produccion.datatable.pedido_id') ?>
= lang('Produccion.datatable.fecha_encuadernacion') ?>
= lang('Produccion.datatable.cliente') ?>
@@ -14,6 +16,20 @@
= lang('Produccion.datatable.progreso') ?>
= lang('Basic.global.Action') ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ci4/app/Views/themes/vuexy/components/tables/ot_task_table.php b/ci4/app/Views/themes/vuexy/components/tables/ot_task_table.php
index 77a28ddf..e6ff1789 100755
--- a/ci4/app/Views/themes/vuexy/components/tables/ot_task_table.php
+++ b/ci4/app/Views/themes/vuexy/components/tables/ot_task_table.php
@@ -5,6 +5,7 @@
= lang('Produccion.task.order') ?>
= lang('Produccion.task.task') ?>
+ = lang('Produccion.task.estado') ?>
= lang('Produccion.task.maquina_presupuesto') ?>
= lang('Produccion.task.maquina_actual') ?>
= lang('Produccion.task.imposicion') ?>
diff --git a/ci4/app/Views/themes/vuexy/components/tables/planning_maquina_table.php b/ci4/app/Views/themes/vuexy/components/tables/planning_maquina_table.php
new file mode 100755
index 00000000..ef47fd01
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/components/tables/planning_maquina_table.php
@@ -0,0 +1,28 @@
+
+
+
+
+
+ = lang('Produccion.datatable.nombre') ?>
+ = lang('Produccion.datatable.tareas') ?>
+ = lang('Produccion.datatable.tirada') ?>
+ = lang('Produccion.datatable.pliegos_libro') ?>
+ = lang('Produccion.datatable.tiempo') ?>(HH:MM)
+
+
+
+
+
+
+
+
+
+ Total:
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/components/tables/planning_plana_table.php b/ci4/app/Views/themes/vuexy/components/tables/planning_plana_table.php
index ab28244c..454cb84c 100755
--- a/ci4/app/Views/themes/vuexy/components/tables/planning_plana_table.php
+++ b/ci4/app/Views/themes/vuexy/components/tables/planning_plana_table.php
@@ -24,7 +24,6 @@
-
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 @@
- Identificador ISK
- Identificador ISKN
+
diff --git a/ci4/app/Views/themes/vuexy/form/catalogo/_historicoPedidos.php b/ci4/app/Views/themes/vuexy/form/catalogo/_historicoPedidos.php
new file mode 100644
index 00000000..a16221cc
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/catalogo/_historicoPedidos.php
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Pedidos - Antiguo ERP
+
+
+
+ = lang('Catalogo.id') ?>
+ = lang('Catalogo.createdAt') ?>
+ = lang('Catalogo.tirada') ?>
+ = lang('Catalogo.precioUd') ?>
+ = lang('Catalogo.total') ?>
+ = lang('Catalogo.estado') ?>
+ = lang('Basic.global.Action') ?>
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/catalogo/viewCatalogoLibrosForm.php b/ci4/app/Views/themes/vuexy/form/catalogo/viewCatalogoLibrosForm.php
index 2b520abb..02e7b930 100644
--- a/ci4/app/Views/themes/vuexy/form/catalogo/viewCatalogoLibrosForm.php
+++ b/ci4/app/Views/themes/vuexy/form/catalogo/viewCatalogoLibrosForm.php
@@ -1,3 +1,4 @@
+= $this->include('themes/_commonPartialsBs/datatables') ?>
= $this->include("themes/_commonPartialsBs/select2bs5") ?>
= $this->include("themes/_commonPartialsBs/sweetalert") ?>
= $this->extend('themes/vuexy/main/defaultlayout') ?>
@@ -19,6 +20,7 @@
= view("themes/vuexy/form/catalogo/_datosGeneralesFormItems") ?>
= view("themes/vuexy/form/catalogo/_otrosDatosFormItems") ?>
= view("themes/vuexy/form/catalogo/_configuracionLibroFormItems") ?>
+ = view("themes/vuexy/form/catalogo/_historicoPedidos") ?>
= view("themes/vuexy/form/catalogo/_trackingFormItems") ?>
@@ -39,10 +41,21 @@
= $this->section('css') ?>
-
+
= $this->endSection() ?>
= $this->section("additionalExternalJs") ?>
-
+
+
+
+
+
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php b/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php
index 5ba23c96..f402d3d4 100755
--- a/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php
+++ b/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php
@@ -50,5 +50,5 @@
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php b/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php
index dd4eca4e..0b540525 100755
--- a/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php
+++ b/ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php
@@ -59,6 +59,6 @@
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php b/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php
index 9358b782..d0c7c64c 100755
--- a/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php
+++ b/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php
@@ -112,6 +112,6 @@
src="= site_url('themes/vuexy/js/datatables-editor/dataTables.editor.min.js') ?>">
+ src="= versioned_asset('assets/js/safekat/pages/plantillasTarifasCliente/edit.js') ?>">
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php b/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php
index ff910539..d4c65f9d 100755
--- a/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php
+++ b/ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php
@@ -52,6 +52,6 @@
-
+
=$this->endSection() ?>
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php
index dfb2abfc..10d47200 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php
@@ -84,6 +84,6 @@
= $this->endSection() ?>
= $this->section("additionalExternalJs") ?>
-
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php
index 08069a3b..e0ff68c7 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php
@@ -45,6 +45,6 @@
= $this->endSection() ?>
= $this->section("additionalExternalJs") ?>
-
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php
index 5556a088..200c56fa 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php
@@ -48,17 +48,19 @@
-
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionEsquemaForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionEsquemaForm.php
index 73ad8f27..70674f44 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionEsquemaForm.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionEsquemaForm.php
@@ -36,6 +36,6 @@
= $this->section('additionalExternalJs') ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php
index 1175e877..6d3ce033 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php
@@ -35,6 +35,6 @@
= $this->section('additionalExternalJs') ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php
index 8f445874..6b677ff6 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php
@@ -22,24 +22,27 @@
= view('themes/_commonPartialsBs/_alertBoxes'); ?>
-
-
-
- = lang('Imposiciones.id') ?>
- = lang('Imposiciones.ancho') ?>
- = lang('Imposiciones.alto') ?>
- = lang('Imposiciones.unidades') ?>
- = lang('Imposiciones.orientacion') ?>
- = lang('Imposiciones.maquina') ?>
- = lang('Imposiciones.etiqueta') ?>
- = lang('Imposiciones.imposicion_esquema') ?>
- = lang('Basic.global.Action') ?>
-
-
-
+
+
+
+
+ = lang('Imposiciones.id') ?>
+ = lang('Imposiciones.ancho') ?>
+ = lang('Imposiciones.alto') ?>
+ = lang('Imposiciones.unidades') ?>
+ = lang('Imposiciones.orientacion') ?>
+ = lang('Imposiciones.maquina') ?>
+ = lang('Imposiciones.etiqueta') ?>
+ = lang('Imposiciones.imposicion_esquema') ?>
+ = lang('Basic.global.Action') ?>
+
+
+
+
+
+
+
-
-
@@ -80,6 +83,6 @@
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionNewForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionNewForm.php
index 57c5d09f..9b836a75 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionNewForm.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionNewForm.php
@@ -35,6 +35,6 @@
= $this->section('additionalExternalJs') ?>
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php b/ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php
index 1b2408b9..cc027ddb 100755
--- a/ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php
+++ b/ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php
@@ -6,6 +6,13 @@
+
+
+
+ = lang('Maquinas.alias_ot') ?>*
+
+
@@ -173,7 +180,19 @@
-
+
+
+ etiqueta_envio == true ? 'checked' : ''; ?>
+ >
+
+ = lang('Maquinas.isEtiquetaEnvio') ?>
+
+
+