| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/wit-crm/modules/sales_agent/controllers/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
/**
* This class describes a purchase invoice.
*/
class Purchase_invoice extends ClientsController
{
/**
* { index }
*
* @param string $id The identifier
* @param $hash The hash
*/
public function index($id, $hash)
{
check_invoice_restrictions($id, $hash);
$invoice = $this->invoices_model->get($id);
$invoice = hooks()->apply_filters('before_client_view_invoice', $invoice);
// Handle Invoice PDF generator
if ($this->input->post('invoicepdf')) {
try {
$pdf = invoice_pdf($invoice);
} catch (Exception $e) {
echo html_entity_decode($e->getMessage());
die;
}
$invoice_number = format_invoice_number($invoice->id);
$companyname = get_option('invoice_company_name');
if ($companyname != '') {
$invoice_number .= '-' . mb_strtoupper(slug_it($companyname), 'UTF-8');
}
$pdf->Output(mb_strtoupper(slug_it($invoice_number), 'UTF-8') . '.pdf', 'D');
die();
}
// Handle $_POST payment
if ($this->input->post('make_payment')) {
$this->load->model('payments_model');
if (!$this->input->post('paymentmode')) {
set_alert('warning', _l('invoice_html_payment_modes_not_selected'));
redirect(site_url('sales_agent/purchase_invoice/index/' . $id . '/' . $hash));
} elseif ((!$this->input->post('amount') || $this->input->post('amount') == 0) && get_option('allow_payment_amount_to_be_modified') == 1) {
set_alert('warning', _l('invoice_html_amount_blank'));
redirect(site_url('sales_agent/purchase_invoice/index/' . $id . '/' . $hash));
}
$this->payments_model->process_payment($this->input->post(), $id);
}
if ($this->input->post('paymentpdf')) {
$payment = $this->payments_model->get($this->input->post('paymentpdf'));
// Confirm that the payment is related to the invoice.
if ($payment->invoiceid == $id) {
$payment->invoice_data = $this->invoices_model->get($payment->invoiceid);
$paymentpdf = payment_pdf($payment);
$paymentpdf->Output(mb_strtoupper(slug_it(_l('payment') . '-' . $payment->paymentid), 'UTF-8') . '.pdf', 'D');
die;
}
}
$this->app_scripts->theme('sticky-js', 'assets/plugins/sticky/sticky.js');
$this->load->library('app_number_to_word', [
'clientid' => $invoice->clientid,
], 'numberword');
$this->load->model('payment_modes_model');
$this->load->model('payments_model');
$data['payments'] = $this->payments_model->get_invoice_payments($id);
$data['payment_modes'] = $this->payment_modes_model->get();
$data['title'] = format_invoice_number($invoice->id);
$this->disableNavigation();
$this->disableSubMenu();
$data['hash'] = $hash;
$data['invoice'] = hooks()->apply_filters('invoice_html_pdf_data', $invoice);
$data['bodyclass'] = 'viewinvoice';
$this->data($data);
$this->view('portal/invoices/invoicehtml');
add_views_tracking('invoice', $id);
hooks()->do_action('invoice_html_viewed', $id);
no_index_sales_agent_area();
$this->layout();
}
}