���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/views/quotation/ |
<?php defined('BASEPATH') OR exit('No direct script access allowed');?> <!-- Manage quotation Start --> <div class="content-wrapper"> <section class="content-header"> <div class="header-icon"> <i class="pe-7s-note2"></i> </div> <div class="header-title"> <h1><?php echo display('manage_quotation') ?></h1> <small><?php echo display('manage_your_quotation') ?></small> <ol class="breadcrumb"> <li><a href="#"><i class="pe-7s-home"></i> <?php echo display('home') ?></a></li> <li><a href="#"><?php echo display('quotation') ?></a></li> <li class="active"><?php echo display('manage_quotation') ?></li> </ol> </div> </section> <section class="content"> <!-- Alert Message --> <?php $message = $this->session->userdata('message'); if (isset($message)) { ?> <div class="alert alert-info alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $message ?> </div> <?php $this->session->unset_userdata('message'); } $error_message = $this->session->userdata('error_message'); if (isset($error_message)) { ?> <div class="alert alert-danger alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $error_message ?> </div> <?php $this->session->unset_userdata('error_message'); } ?> <div class="row"> <div class="col-sm-12"> <div class="column"> <a href="<?php echo base_url('Cquotation/new_quotation')?>" class="btn -btn-info color4 color5 m-b-5 m-r-2"><i class="ti-plus"> </i> <?php echo display('new_quotation')?></a> <a href="<?php echo base_url('Cinvoice/pos_invoice')?>" class="btn btn-primary m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('pos_invoice')?></a> </div> </div> </div> <!-- Manage quotation report --> <div class="row"> <div class="col-sm-12"> <div class="panel panel-bd lobidrag"> <div class="panel-heading"> <div class="panel-title"> <h4><?php echo display('manage_quotation') ?></h4> </div> </div> <div class="panel-body"> <div class="table-responsive"> <table id="dataTableExample2" class="table table-bordered table-striped table-hover"> <thead> <tr> <th><?php echo display('sl') ?></th> <th><?php echo display('quotation_no') ?></th> <th><?php echo display('customer_name') ?></th> <th><?php echo display('date') ?></th> <th><?php echo display('total_amount') ?></th> <th><?php echo display('action') ?></th> </tr> </thead> <tbody> <?php if ($quotations_list) { foreach ($quotations_list as $quotation) { ?> <tr> <td><?php echo $quotation['sl']?></td> <td> <a href="<?php echo base_url().'Cquotation/quotation_details_data/'.html_escape($quotation['quotation_id']) ?>"><?php echo html_escape($quotation['quotation'])?> </a> </td> <td> <a href="<?php echo base_url().'Ccustomer/customerledger/'.$quotation['customer_id']; ?>"><?php echo html_escape($quotation['customer_name'])?></a> </td> <td><?php echo html_escape($quotation['final_date'])?></td> <td class="text-right"><?php echo (($position==0)?$currency.' '.$quotation['total_amount']:$quotation['total_amount'].' '.$currency) ?></td> <td> <center> <?php echo form_open()?> <?php if ($quotation['status'] == 1) { ?> <a href="<?php echo base_url().'Cquotation/quot_paid_data/'.$quotation['quotation_id']; ?>" class="btn btn-warning btn-sm" data-toggle="tooltip" data-placement="left" title="<?php echo display('invoice') ?>"><i class="fa fa-arrow-right" aria-hidden="true"></i></a> <?php }else{ ?> <button type="button" class="btn btn-success btn-sm" data-toggle="tooltip" data-placement="left" title="<?php echo display('invoiced') ?>"><i class="fa fa-check" aria-hidden="true"></i></button> <?php } ?> <a href="<?php echo $quotation['file_path']?>" class="btn btn-primary btn-sm" data-toggle="tooltip" data-placement="left" title="<?php echo display('download') ?>" download><i class="fa fa-download" aria-hidden="true"></i></a> <a href="<?php echo base_url().'Cquotation/quotation_update_form/'.$quotation['quotation_id']; ?>" class="btn -btn-info color4 btn-sm" data-toggle="tooltip" data-placement="left" title="<?php echo display('update') ?>"><i class="fa fa-pencil" aria-hidden="true"></i></a> <a href="<?php echo base_url('Cquotation/quotation_delete/'.$quotation['quotation_id'])?>" class="btn btn-danger btn-sm" onclick="return confirm('<?php echo display('are_you_sure_want_to_delete')?>');" data-toggle="tooltip" data-placement="right" title="" data-original-title="<?php echo display('delete') ?> "><i class="fa fa-trash-o" aria-hidden="true"></i></a> <?php echo form_close()?> </center> </td> </tr> <?php } } ?> </tbody> </table> </div> </div> </div> </div> </div> </section> </div> <!-- Manage quotation End -->