%PDF- %PDF-
| Direktori : /www/loslex_o/tracker/ |
| Current File : /www/loslex_o/tracker/billing_inc.php |
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* This include file prints out the bug bugnote_stats
* $f_bug_id must already be defined
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses bugnote_api.php
* @uses collapse_api.php
* @uses config_api.php
* @uses database_api.php
* @uses filter_api.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses lang_api.php
* @uses string_api.php
* @uses utility_api.php
*/
if( !defined( 'BILLING_INC_ALLOW' ) ) {
return;
}
require_api( 'bugnote_api.php' );
require_api( 'collapse_api.php' );
require_api( 'config_api.php' );
require_api( 'database_api.php' );
require_api( 'filter_api.php' );
require_api( 'gpc_api.php' );
require_api( 'helper_api.php' );
require_api( 'lang_api.php' );
require_api( 'string_api.php' );
require_api( 'utility_api.php' );
?>
<?php
$t_today = date( 'd:m:Y' );
$t_date_submitted = isset( $t_bug ) ? date( 'd:m:Y', $t_bug->date_submitted ) : $t_today;
$t_bugnote_stats_from_def = $t_date_submitted;
$t_bugnote_stats_from_def_ar = explode( ':', $t_bugnote_stats_from_def );
$t_bugnote_stats_from_def_d = $t_bugnote_stats_from_def_ar[0];
$t_bugnote_stats_from_def_m = $t_bugnote_stats_from_def_ar[1];
$t_bugnote_stats_from_def_y = $t_bugnote_stats_from_def_ar[2];
$t_bugnote_stats_from_d = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_START_DAY, $t_bugnote_stats_from_def_d );
$t_bugnote_stats_from_m = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_START_MONTH, $t_bugnote_stats_from_def_m );
$t_bugnote_stats_from_y = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_START_YEAR, $t_bugnote_stats_from_def_y );
$t_bugnote_stats_to_def = $t_today;
$t_bugnote_stats_to_def_ar = explode( ':', $t_bugnote_stats_to_def );
$t_bugnote_stats_to_def_d = $t_bugnote_stats_to_def_ar[0];
$t_bugnote_stats_to_def_m = $t_bugnote_stats_to_def_ar[1];
$t_bugnote_stats_to_def_y = $t_bugnote_stats_to_def_ar[2];
$t_bugnote_stats_to_d = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_END_DAY, $t_bugnote_stats_to_def_d );
$t_bugnote_stats_to_m = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_END_MONTH, $t_bugnote_stats_to_def_m );
$t_bugnote_stats_to_y = gpc_get_int( FILTER_PROPERTY_DATE_SUBMITTED_END_YEAR, $t_bugnote_stats_to_def_y );
$f_get_bugnote_stats_button = gpc_get_string( 'get_bugnote_stats_button', '' );
# Retrieve the cost as a string and convert to floating point
$f_bugnote_cost = floatval( gpc_get_string( 'bugnote_cost', config_get( 'time_tracking_billing_rate' ) ) );
$f_include_subprojects = gpc_get_bool( 'include_subprojects', false );
$f_project_id = helper_get_current_project();
if( ON == config_get( 'time_tracking_with_billing' ) ) {
$t_cost_col = true;
} else {
$t_cost_col = false;
}
$t_collapse_block = is_collapsed( 'time_tracking_stats' );
$t_block_css = $t_collapse_block ? 'collapsed' : '';
$t_block_icon = $t_collapse_block ? 'fa-chevron-down' : 'fa-chevron-up';
# Time tracking date range input form
# CSRF protection not required here - form does not result in modifications
?>
<div class="col-md-12 col-xs-12">
<div id="time_tracking_stats" class="widget-box widget-color-blue2 <?php echo $t_block_css ?>">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<?php print_icon( 'fa-clock-o', 'ace-icon' ); ?>
<?php echo lang_get( 'time_tracking' ) ?>
</h4>
<div class="widget-toolbar">
<a data-action="collapse" href="#">
<?php print_icon( $t_block_icon, 'ace-icon 1 bigger-125' ); ?>
</a>
</div>
</div>
<div class="widget-body">
<form method="post" action="">
<div class="widget-main">
<input type="hidden" name="id" value="<?php echo isset( $f_bug_id ) ? $f_bug_id : 0 ?>" />
<?php
$t_filter = array();
$t_filter[FILTER_PROPERTY_FILTER_BY_DATE_SUBMITTED] = 'on';
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_START_DAY] = $t_bugnote_stats_from_d;
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_START_MONTH] = $t_bugnote_stats_from_m;
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_START_YEAR] = $t_bugnote_stats_from_y;
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_END_DAY] = $t_bugnote_stats_to_d;
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_END_MONTH] = $t_bugnote_stats_to_m;
$t_filter[FILTER_PROPERTY_DATE_SUBMITTED_END_YEAR] = $t_bugnote_stats_to_y;
filter_init( $t_filter );
print_filter_do_filter_by_date( true );
?>
<?php
if( $t_cost_col ) {
?>
<div class="space-6"></div>
<?php echo lang_get( 'time_tracking_cost_per_hour_label' ) ?>
<input type="text" name="bugnote_cost" class="input-sm" value="<?php echo $f_bugnote_cost ?>" />
<?php
}
?>
<?php
if( $f_project_id != ALL_PROJECTS ) {
?>
<div class="space-6"></div>
<label>
<input type="checkbox" name="include_subprojects" class="ace"
<?php check_checked( $f_include_subprojects, true ); ?> />
<span class="lbl padding-6"><?php echo lang_get( 'subprojects' ) ?></span>
</label>
<?php
}
?>
</div>
<div class="widget-toolbox padding-8 clearfix">
<input name="get_bugnote_stats_button" class="btn btn-primary btn-sm btn-white btn-round"
value="<?php echo lang_get( 'time_tracking_get_info_button' ) ?>" type="submit">
</div>
</form>
</div>
</div>
<?php
if( !is_blank( $f_get_bugnote_stats_button ) ) {
# Retrieve time tracking information
$t_from = $t_bugnote_stats_from_y . '-' . $t_bugnote_stats_from_m . '-' . $t_bugnote_stats_from_d;
$t_to = $t_bugnote_stats_to_y . '-' . $t_bugnote_stats_to_m . '-' . $t_bugnote_stats_to_d;
$t_bugnote_stats = billing_get_summaries( $f_project_id, $t_from, $t_to, $f_bugnote_cost, $f_include_subprojects );
if( is_blank( $f_bugnote_cost ) || ( (double)$f_bugnote_cost == 0 ) ) {
$t_cost_col = false;
}
echo '<br /><div class="noprint">';
$t_exports = array(
'csv_export' => 'billing_export_to_csv.php',
'excel_export' => 'billing_export_to_excel.php',
);
foreach( $t_exports as $t_export_label => $t_export_page ) {
echo '<a class="btn btn-primary btn-sm btn-white btn-round" ';
echo ' <a href="' . $t_export_page . '?';
echo 'from=' . $t_from . '&to=' . $t_to;
echo '&cost=' . $f_bugnote_cost;
echo '&project_id=' . $f_project_id;
echo '&include_subprojects=' . $f_include_subprojects;
echo '">' . lang_get( $t_export_label ) . '</a>';
}
echo '</div><br />';
?>
<div class="space-6"></div>
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<tr>
<td class="small-caption">
<?php echo lang_get( 'username' ) ?>
</td>
<td class="small-caption">
<?php echo lang_get( 'time_tracking' ) ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption pull-right">
<?php echo lang_get( 'time_tracking_cost' ) ?>
</td>
<?php } ?>
</tr>
<?php
foreach ( $t_bugnote_stats['issues'] as $t_issue_id => $t_issue ) {
$t_project_info = ( !isset( $f_bug_id ) && ( $f_project_id == ALL_PROJECTS || $f_include_subprojects ) ) ? '[' . project_get_name( $t_issue['project_id'] ) . ']' . lang_get( 'word_separator' ) : '';
$t_link = sprintf( lang_get( 'label' ), string_get_bug_view_link( $t_issue_id ) ) . lang_get( 'word_separator' ) . $t_project_info . string_display_line( $t_issue['summary'] );
echo '<tr class="row-category-history"><td colspan="4">' . $t_link . '</td></tr>';
uksort(
$t_issue['users'],
function ( $a, $b ) {
return strcasecmp( user_get_name( $a ), user_get_name( $b ) );
}
);
foreach( $t_issue['users'] as $t_user_id => $t_user_info ) {
?>
<tr>
<td class="small-caption">
<?php print_user( $t_user_id ) ?>
</td>
<td class="small-caption">
<?php echo db_minutes_to_hhmm( $t_user_info['minutes'] ) ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption right">
<?php echo string_attribute( number_format( $t_user_info['cost'], 2 ) ); ?>
</td>
<?php } ?>
</tr>
<?php
} # end of users within issues loop
} # end for issues loop ?>
<tr>
<td class="small-caption">
<?php echo lang_get( 'total_time' ); ?>
</td>
<td class="small-caption bold">
<?php echo db_minutes_to_hhmm( $t_bugnote_stats['total']['minutes'] ); ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption bold right">
<?php echo string_attribute( number_format( $t_bugnote_stats['total']['cost'], 2 ) ); ?>
</td>
<?php } ?>
</tr>
</table>
<div class="space-6"></div>
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<tr>
<td class="small-caption">
<?php echo lang_get( 'username' ) ?>
</td>
<td class="small-caption">
<?php echo lang_get( 'time_tracking' ) ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption pull-right">
<?php echo lang_get( 'time_tracking_cost' ) ?>
</td>
<?php } ?>
</tr>
<?php
uksort(
$t_bugnote_stats['users'],
function ( $a, $b ) {
return strcasecmp( user_get_name( $a ), user_get_name( $b ) );
}
);
foreach ( $t_bugnote_stats['users'] as $t_user_id => $t_user_info ) {
?>
<tr>
<td class="small-caption">
<?php print_user( $t_user_id ) ?>
</td>
<td class="small-caption">
<?php echo db_minutes_to_hhmm( $t_user_info['minutes'] ); ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption right">
<?php echo string_attribute( number_format( $t_user_info['cost'], 2 ) ); ?>
</td>
<?php } ?>
</tr>
<?php } ?>
<tr class="row-category2">
<td class="small-caption bold">
<?php echo lang_get( 'total_time' ); ?>
</td>
<td class="small-caption bold">
<?php echo db_minutes_to_hhmm( $t_bugnote_stats['total']['minutes'] ); ?>
</td>
<?php if( $t_cost_col ) { ?>
<td class="small-caption bold right">
<?php echo string_attribute( number_format( $t_bugnote_stats['total']['cost'], 2 ) ); ?>
</td>
<?php } ?>
</tr>
</table>
<?php
} # end if
?>
</div>
<?php