forked from qwerty/milfs
limpieza gantt
This commit is contained in:
parent
1c32752658
commit
c44222c3cf
@ -4687,7 +4687,31 @@ function cerrar_sesion(){
|
||||
}
|
||||
$xajax->registerFunction("cerrar_sesion");
|
||||
|
||||
function tareas($formularios_tareas,$datos,$div){
|
||||
$formulario_tareas = $formularios_tareas['formulario_tareas'];
|
||||
$tareas = listado_entradas("$formulario_tareas","","array","","");
|
||||
$tareas_listado="";
|
||||
foreach($tareas as $control => $valor)
|
||||
{ $onclick_tarea ="onclick = \"xajax_formulario_embebido_ajax('','$formulario_tareas','$control','edit')\"";
|
||||
$contenido = mostrar_identificador("$control","$formulario_tareas","$plantilla","","");
|
||||
$tareas_listado .="
|
||||
<div class='panel panel-default'>
|
||||
<div class='panel-heading'>
|
||||
<h4 class='panel-title'>
|
||||
<a data-toggle='collapse' data-parent='#accordion-tareas' href='#collapse_$control'>
|
||||
$valor[nombre]</a>
|
||||
</h4>
|
||||
<p>$valor[descripcion]</p>
|
||||
<a class='link' href='#' $onclick_tarea >Editar</a>
|
||||
</div>
|
||||
<div id='collapse_$control' class='panel-collapse collapse'>
|
||||
<div class='panel-body'>$contenido</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
"; }
|
||||
return $tareas_listado;
|
||||
}
|
||||
function microtareas($formularios_microtareas,$datos,$div){
|
||||
$formulario_microtarea = $formularios_microtareas['formulario_microtarea'];
|
||||
$formulario_microtarea_asignacion =$formularios_microtareas['formulario_microtarea_asignacion'];
|
||||
@ -4996,6 +5020,7 @@ function segundos_cadena($segs){
|
||||
}
|
||||
|
||||
function gantt_datos($control,$tipo){
|
||||
|
||||
$campos=array();
|
||||
$consulta = "SELECT campo_nombre, contenido, campo_tipo FROM form_datos,form_campos
|
||||
WHERE form_datos.id_campo =form_campos.id
|
||||
@ -5043,8 +5068,170 @@ $campos['restante'] = "$restante";
|
||||
|
||||
|
||||
}
|
||||
function proyectos($formulario_proyectos,$datos,$div){
|
||||
|
||||
$formulario_proyecto = $formulario_proyectos['formulario_proyectos'];
|
||||
//return "($formulario_proyectos,$datos,$div)";
|
||||
$proyectos = listado_entradas("$formulario_proyectos","","array","","");
|
||||
$proyectos_listado="";
|
||||
foreach($proyectos as $control_proyecto => $valor_proyecto)
|
||||
{ $onclick_proyecto ="onclick = \"xajax_formulario_embebido_ajax('','$formulario_proyectos','$control_proyecto','edit')\"";
|
||||
$contenido_proyecto = mostrar_identificador("$control_proyecto","$formulario_proyectos","$plantilla","","");
|
||||
$proyectos_listado .="
|
||||
<li class='list-group-item '>
|
||||
|
||||
<a class='link' href='#' $onclick_proyecto ><h3>$valor_proyecto[nombre]</h3></a>
|
||||
$valor_proyecto[descripcion]
|
||||
|
||||
</li>
|
||||
";
|
||||
}
|
||||
$proyectos_listado ="
|
||||
<a class='btn btn-default btn-block' onclick = \"xajax_formulario_embebido_ajax('','$formulario_proyectos','','')\" ><i class='glyphicon glyphicon-plus-sign'></i> $proyectos_titulo[0]</a>
|
||||
<br>
|
||||
<ul class='list-group'>$proyectos_listado</ul>";
|
||||
|
||||
return $proyectos_listado;
|
||||
}
|
||||
function gantt($formulario,$tipo,$div){
|
||||
if($tipo==""){
|
||||
$gantt_array = gantt($formulario,"javascript","");
|
||||
$resultado ="
|
||||
<div id='container_gantt'></div>
|
||||
<script type='text/javascript'>
|
||||
var today = new Date(),
|
||||
day = 1000 * 60 * 60 * 24,
|
||||
|
||||
|
||||
dateFormat = Highcharts.dateFormat,
|
||||
defined = Highcharts.defined,
|
||||
isObject = Highcharts.isObject,
|
||||
reduce = Highcharts.reduce;
|
||||
Highcharts.setOptions({
|
||||
lang: {
|
||||
months: [
|
||||
'Enero', 'Febrero', 'Marzo', 'Abril',
|
||||
'Mayo', 'Junio', 'Julio', 'Agosto',
|
||||
'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'
|
||||
],
|
||||
weekdays: [
|
||||
'Domingo', 'Lunes', 'Martes', 'Mmiercoles',
|
||||
'Jueves', 'Viernes', 'Sabado'
|
||||
]
|
||||
}
|
||||
});
|
||||
var myDateFormat = '%e/%m/%y';
|
||||
Highcharts.ganttChart('container_gantt', {
|
||||
series: [{
|
||||
name: 'Proyecto',
|
||||
data: [ $gantt_array ]
|
||||
}],
|
||||
tooltip: {
|
||||
pointFormatter: function () {
|
||||
var point = this,
|
||||
format = '%e. %b',
|
||||
options = point.options,
|
||||
completed = options.completed,
|
||||
amount = isObject(completed) ? completed.amount : completed,
|
||||
status = ((amount || 0) * 100) + '%',
|
||||
lines;
|
||||
|
||||
lines = [{
|
||||
value: point.name,
|
||||
style: 'font-weight: bold;'
|
||||
}, {
|
||||
title: 'Inicio',
|
||||
value: dateFormat(format, point.start)
|
||||
}, {
|
||||
visible: !options.milestone,
|
||||
title: 'Fin',
|
||||
value: dateFormat(format, point.end)
|
||||
}, {
|
||||
title: 'Completed',
|
||||
value: status
|
||||
}, {
|
||||
title: 'Owner',
|
||||
value: options.owner || 'unassigned'
|
||||
}];
|
||||
|
||||
return reduce(lines, function (str, line) {
|
||||
var s = '',
|
||||
style = (
|
||||
defined(line.style) ? line.style : 'font-size: 0.8em;'
|
||||
);
|
||||
if (line.visible !== false) {
|
||||
s = (
|
||||
'<span style=\"' + style + '\">' +
|
||||
(defined(line.title) ? line.title + ': ' : '') +
|
||||
(defined(line.value) ? line.value : '') +
|
||||
'</span><br/>'
|
||||
);
|
||||
}
|
||||
return str + s;
|
||||
}, '');
|
||||
}
|
||||
},
|
||||
title: {
|
||||
text: ''
|
||||
},
|
||||
|
||||
yAxis: [{
|
||||
uniqueNames: true
|
||||
}],
|
||||
xAxis: [
|
||||
|
||||
{dateTimeLabelFormats: {week: 'Semana %W'}},
|
||||
|
||||
|
||||
{id: 'bottom-datetime-axis',
|
||||
currentDateIndicator: {
|
||||
width: 3,
|
||||
dashStyle: '',
|
||||
color: 'red',
|
||||
label: {
|
||||
format: '%Y-%M-%d'
|
||||
}
|
||||
},
|
||||
|
||||
tickInterval: day,
|
||||
labels: {
|
||||
format: '{value:%a}'
|
||||
}
|
||||
},
|
||||
{dateTimeLabelFormats: {month: ' %b' }}
|
||||
|
||||
],
|
||||
|
||||
navigator: {
|
||||
enabled: true,
|
||||
liveRedraw: true,
|
||||
series: {
|
||||
type: 'gantt',
|
||||
pointPlacement: 0.5,
|
||||
pointPadding: 0.25
|
||||
},
|
||||
yAxis: {
|
||||
min: 0,
|
||||
max: 3,
|
||||
reversed: true,
|
||||
categories: []
|
||||
}
|
||||
},
|
||||
scrollbar: {
|
||||
enabled: true
|
||||
},
|
||||
rangeSelector: {
|
||||
enabled: true,
|
||||
selected: 0
|
||||
},
|
||||
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
";
|
||||
return $resultado;
|
||||
}
|
||||
/// vuelve el array un formulario
|
||||
$array =array();
|
||||
foreach ($formulario as $c =>$v) {$campos .= " <input type= 'hidden' id='$c' name='$c' value='$v'>";}
|
||||
|
Loading…
Reference in New Issue
Block a user