Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/banking.ncriptech.com/application/models/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class Invoice_model extends CI_Model{ //--------------------------------------------------- // Get Customer detial by ID public function customer_detail($id){ $query = $this->db->get_where('ci_users', array('user_id' => $id)); return $result = $query->row_array(); } //--------------------------------------------------- // Insert New Invoice public function add_invoice($data){ return $this->db->insert('ci_payments', $data); } //--------------------------------------------------- // Insert New Invoice public function add_company($data){ $this->db->insert('ci_companies', $data); return $this->db->insert_id(); } //--------------------------------------------------- // Get Add Invoices public function get_all_invoices(){ $this->db->select(' ci_payments.id, ci_payments.invoice_no, ci_users.username as client_name, ci_payments.payment_status, ci_payments.grand_total, ci_payments.currency, ci_payments.due_date, ' ); $this->db->from('ci_payments'); $this->db->join('ci_users', 'ci_users.user_id = ci_payments.user_id ', 'Left'); $query = $this->db->get(); return $query->result_array(); } //--------------------------------------------------- // Get Customers List for Invoice public function get_customer_list(){ $this->db->select('user_id, UPPER(CONCAT(firstname, ' . ' ,lastname)) as username'); $this->db->from('ci_users'); return $this->db->get()->result_array(); } //--------------------------------------------------- // Get Invoice Detil by ID public function get_invoice_by_id($id){ $this->db->select(' ci_payments.id, ci_payments.user_id as client_id, ci_payments.invoice_no, ci_payments.items_detail, ci_payments.payment_status, ci_payments.sub_total, ci_payments.total_tax, ci_payments.discount, ci_payments.grand_total, ci_payments.currency, ci_payments.client_note, ci_payments.termsncondition, ci_payments.due_date, ci_payments.created_date, ci_users.username as client_name, ci_users.firstname, ci_users.lastname, ci_users.email as client_email, ci_users.mobile_no as client_mobile_no, ci_users.address as client_address, ci_companies.id as company_id, ci_companies.name as company_name, ci_companies.email as company_email, ci_companies.address1 as company_address1, ci_companies.address2 as company_address2, ci_companies.mobile_no as company_mobile_no, ' ); $this->db->from('ci_payments'); $this->db->join('ci_users', 'ci_users.user_id = ci_payments.user_id ', 'Left'); $this->db->join('ci_companies', 'ci_companies.id = ci_payments.company_id ', 'Left'); $this->db->where('ci_payments.id' , $id); $query = $this->db->get(); return $query->row_array(); } //--------------------------------------------------- // Get Invoice Detil by ID public function update_invoice($data, $id){ $this->db->where('id', $id); return $this->db->update('ci_payments', $data); } //--------------------------------------------------- // Update Customer Detail in invoice public function update_company($data, $id){ $this->db->where('id', $id); $this->db->update('ci_companies', $data); return $id; // return the updated id } } ?>