terminado importador

This commit is contained in:
2025-03-18 20:19:54 +01:00
parent daafdf2d5a
commit e9c889624d
8 changed files with 80 additions and 19 deletions

View File

@ -102,7 +102,7 @@ class ImportadorModel extends \App\Models\BaseModel
$builder = $db->table('pedido_libro t1')
->select('
t1.titulo, t1.autor, t1.coleccion, t1.isbn, t1.customer_reference as referencia_cliente,
t1.envios_recogecliente as entrega_taller')
t1.envios_recogecliente as entrega_taller, t1.comentarios as comentarios_cliente, t1.comentarios_safekat, t1.comentarios_pdf')
->join('papel_formato t2', 't1.papel_formato_id = t2.id', 'left')
->where('t1.id', $id)
->where('t1.deleted_at', NULL);