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/layout/../product_alert/ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
<?php /*defined('BASEPATH') OR exit('No direct script access allowed'); $p = array('admin','manager'); if(!(in_array($this->session->userdata('type'),$p))){ redirect('auth/dashboard'); }*/ ?> <h3 style="padding-left: 40%"><center><?php echo $this->lang->line('header_list_product_alert'); ?></center></h3> <table border="1"> <thead> <tr> <th width="10%"><?php echo $this->lang->line('product_code'); ?></th> <th width="15%"><?php echo $this->lang->line('product_name'); ?></th> <th width="15%"><?php echo $this->lang->line('product_category'); ?></th> <th width="10%"><?php echo $this->lang->line('product_cost'); ?></th> <th width="10%"><?php echo $this->lang->line('product_price'); ?></th> <th width="10%"><?php echo $this->lang->line('product_unit'); ?></th> <th width="10%"><?php echo $this->lang->line('product_quantity'); ?></th> <th width="10%"><?php echo $this->lang->line('product_alert_quantity'); ?></th> <!-- <th>Action</th> --> </tr> </thead> <tbody> <?php foreach ($data as $row) { $id= $row->product_id; ?> <tr> <td align="center"><?php echo $row->code; ?></td> <td><?php echo $row->name; ?></td> <td><?php echo $row->cname; ?></td> <td align="right"><?php echo $this->session->userdata('symbol').$row->cost;?></td> <td align="right"><?php echo $this->session->userdata('symbol').$row->price;?></td> <td><?php echo $row->unit; ?></td> <td align="center"><?php echo $row->quantity; ?></td> <td align="center"><?php echo $row->alert_quantity; ?></td> <?php } ?> </tr> </tbody> </table>