cancel
Showing results for 
Search instead for 
Did you mean: 

Récupération des tâches de l'utilisateur connecté

dorra87
Champ in-the-making
Champ in-the-making
Bonsoir,
Je veux récupérer les tâches de l'utilisateur connectés pour afficher après une statistique de ses tâches selon leurs satut.
J'ai voulu récupérer dans un webscript les tâches de la dashlet my tasks en utilisant ce code
tasks = new Array();
var result = remote.call("/slingshot/dashlets/my-tasks");
var data = eval('(' + result + ')');
if (data.tasks !== null)
{
for (var i=0,len = data.tasks.length;i<len;i++)
{
    tasks.push(data.tasks[i]);
         }
}
j'obtiens une erreur:remote is undefined.
J'ai testé ceci aussi
tasks= workflow.assignedTasks
j'obtiens workflow is undefined.
Je sais pas quoi faire pour récupérer les tâches en utilisant le javascript et je comprend pas pourquoi ils ne sont pas définis.
merci d'avance de votre aide
2 REPLIES 2

sibe
Champ on-the-rise
Champ on-the-rise
Peux-tu expliciter ton problème notamment la déclaration de ton webscript (le fichier .get/post.xml) ainsi que l'emplacement où tu as créé ton webscript (très important).

dorra87
Champ in-the-making
Champ in-the-making
J'ai crée ce projet :https://dl.dropbox.com/u/60550216/workflowstat.png
statWorkflow.get.desc.xml
<webscript>
  <shortname>Statistique</shortname>
  <description>Statistique</description>
  <family>dashlet</family>
  <url>/shareextras/components/dashlets/statWorkflow</url>
</webscript>
statWorkflow.get.html.ftl
<script type="text/javascript" src="${page.url.context}/org/shareextras/components/dashlets/statWorkflow.js"></script>
<script type="text/javascript" src="${page.url.context}/res/shareextras/components/dashlets/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
alert(tasks.length);
var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'column'
            },
            title: {
                text: 'Statistique des tâches des workflows'
            },
            xAxis: {
                categories: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Aout', 'Septembre', 'Octobre', 'Novembre', 'Décembre']
            },
            yAxis: {
                min: 0,
                title: {
                    text: 'Nombre des tâches des workflows'
                },
                stackLabels: {
                    enabled: true,
                    style: {
                        fontWeight: 'bold',
                        color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                    }
                }
            },
            legend: {
                align: 'right',
                x: -100,
                verticalAlign: 'top',
                y: 20,
                floating: true,
                backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
                borderColor: '#CCC',
                borderWidth: 1,
                shadow: false
            },
            tooltip: {
                formatter: function() {
                    return '<b>'+ this.x +'</b><br/>'+
                        this.series.name +': '+ this.y +'<br/>'+
                        'Total: '+ this.point.stackTotal;
                }
            },
            plotOptions: {
                column: {
                    stacking: 'normal',
                    dataLabels: {
                        enabled: true,
                        color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
                    }
                }
            },
             series: [{
                name: 'En attente',
                data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
            }, {
                name: 'En cours',
                data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
            }, {
                name: 'Terminée',
                data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
            }]
        });
    });
   
});
</script>
<script src="${page.url.context}/res/shareextras/components/dashlets/highcharts.js"></script>
<script src="${page.url.context}/res/shareextras/components/dashlets/exporting.js"></script>
<div class="dashlet">
  <div class="title">Statistique</div>
    <div><span>
    <div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
    </span>
    </div>
    </div>
et statWorkflow.js
tasks = new Array();
//tasks= workflow.assignedTasks 
var result = remote.call("/slingshot/dashlets/my-tasks");
var data = eval('(' + result + ')');
if (data.tasks !== null)
{
for (var i=0,len = data.tasks.length;i<len;i++)
{
    tasks.push(data.tasks[i]);
         }
}

L'emplacement du fichier js etait sous workflowStat1\source\web\shareextras\components\dashlets ce qui est  faux mais lorsque je tente de récupérer la variable tasks dans le ftl de cet façon,elle est undefini.Je crois que le lien est faux avec le js.Pouvez vous me corriger?Le code est juste un exemple(état brouillon).
Merci d'avance
Getting started

Tags


Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.