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/controller/../crm/application/views/purchase/ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
<?php defined('BASEPATH') OR exit('No direct script access allowed'); $p = array('admin','purchaser','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('<?php echo $this->lang->line('product_delete_conform'); ?>')) { window.location.href='<?php echo base_url('purchase/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('header_purchase'); ?></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('purchase_list_purchase'); ?></h3> <a class="btn btn-sm btn-info pull-right" style="margin: 10px" href="<?php echo base_url('purchase/add');?>" title="Add New Purchase"><?php echo $this->lang->line('purchase_add_new_purchase'); ?></a> </div> <!-- /.box-header --> <div class="box-body outer-scroll"> <div class="inner-scroll"> <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('purchase_reference_no'); ?></th> <th><?php echo $this->lang->line('purchase_supplier'); ?></th> <th><?php echo $this->lang->line('purchase_purchase_status'); ?></th> <th><?php echo $this->lang->line('purchase_grand_total'); ?></th> <th><?php echo $this->lang->line('product_action'); ?></th> </tr> </thead> <tbody> <?php foreach ($data as $row) { $id= $row->purchase_id; ?> <tr> <td></td> <td><?php echo $row->date; ?></td> <td><?php echo $row->reference_no; ?></td> <td><?php echo $row->supplier_name; ?></td> <td align="center"><span class="label label-success"><?php echo $this->lang->line('purchase_received'); ?></span></td> <td align="right"><?php echo $this->session->userdata('symbol').$row->total; ?></td> <td align="center"> <div class="dropdown"> <button type="button" class="btn btn-default gropdown-toggle" data-toggle="dropdown"> <?php echo $this->lang->line('product_action'); ?> <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-right"> <li> <a href="<?php echo base_url('purchase/view/');?><?php echo $id; ?>"><i class="fa fa-file-text-o"></i><?php echo $this->lang->line('purchase_purchase_details'); ?></a> </li> <li> <a href="<?php echo base_url('purchase/edit/'); ?><?php echo $id; ?>"><i class="fa fa-edit"></i><?php echo $this->lang->line('purchase_edit_purchase'); ?></a> </li> <li> <a href="<?php echo base_url('purchase/pdf/');?><?php echo $id; ?>" target="_blank "><i class="fa fa-file-pdf-o"></i><?php echo $this->lang->line('purchase_download_as_pdf'); ?></a> </li> <li> <a href="<?php echo base_url('purchase/email/');?><?php echo $id; ?>"><i class="fa fa-envelope"></i><?php echo $this->lang->line('purchase_email_purchase'); ?></a> </li> <li> <a href="javascript:delete_id(<?php echo $id;?>)"><i class="fa fa-trash-o"></i><?php echo $this->lang->line('purchase_delete_purchase'); ?></a> </li> </ul> </div> </td> </tr> <?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('purchase_reference_no'); ?></th> <th><?php echo $this->lang->line('purchase_supplier'); ?></th> <th><?php echo $this->lang->line('purchase_purchase_status'); ?></th> <th><?php echo $this->lang->line('purchase_grand_total'); ?></th> <th><?php echo $this->lang->line('product_action'); ?></th> </tr> </tfoot> </table> </div> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!--/.col (right) --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php $this->load->view('layout/footer'); ?>