Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/controller/extension/d_shopunity/
Upload File :
Current File : /var/www/alh/admin/controller/extension/d_shopunity/invoice.php

<?php
/*
 *	location: admin/controller
 */

class ControllerExtensionDShopunityInvoice extends Controller {

	private $codename = 'd_shopunity';
	private $route = 'extension/d_shopunity/invoice';
	private $extension = array();

	public function __construct($registry) {
		parent::__construct($registry);
		$this->load->model('extension/d_shopunity/mbooth');
		$this->load->model('extension/d_shopunity/account');
        $this->load->model('extension/d_shopunity/setting');
        $this->url_token = $this->model_extension_d_shopunity_setting->getUrlToken();

		$this->extension = $this->model_extension_d_shopunity_mbooth->getExtension($this->codename);
	}

	public function index(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

   		$this->load->language('extension/d_shopunity/billing');
   		$this->load->model('extension/d_shopunity/billing');

		$data['tab_order'] =  $this->language->get('tab_order');
		$data['tab_invoice'] =  $this->language->get('tab_invoice');
		$data['tab_transaction'] =  $this->language->get('tab_transaction');

		$data['text_invoice_status_0'] =  $this->language->get('text_invoice_status_0');
		$data['text_invoice_status_1'] =  $this->language->get('text_invoice_status_1');
		$data['text_invoice_status_2'] =  $this->language->get('text_invoice_status_2');
		$data['text_invoice_status_3'] =  $this->language->get('text_invoice_status_3');
		$data['text_invoice_status_4'] =  $this->language->get('text_invoice_status_4');
		
		$data['href_order'] =  $this->url->link('extension/d_shopunity/order', $this->url_token, 'SSL');
		$data['href_invoice'] = $this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL');
		$data['href_transaction'] = $this->url->link('extension/d_shopunity/transaction', $this->url_token, 'SSL');

		$filter_data = array();
		$data['page'] = 1;
		if(isset($this->request->get['page'])){
			$filter_data['page'] = $this->request->get['page'];
			$data['page'] = $this->request->get['page'];
		}

		$data['profile'] = $this->load->controller('extension/d_shopunity/account/profile');
		$data['invoices'] = $this->model_extension_d_shopunity_billing->getInvoices($filter_data);
	
		$data['prev'] = $this->url->link('extension/d_shopunity/invoice', $this->url_token.'&page='.($data['page']-1), 'SSL');
		$data['next'] = $this->url->link('extension/d_shopunity/invoice', $this->url_token.'&page='.($data['page']+1), 'SSL');

   		$data['content_top'] = $this->load->controller('extension/d_shopunity/content_top');
   		$data['content_bottom'] = $this->load->controller('extension/d_shopunity/content_bottom');

   		$this->response->setOutput($this->load->view($this->route, $data));
	}

	public function item(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

		if(!isset($this->request->get['invoice_id'])){

			$this->session->data['error'] = 'Order_id missing!';
			$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

		}

		$invoice_id = $this->request->get['invoice_id'];

		$this->load->language('extension/d_shopunity/billing');
   		$this->load->model('extension/d_shopunity/billing');

   		$data['tab_order'] =  $this->language->get('tab_order');
		$data['tab_invoice'] =  $this->language->get('tab_invoice');
		$data['tab_transaction'] =  $this->language->get('tab_transaction');
		
		$data['href_order'] =  $this->url->link('extension/d_shopunity/order', $this->url_token, 'SSL');
		$data['href_invoice'] = $this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL');
		$data['href_transaction'] = $this->url->link('extension/d_shopunity/transaction', $this->url_token, 'SSL');

		$data['invoice'] = $this->model_extension_d_shopunity_billing->getInvoice($invoice_id);
		$data['profile'] = $this->load->controller('extension/d_shopunity/account/profile');

   		$data['content_top'] = $this->load->controller('extension/d_shopunity/content_top');
   		$data['content_bottom'] = $this->load->controller('extension/d_shopunity/content_bottom');

   		$this->response->setOutput($this->load->view($this->route.'_item', $data));
	}

