Ignore:
Timestamp:
02/22/10 16:23:36 (14 years ago)
Author:
pedroerp
Message:

Ticket #441 - Suporte a cadastro de substituições de chefia por períodos determinados.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/js/userinterface/orgchart.js

    r1452 r2042  
    171171        var content = '<center><h2>Substituição de Chefia</h2></center>'; 
    172172        content += '<table class="employeeList">'; 
    173         content += '<tr><th>Área</th><th>Titular</th><th>Substituto</th></tr>'; 
     173        content += '<tr><th>Área</th><th>Titular</th><th>Substituto</th><th>Data de início</th><th>Data de término</th></tr>'; 
    174174        var current; 
    175175        for (var i = 0; i < data.length; i++) 
     
    180180                content += '<td>' + current['titular'] + '</td>'; 
    181181                content += '<td>' + current['substituto'] + '</td>'; 
     182                content += '<td>' + current['data_inicio'] + '</td>'; 
     183                content += '<td>' + current['data_fim'] + '</td>'; 
    182184                content += '</tr>'; 
    183185        } 
Note: See TracChangeset for help on using the changeset viewer.