mirror of
				https://github.com/fspc/Yellow-Bike-Database.git
				synced 2025-10-31 00:45:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			111 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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 * FROM view_MechanicOperationMetrics_byWeek;";
 | |
| $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);
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <?php include("../include_header_stats.html"); ?>
 | |
| 
 | |
|         <table>
 | |
|         <tr valign="top">
 | |
|           <td><span class="yb_heading3red">Mechanic Operation Metrics by Week</span></td>
 | |
| 	  </tr>
 | |
| 	  <tr valign="top">
 | |
|           <td>View Hours by: Week, <a href="stats_MechanicOperationMetrics_byMonth.php">Month</a>
 | |
| 	  </tr>
 | |
|         <tr>
 | |
|           <td>
 | |
|             <table   border="1" cellpadding="1" cellspacing="0">
 | |
|               <tr bgcolor="#E6E6E6" class="yb_standardCENTERbold">
 | |
|                 <td height="25" colspan="2">Time Period</td>
 | |
| 			    <td height="25" colspan="2">Payroll</td>
 | |
| 			    <td height="25" colspan="6">Operation Net Income Calc</td>
 | |
| 			    <td height="25" colspan="3">Bike Production</td>
 | |
| 			    <td height="25" colspan="2">Bike Sales</td>
 | |
| 			  </tr>
 | |
|               <tr valign="top" bgcolor="#99CC33" class="yb_standardCENTER">
 | |
|                 <td width="60" height="35">Year</td>
 | |
| 			    <td width="60">Week</td>
 | |
| 			    <td width="60">Hours</td>
 | |
| 			    <td width="100">Pay</td>
 | |
| 			    <td width="100">Net Sales New Parts</td>
 | |
| 			    <td width="100">Sales Used Parts</td>
 | |
| 			    <td width="100">Value Of Bikes Completed</td>
 | |
| 			    <td width="100">Value Of Wheels Completed</td>
 | |
| 			    <td width="100">Value Of New Parts on Bikes</td>
 | |
| 			    <td width="100" class=yb_standardBold>Est Net Income</td>
 | |
| 			    <td width="100"># Bikes Fixed</td>
 | |
| 			    <td width="100">Avg Hours Per Bike Fixed</td>
 | |
| 			    <td width="100">Avg Bike Price</td>
 | |
| 			    <td width="100">Value of Bikes Sold</td>
 | |
| 			    <td width="100"># Bikes Sold</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> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </td>
 | |
| 			      <td> </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 class="yb_standardRIGHT">
 | |
|                 <td><?php echo $row_Recordset1['Year']; ?></td>
 | |
| 			    <td> <?php echo $row_Recordset1['Week']; ?></td>
 | |
| 			    <td> <?php echo $row_Recordset1['Hours']; ?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['Pay'],0);?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['NetSalesNewParts'],0);?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['SalesUsedParts'],0);?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['ValueBikesFixed'],0);?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['ValueWheelsFixed'],0);?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['ValueNewPartsOnBikes'],0);?></td>			    
 | |
| 			    <td class=yb_standardBold> <?php currency_format($row_Recordset1['EstimatedNetIncome'],0);?></td>
 | |
| 			    <td> <?php echo $row_Recordset1['TotalBikesFixed']; ?></td>
 | |
| 			    <td> <?php echo number_format($row_Recordset1['HoursPerBike'],1); ?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['AverageBikeValue'],0); ?></td>
 | |
| 			    <td> <?php currency_format($row_Recordset1['SalesBikes'],0);?></td>
 | |
| 			    <td> <?php echo $row_Recordset1['TotalBikesSold']; ?></td>
 | |
| 		      </tr>
 | |
|               <?php
 | |
| 		  } // end if EDIT RECORD 
 | |
| 		  } // end WHILE count of recordset ?>
 | |
|           </table>	  </td>
 | |
| 	  </tr>
 | |
|         </table>
 | |
| 		
 | |
| 		<?php include("../include_footer.html"); ?>
 | |
| <?php
 | |
| mysql_free_result($Recordset1);
 | |
| ?>
 |