	public function create(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

		$this->load->model('extension/d_shopunity/billing');
   		$result = $this->model_extension_d_shopunity_billing->addInvoice();

		if(!empty($result['error'])){
			$this->session->data['error'] = $result['error'];
		}elseif(!empty($result['success'])){
			$this->session->data['success'] = $result['success'];
		}

		$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));
	}

    public function popup_pay_invoice(){
        try{
            if(!$this->model_extension_d_shopunity_account->isLogged()){
                throw new Exception('Error! you are not logged in');
            }

            if(!isset($this->request->get['invoice_id'])){
                throw new Exception('Error! invoice_id missing');
            }

            $this->load->model('extension/d_shopunity/billing');
            $invoice_id = $this->request->get['invoice_id'];
            $data = array();
            $data['invoice'] = $this->model_extension_d_shopunity_billing->getInvoice($invoice_id);

            $data['account'] = $this->model_extension_d_shopunity_account->getAccount();

            $data['add_money'] = 'https://shopunity.net/index.php?route=billing/transaction';
            $data['claim_external_order'] =  str_replace('&amp;', '&', $this->url->link('extension/d_shopunity/extension/claim_external_order', $this->url_token . '&invoice_id='.$invoice_id, 'SSL')); 

            $json['content'] = $this->load->view($this->route.'_popup_pay', $data);
        }catch(Exception $e){
            $json['error'] = $e->getMessage();
        }

        $this->response->setOutput(json_encode($json));
    }
	public function pay(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

		if(!isset($this->request->get['invoice_id'])){

			$this->session->data['error'] = 'order_id missing!';
			$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));
		}

		$invoice_id = $this->request->get['invoice_id'];

   		$this->load->model('extension/d_shopunity/billing');

        if(isset($this->request->get['voucher_id'])){
            $invoice = $this->model_extension_d_shopunity_billing->applyVoucher($this->request->get['voucher_id'], $invoice_id);
        }
        
        $invoice = $this->model_extension_d_shopunity_billing->payInvoice($invoice_id);

   		if(!empty($invoice['error'])){
			$this->session->data['error'] = $invoice['error'];
		}elseif(!empty($invoice['success'])){
			$this->session->data['success'] = $invoice['success'];
		}

		$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

	}

	public function refund(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

		if(!isset($this->request->get['invoice_id'])){

			$this->session->data['error'] = 'order_id missing!';
			$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

		}

		$invoice_id = $this->request->get['invoice_id'];

   		$this->load->model('extension/d_shopunity/billing');

   		$invoice = $this->model_extension_d_shopunity_billing->refundInvoice($invoice_id);

   		if(!empty($invoice['error'])){
			$this->session->data['error'] = $invoice['error'];
		}elseif(!empty($invoice['success'])){
			$this->session->data['success'] = $invoice['success'];
		}

		$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

	}

	public function cancel(){

		if(!$this->model_extension_d_shopunity_account->isLogged()){
			$this->response->redirect($this->url->link('extension/d_shopunity/account/login', $this->url_token, 'SSL'));
		}

		if(!isset($this->request->get['invoice_id'])){

			$this->session->data['error'] = 'order_id missing!';
			$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

		}

		$invoice_id = $this->request->get['invoice_id'];

   		$this->load->model('extension/d_shopunity/billing');

   		$invoice = $this->model_extension_d_shopunity_billing->cancelInvoice($invoice_id);

   		if(!empty($invoice['error'])){
			$this->session->data['error'] = $invoice['error'];
		}elseif(!empty($invoice['success'])){
			$this->session->data['success'] = $invoice['success'];
		}

		$this->response->redirect($this->url->link('extension/d_shopunity/invoice', $this->url_token, 'SSL'));

	}


	
}