?
Current Path : /home1/savoy/www/oscarerp.com/application/views/report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/oscarerp.com/application/views/report/xls_purchase_report.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $html = '<html><head><body>'; $html.='<table width="100%"> <tr><td colspan="2"></td><td align="right"><img src="' . base_url() . 'assets/images/'.$logo.'" style="float:right"/></td> <tr><td colspan="3" style="font-size:16px;" align="center"><b><u>Purchase Report</u></b></td></tr> <tr><td colspan="3">Printout Date : ' . date('d-m-Y') . ', ' . date('h:i:s a') . '</td></tr> </table><br><br>'; $html.='<hr>'; $html.='<table cellspacing="-1" style="width:100%;text-align:left"> <tr>'; if (array_key_exists('field_name_1', $postdata)) $html.='<td bgcolor="#7FCEFF" style="text-align:left;">Franchisee Name</td>'; if (array_key_exists('field_name_2', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Purchase Date</td>'; if (array_key_exists('field_name_3', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">remarks</td>'; if (array_key_exists('field_name_4', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Inventory Type</td>'; if (array_key_exists('field_name_5', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Quantity</td>'; if (array_key_exists('field_name_6', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Amount</td>'; if (array_key_exists('field_name_7', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Discount</td>'; if (array_key_exists('field_name_8', $postdata)) $html.='<td style="text-align:left" bgcolor="#7FCEFF">Total</td>'; $html.='</tr> </thead><tbody>'; foreach ($report as $rep) { $html.='<tr style="color:#555555">'; $i = 1; $count=$this->mastermodel->get_num_rows('purchase_inventory', 'purchase_id',$rep['purchase_id']); $purchase_details = $this->mastermodel->get_data('purchase_inventory', $rep['purchase_id'], 'purchase_id'); if (sizeof($purchase_details) > 0) { $k=""; foreach ($purchase_details as $key => $row) { $html.='<tr>'; $total=($row['inventory_qty'] * $row['inventory_amount'])-$row['inventory_discount']; // $amount = $amount + $total; if($k!=$row['purchase_id']) { if (array_key_exists('field_name_2', $postdata)) $html.='<td rowspan='.$count.'>' . $this->mastermodel->convertdatenormalformat($rep['purchase_date']) . '</td>'; if (array_key_exists('field_name_1', $postdata)) $html.='<td rowspan='.$count.'>' . $rep['franchisee_name'] . '</td>'; if (array_key_exists('field_name_3', $postdata)) $html.='<td rowspan='.$count.'>' . $rep['purchase_remarks'] . '</td>'; } if (array_key_exists('field_name_4', $postdata)) $html.='<td>' . $this->mastermodel->get_single_field_value('inventory','inventory_type','inventory_id',$row['inventory_type_id']) . '</td>'; if (array_key_exists('field_name_5', $postdata)) $html.='<td>' . $row['inventory_qty'] . '</td>'; if (array_key_exists('field_name_6', $postdata)) $html.='<td>' . $row['inventory_amount'] . '</td>'; if (array_key_exists('field_name_7', $postdata)) $html.='<td>' . $row['inventory_discount'] . '</td>'; if (array_key_exists('field_name_8', $postdata)) $html.='<td>' .$total . '</td>'; $html.='</tr>'; $i++; $k=$row['purchase_id']; } } } $html.='</table> <hr>'; $html.='</body></html>'; $filename = "Purchase Report"; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=".$filename.".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $html; exit; ?>