?
Current Path : /home1/savoy/www/savoyglobal.net/sgms/application/views/Software/ |
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/www/savoyglobal.net/sgms/application/views/Software/manage_proposal_software.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php $this->load->view('header'); ?> <script type="text/javascript"> $(document).ready(function() { viewdata('software','viewinsoftwaresearch','search_software_proposal','view_software_proposal','1'); }); function get_software_code(status) { if(status.value!= "") { var activity_id = $("#activity_id").val(); $.ajax({ type: "POST", url: "<?= site_url('master/get_software_code/') ?>/"+activity_id, success: function(msg){ $("#proposal_code").val(msg); } }) } else { $("#proposal_code").val(""); } } function calculatetotal(values) { var quantity = "input[name=quantity" + values + "]"; var price = "input[name=price" + values + "]"; var nam_discount = "input[name=discount" + values + "]"; var total = "input[name=total" + values + "]"; var quantity = $(quantity).val(); var price = $(price).val(); var discount = $(nam_discount).val(); $(total).val((quantity*price) - (discount)); } </script> </head> <body> <?php $this->load->view('logopanel'); ?> <div id="main"> <?php $this->load->view('menu'); ?> <div id="middle"> <?php $this->load->view('leftbar'); ?> <div id="center-column"> <?php $this->load->view('topbar'); ?> <div class="table"> <p> </p> <div id="entrydiv"> </div> </div> </div> </div> <?php $this->load->view('footer'); ?> </div> </body> </html>