limpieza gantt
This commit is contained in:
parent
933568e185
commit
144beeb547
173
gantt.php
173
gantt.php
@ -1,173 +0,0 @@
|
||||
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Highcharts Gantt Example</title>
|
||||
|
||||
<style type="text/css">
|
||||
#container {
|
||||
max-width: 800px;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<script src="./librerias/gantt/code/highcharts-gantt.js"></script>
|
||||
<script src="./librerias/gantt/code/modules/exporting.js"></script>
|
||||
|
||||
<div id="container"></div>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
var today = new Date(),
|
||||
day = 1000 * 60 * 60 * 24,
|
||||
// Utility functions
|
||||
dateFormat = Highcharts.dateFormat,
|
||||
defined = Highcharts.defined,
|
||||
isObject = Highcharts.isObject,
|
||||
reduce = Highcharts.reduce;
|
||||
|
||||
|
||||
Highcharts.ganttChart('container', {
|
||||
series: [{
|
||||
name: 'Offices',
|
||||
data: [
|
||||
{
|
||||
"id": "8e647b88953955a0526144a01296188c",
|
||||
"name": "Proyectos"
|
||||
},
|
||||
{
|
||||
"id": "aa228450be56fb1943f2eb40bb687d98",
|
||||
"name": "Kepe",
|
||||
"start": 1588309200,
|
||||
"end": 1593493200,
|
||||
"restante": "38 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "8e647b88953955a0526144a01296188c",
|
||||
"parent_nombre": "Proyectos"
|
||||
},
|
||||
{
|
||||
"id": "a9881b5e7c205f3e5dbba8ba6a40ed19",
|
||||
"name": "Recolección de requerimientos",
|
||||
"start": 1590123600,
|
||||
"end": 1590901200,
|
||||
"restante": "8 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "aa228450be56fb1943f2eb40bb687d98",
|
||||
"parent_nombre": "Kepe"
|
||||
},
|
||||
{
|
||||
"id": "22b3e978f3d4d4cc89e9f0cb195a144d",
|
||||
"name": "Montaje de servicios"
|
||||
},
|
||||
{
|
||||
"id": "4fbde6339780a402349ddc0d307c7b86",
|
||||
"name": "Gestor de usuarios y tareas",
|
||||
"start": 1590937800,
|
||||
"end": null,
|
||||
"restante": "-1590194073 segundos",
|
||||
"parent": "22b3e978f3d4d4cc89e9f0cb195a144d",
|
||||
"parent_nombre": "Montaje de servicios"
|
||||
},
|
||||
{
|
||||
"id": "03fe81aa14f23f47b952b6f1d36637b5",
|
||||
"name": "Otra tarea",
|
||||
"start": 1590037200,
|
||||
"end": 1590642000,
|
||||
"restante": "5 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "4fbde6339780a402349ddc0d307c7b86",
|
||||
"parent_nombre": "Gestor de usuarios y tareas"
|
||||
},
|
||||
{
|
||||
"id": "8ae8e207a2a997ed7ec93d3457f6f32e",
|
||||
"name": "Socialización con los coordinadores",
|
||||
"start": 1588309200,
|
||||
"end": 1590901200,
|
||||
"restante": "8 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "4fbde6339780a402349ddc0d307c7b86",
|
||||
"parent_nombre": "Gestor de usuarios y tareas"
|
||||
},
|
||||
{
|
||||
"id": "1b068f6ce2f85897a2f163e1fd1078bc",
|
||||
"name": "Coordinación y administración"
|
||||
},
|
||||
{
|
||||
"id": "b5281d5b30cb046b081a039f7e383d6d",
|
||||
"name": "Convenio universidad del Quindio",
|
||||
"start": 1588309200,
|
||||
"end": 1590901200,
|
||||
"restante": "8 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "1b068f6ce2f85897a2f163e1fd1078bc",
|
||||
"parent_nombre": "Coordinación y administración"
|
||||
},
|
||||
{
|
||||
"id": "cf499f210d28afdb86c4e83456fbf605",
|
||||
"name": "buscar contacto",
|
||||
"start": 1590123600,
|
||||
"end": 1590728400,
|
||||
"restante": "6 d\u00edas, 4 horas, 25 minutos, 27 segundos",
|
||||
"parent": "b5281d5b30cb046b081a039f7e383d6d",
|
||||
"parent_nombre": "Convenio universidad del Quindio"
|
||||
}
|
||||
]
|
||||
}],
|
||||
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: 'Start',
|
||||
value: dateFormat(format, point.start)
|
||||
}, {
|
||||
visible: !options.milestone,
|
||||
title: 'End',
|
||||
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: ''
|
||||
},
|
||||
xAxis: {
|
||||
currentDateIndicator: true,
|
||||
min: today - 3 * day,
|
||||
max: today + 18 * day
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
183
index.php
183
index.php
@ -207,57 +207,30 @@ if($plantilla_inicio[0] =="grid"){}else{
|
||||
$formularios_microtareas['formulario_equipo']="$formulario_equipo";
|
||||
$formularios_microtareas['campo_equipo']="$campo_equipo";
|
||||
//$microtareas_planilla = planilla("$formulario_microtarea","10",'exportable');
|
||||
$gantt_array = gantt($formularios_microtareas,"javascript","");
|
||||
$diagrama_gantt = gantt($formularios_microtareas,"","");
|
||||
$microtarea_titulo = remplacetas('form_id','id',"$formulario_microtarea",'nombre',"") ;
|
||||
$microtarea_descripcion = remplacetas('form_id','id',"$formulario_microtarea",'descripcion',"") ;
|
||||
|
||||
/// tareas ///
|
||||
$formularios_tareas['formulario_tareas']=$formulario_tareas;
|
||||
|
||||
$tareas_titulo = remplacetas('form_id','id',"$formulario_tareas",'nombre',"") ;
|
||||
$tareas_descripcion = remplacetas('form_id','id',"$formulario_tareas",'descripcion',"") ;
|
||||
$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>
|
||||
|
||||
"; }
|
||||
|
||||
/// proyectos ///
|
||||
$proyectos_titulo = remplacetas('form_id','id',"$formulario_proyectos",'nombre',"") ;
|
||||
$proyectos_descripcion = remplacetas('form_id','id',"$formulario_proyectos",'descripcion',"") ;
|
||||
$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 '>
|
||||
$formulario_proyectos['formulario_proyectos']=$formulario_proyectos;
|
||||
|
||||
|
||||
|
||||
<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>";
|
||||
$equipo_listado = listado_items($formularios_equipo,'',"");
|
||||
|
||||
$microtarea_listado = microtareas($formularios_microtareas,"","");
|
||||
$tareas_listado = tareas($formularios_tareas,"","");
|
||||
$proyectos_listado = proyectos($formulario_proyectos,"","");
|
||||
|
||||
$pagina_inicio="
|
||||
$librerias
|
||||
<style>
|
||||
@ -322,141 +295,7 @@ foreach($proyectos as $control_proyecto => $valor_proyecto)
|
||||
</div>
|
||||
<div class='container'>
|
||||
<div class='columna_informes' style='height:800px; overflow: auto;'>
|
||||
<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>
|
||||
$diagrama_gantt
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
2
milfs
2
milfs
@ -1 +1 @@
|
||||
Subproject commit d3bc62fce2305f9837660426dce842c99809dffd
|
||||
Subproject commit 1c32752658d00c03d2486055e2a2677aaff80c53
|
Loading…
Reference in New Issue
Block a user