Server IP : 192.185.129.71 / Your IP : 18.118.171.161 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/estimates/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php init_head(); ?> <div id="wrapper"> <div class="content"> <div class="row"> <?php echo form_open($this->uri->uri_string(), ['id' => 'estimate-form', 'class' => '_transaction_form estimate-form']); if (isset($estimate)) { echo form_hidden('isedit'); } ?> <div class="col-md-12"> <h4 class="tw-mt-0 tw-font-semibold tw-text-lg tw-text-neutral-700 tw-flex tw-items-center tw-space-x-2"> <span> <?php echo isset($estimate) ? format_estimate_number($estimate) : _l('create_new_estimate'); ?> </span> <?php echo isset($estimate) ? format_estimate_status($estimate->status) : ''; ?> </h4> <?php $this->load->view('admin/estimates/estimate_template'); ?> </div> <?php echo form_close(); ?> <?php $this->load->view('admin/invoice_items/item'); ?> </div> </div> </div> </div> <?php init_tail(); ?> <script> $(function() { validate_estimate_form(); // Init accountacy currency symbol init_currency(); // Project ajax search init_ajax_project_search_by_customer_id(); // Maybe items ajax search init_ajax_search('items', '#item_select.ajax-search', undefined, admin_url + 'items/search'); }); </script> </body> </html>