Server IP : 164.52.202.56 / Your IP : 216.73.216.204 Web Server : Apache System : Linux e2e-70-56.ssdcloudindia.net 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : rubyaromatics ( 1052) PHP Version : 7.2.34 Directory (0755) : /home/rubyaromatics/public_html/crm/application/views/warehouse/../quotation/ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
<?php defined('BASEPATH') OR exit('No direct script access allowed'); $p = array('admin','sales_person','manager'); if(!(in_array($this->session->userdata('type'),$p))){ redirect('auth'); } $this->load->view('layout/header'); ?> <script type="text/javascript"> function delete_id(id) { if(confirm('Sure To Remove This Record ?')) { window.location.href='<?php echo base_url('sales/delete/'); ?>'+id; } } </script> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h5> <ol class="breadcrumb"> <li><a href="<?php echo base_url('auth/dashboard'); ?>"><i class="fa fa-dashboard"></i> <?php echo $this->lang->line('header_dashboard'); ?></a></li> <li class="active"><?php echo $this->lang->line('sales_invoice'); ?></li> </ol> </h5> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if($message = $this->session->flashdata('message')){ ?> <div class="col-sm-12"> <div class="alert alert-success"> <button class="close" data-dismiss="alert" type="button">×</button> <?php echo $message; ?> <div class="alerts-con"></div> </div> </div> <?php } ?> <!-- right column --> <div class="col-md-12"> <div class="box"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('sales_list_invoice'); ?></h3> </div> <!-- /.box-header --> <div class="box-body"> <table id="index" class="table table-bordered table-striped"> <thead> <tr> <th><?php echo $this->lang->line('product_no'); ?></th> <th><?php echo $this->lang->line('purchase_date'); ?></th> <th><?php echo $this->lang->line('sales_invoice_no'); ?></th> <th><?php echo $this->lang->line('sales_sales_amount'); ?></th> <th><?php echo $this->lang->line('sales_paid_amount'); ?></th> <th><?php echo $this->lang->line('product_action'); ?></th> </tr> </thead> <tbody> <?php foreach ($data as $row) { $id= $row->sales_id; ?> <tr> <td></td> <td><?php echo $row->invoice_date; ?></td> <td align="center"><?php echo $row->invoice_no; ?></td> <td align="right"><?php echo $this->session->userdata('symbol').$row->sales_amount ?></td> <td align="right"> <?php if($row->paid_amount!=null){ echo $this->session->userdata('symbol').$row->paid_amount; } ?> </td> <td> <a href="<?php echo base_url('sales/view/');?><?php echo $id; ?>" title="view"><i class="fa fa-file-text-o"></i></a> </td> <?php } ?> <tfoot> <tr> <th><?php echo $this->lang->line('product_no'); ?></th> <th><?php echo $this->lang->line('purchase_date'); ?></th> <th><?php echo $this->lang->line('sales_invoice_no'); ?></th> <th><?php echo $this->lang->line('sales_sales_amount'); ?></th> <th><?php echo $this->lang->line('sales_paid_amount'); ?></th> <th><?php echo $this->lang->line('product_action'); ?></th> </tr> </tfoot> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!--/.col (right) --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php $this->load->view('layout/footer'); ?>