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..cc43a4f9 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,7 @@
| = lang('Produccion.datatable.ot_id') ?> | = lang('Produccion.datatable.pedido_id') ?> | = lang('Produccion.datatable.fecha_encuadernacion') ?> | = lang('Produccion.datatable.cliente') ?> | diff --git a/httpdocs/assets/js/safekat/components/datatables/otDatatable.js b/httpdocs/assets/js/safekat/components/datatables/otDatatable.js index f6e29e1a..bd736040 100644 --- a/httpdocs/assets/js/safekat/components/datatables/otDatatable.js +++ b/httpdocs/assets/js/safekat/components/datatables/otDatatable.js @@ -15,6 +15,7 @@ class OrdenTrabajoDatatable { this.datatableColumns = [ + { data: 'id', searchable: false, sortable: false }, { data: 'pedido_id', searchable: false, sortable: false }, { data: 'fecha_encuadernado_at', searchable: false, sortable: false }, { data: 'cliente_nombre', searchable: false, sortable: false },
|---|