?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec_old/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/public_html/savoyglobal.net/sec_old/application/views/report/parents_report.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="select-bar"> <label> </label> <span class="heading">Bill Report</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('report/getinreport/get_bill_report/_report_bill/',$attributes); ?> <ul> <input type="hidden" name="report_name" value=" Bill Report" /> <li> <table class="sortnew"> <tr><th colspan='2' style="text-align: center"> Search by Branch</th></tr> <tr> <td> Maksys Branch </td> <td style="width:65%"> <select name="branch_id" id="branch_id"> <option value="">All</option> <?php foreach($branch_list as $list) { echo "<option value='". $list['branch_id'] . "'>" . $list['branch_name'] . "</option>"; } ?> </select> </td> </tr> <tr><th colspan='2' style="text-align: center"> Search by Districts</th></tr> <tr> <td> Districts </td> <td style="width:65%"> <select name="district_id" id="district_id1" onchange=""> <option value="">All</option> <?php foreach($district as $list) { echo "<option title='".$list['district_id']."' value='". $list['district_id'] . "'>" . $list['district_name'] . "</option>"; } ?> </select> </td> </tr> <tr><th colspan='2' style="text-align: center"> Search by Customer</th></tr> <tr> <td> Customer </td> <td style="width:65%"> <select name="customer_id" id="customer_id"> <option value="">All</option> <?php foreach($customer_list as $list) { echo "<option title='".$list['customer_type']."' value='". $list['customer_id'] . "'>" . $list['customer_name'] . "</option>"; } ?> </select> </td> </tr> <tr><th colspan='2' style="text-align: center"> Search by Contract Ref no</th></tr> <tr> <td> Contract Ref no </td> <td style="width:65%"> <select name="contract_id" id="contract_id"> <option value="">All</option> <?php foreach($contract as $list) { echo "<option title='".$list['contract_id']."' value='". $list['contract_id'] . "'>" . $list['contract_ref_no'] . "</option>"; } ?> </select> </td> </tr> <tr> <th colspan="2" style="text-align: center">Letter Received Date</th> </tr> <tr> <td>From Date</td> <td> <?php $data = array( 'name' => 'from_date', 'id' => 'from_date', 'class' => 'calfocus' ); echo form_input($data) . form_error($data); ?> </td> </tr> <tr> <td>To Date</td> <td> <?php $data = array( 'name' => 'to_date', 'id' => 'to_date', 'class' => 'calfocus' ); echo form_input($data) . form_error($data); ?> </td> </tr> </table> <table class="sortnew"> <tr> <th style="text-align: center"><input type="checkbox" id="checkall" name="checkall" class="reportcheck" onchange="check_all()"/></th> <th style="text-align: center">Report Fields</th> </tr> <?php $i = 1; ?> <tr> <td><input type="checkbox" value="customer.customer_name~Customer_Name" name="field_name_<?= $i++; ?>" class="reportcheck" checked/></td> <td>Customer Name</td> </tr> <tr> <td><input type="checkbox" value="district_name~District" name="field_name_<?= $i++; ?>" class="reportcheck" checked/></td> <td>District</td> </tr> <tr> <td><input type="checkbox" value="customer_branch_name~Branch" name="field_name_<?= $i++; ?>" class="reportcheck" checked/></td> <td>Branch</td> </tr> <tr> <td><input type="checkbox" value="contract_ref_no~Contract_Ref_no" name="field_name_<?= $i++; ?>" class="reportcheck" /></td> <td>Contract Ref no</td> </tr> <tr> <td><input type="checkbox" value="payment_date~Payment_Date" name="field_name_<?= $i++; ?>" class="reportcheck" checked/></td> <td>Payment Date</td> </tr> <tr> <td><input type="checkbox" value="payment_amount~Payment_Amount" name="field_name_<?= $i++; ?>" class="reportcheck"/></td> <td>Payment Amount</td> </tr> <tr> <td><input type="checkbox" value="payment_mode~Payment_Mode" name="field_name_<?= $i++; ?>" class="reportcheck"/></td> <td>Payment Mode </td> </tr> <tr> <td><input type="checkbox" value="payment_remarks~Remarks" name="field_name_<?= $i++; ?>" class="reportcheck"/></td> <td>Remarks</td> </tr> <tr> <td><input type="checkbox" value="payment_remarks~Days_Pending" name="field_name_<?= $i++; ?>" class="reportcheck"/></td> <td>Days Pending</td> </tr> </table> </li> <li> <input type="hidden" name="field_count" value="<?= $i; ?>"/> <input type="hidden" name="report_type" value="view"/> </li> <li> <label for="submit"> </label> <button type="submit" id="submit" class="clickimage" >Generate</button> </li> </ul> <?php echo form_close(); ?> </fieldset>