2014-12-19 18:16:54 +00:00
< ? php
require_once ( '../Connections/YBDB.php' );
require_once ( '../Connections/database_functions.php' );
$page_individual_history_log = INDIVIDUAL_HISTORY_LOG ;
switch ( $_GET [ 'error' ]) {
case 'no_shop' :
$error_message = 'ERROR: A Shop at this location for today does not exist: Start New Shop' ;
break ;
case 'new_error_message' : //this is a sample error message. insert error case here
$error_message = '' ;
break ;
default :
$error_message = 'Total Hours' ;
break ;
}
mysql_select_db ( $database_YBDB , $YBDB );
$query_Recordset1 = " SELECT year(t.date) as Year, quarter(t.date) as Quarter, month(t.date) as Month,t.transaction_type as TransactionType, ROUND(sum(t.amount),2) as Total, count(t.transaction_id) as CountOfTrans, transaction_types.accounting_group as AccountingGroup
FROM transaction_log t
LEFT JOIN transaction_types ON t . transaction_type = transaction_types . transaction_type_id
LEFT JOIN shops ON t . shop_id = shops . shop_id
WHERE shop_type is null OR shop_type <> 'Mechanic Operation Shop'
GROUP BY transaction_types . accounting_group , t . transaction_type , year ( t . date ), quarter ( t . date ), month ( t . date )
ORDER BY year ( t . date ) DESC , quarter ( t . date ) DESC , month ( t . date ) DESC , transaction_types . accounting_group , t . transaction_id ; " ;
$Recordset1 = mysql_query ( $query_Recordset1 , $YBDB ) or die ( mysql_error ());
//$row_Recordset1 = mysql_fetch_assoc($Recordset1); //Wait to fetch until do loop
$totalRows_Recordset1 = mysql_num_rows ( $Recordset1 );
?>
2014-12-20 02:42:24 +00:00
< ? php include ( " ../include_header.html " ); ?>
2014-12-19 18:16:54 +00:00
< table >
< tr valign = " top " >
< td >< span class = " yb_heading3red " > Monthly Transaction Totals </ span ></ td >
</ tr >
< tr >
< td >
< table border = " 1 " cellpadding = " 1 " cellspacing = " 0 " >
< tr valign = " top " bgcolor = " #99CC33 " class = " yb_standardCENTER " >
< td width = " 60 " height = " 35 " > Year </ td >
< td width = " 60 " > Month </ td >
< td width = " 400 " > Transaction Type </ td >
< td width = " 100 " > Total </ td >
< td width = " 50 " > Count </ td >
< td width = " 200 " > Accounting Group </ td >
</ tr >
< form method = " post " name = " FormUpdate_<?php echo $row_Recordset1['shop_id'] ; ?> " action = " <?php echo $editFormAction ; ?> " >
< ? php while ( $row_Recordset1 = mysql_fetch_assoc ( $Recordset1 )) { //do {
if ( 1 == 2 ) { ?>
< tr valign = " bottom " bgcolor = " #CCCC33 " >
< td >& nbsp ; </ td >
< td >& nbsp ; </ td >
< td >& nbsp ; </ td >
< td >& nbsp ; </ td >
< td >& nbsp ; </ td >
< td >& nbsp ; </ td >
</ tr >
< input type = " hidden " name = " MM_insert " value = " FormEdit " >
< input type = " hidden " name = " shop_id " value = " <?php echo $row_Recordset1['shop_id'] ; ?> " >
</ form >
< ? php } else { // end if EDIT RECORD ?>
< tr >
< td >< ? php echo $row_Recordset1 [ 'Year' ]; ?> </td>
< td >& nbsp ; < ? php echo $row_Recordset1 [ 'Month' ]; ?> </td>
< td >& nbsp ; < ? php echo $row_Recordset1 [ 'TransactionType' ]; ?> </td>
< td class = " yb_standardRIGHT " >< ? php echo currency_format ( $row_Recordset1 [ 'Total' ], 2 ); ?> </td>
< td class = " yb_standardRIGHT " >< ? php echo $row_Recordset1 [ 'CountOfTrans' ]; ?> </td>
< td >& nbsp ; < ? php echo $row_Recordset1 [ 'AccountingGroup' ]; ?> </td>
</ tr >
< ? php
} // end if EDIT RECORD
} // end WHILE count of recordset ?>
</ table > </ td >
</ tr >
</ table >
2014-12-20 02:42:24 +00:00
< ? php include ( " ../include_footer.html " ); ?>
2014-12-19 18:16:54 +00:00
< ? php
mysql_free_result ( $Recordset1 );
?>