Seleccionar página
 // CARGA DATOS VENTAS DEL DIA
    function listarVentasDia(turno_id) {
        $.ajax({
            type: 'GET',
            url: 'admin_ctrl.php?accion=listar_venta_seleccionada&turno_id=' + turno_id,
            data: '',
            success: function(datos) {


                $.each(datos, function() {
                    $('#myTable > tbody').append(
                        '<tr>' +
                        '<td>' + this.venta_id + '</td>' +
                        '<td>' + this.venta_nombre_producto + '</td>' +
                        '<td>' + this.venta_nombre_proveedor + '</td>' +
                        '<td>' + this.venta_costo_producto + '</td>' +
                        '<td>' + this.venta_valor_venta + '</td>' +
                        '<td>' + this.venta_user_nombre + '</td>' +
                        '<td>' + this.venta_turno_id + '</td>' +
                        '</tr>'
                    );
                });