$invoice = new invoice(); $product = new product(); $smarty->assign('action', 'order'); $smarty->assign('toolbar', $smarty->fetch('toolbar.tpl')); if (isset($_GET['action']) && $_GET['action'] == 'invoice') { $id = $_GET['id']; $orderdet = $order->getOrder($id); $orderitems = $order->getOrderItems($orderdet['id']); foreach ($orderitems as $key => $val) { $orderitems[$key]['price'] = $product->getProductPrice($val['sku']); } $customer = $order->getCustomer($orderdet['customer_id']); $smarty->assign('order', $orderdet); $smarty->assign('items', $orderitems); $smarty->assign('customer', $customer); $smarty->assign('billing', $order->getCustomerBilling($customer['id'])); $smarty->assign('shipping', $order->getCustomerShipping($customer['id'])); $smarty->assign('content', $smarty->fetch('invoicechalan.tpl')); } elseif (isset($_POST['action']) && $_POST['action'] == 'invoicechalan') { $id = $_POST['id']; $invoicedata['order'] = $order->getOrder($id); $invoicedata['order']['subtotal'] = $_POST['data']['order']['subtotal']; $invoicedata['order']['shipping'] = $_POST['data']['order']['shipping']; $invoicedata['order']['discount'] = $_POST['data']['order']['disc']; $invoicedata['order']['tax'] = $_POST['data']['order']['tax']; $invoicedata['order']['grandtotal'] = $_POST['data']['order']['grandtotal']; $invoicedata['order']['status'] = 'invoiced'; $invoicedata['items'] = $_POST['data']['item']; $invoiceid = $invoice->invoiceChalan($invoicedata); $smarty->assign('orderid', $invoiceid); $smarty->assign('content', $smarty->fetch('successinvoicechalan.tpl'));
// Includng configuration file include 'config/config.php'; //Check user is already login or not checkAuthentication(); $id = $_SESSION['adminid']; $order = new order(); $data = array(); if (isset($_POST['data']['Customer']['action']) && $_POST['data']['Customer']['action'] == 'savecustomer') { if (empty($_POST['data']['Customer']['id']) && (empty($_POST['data']['Customer']['name']) && empty($_POST['data']['Customer']['office_email']) && empty($_POST['data']['Customer']['office_phone']))) { $data['status'] = 'error'; $data['content'] = "Please select customer or add new customer, Account name, office phone and email are mandatory fields."; } else { $data = $_POST; if (isset($_POST['data']['Customer']['id']) && $_POST['data']['Customer']['id'] != '') { $customer = $order->getCustomer($_POST['data']['Customer']['id']); $billing = $order->getCustomerBilling($_POST['data']['Customer']['id']); $shipping = $order->getCustomerShipping($_POST['data']['Customer']['id']); $data['Customer']['name'] = $customer['account_name']; $data['Customer']['office_email'] = $customer['email']; $data['Customer']['office_fax'] = $customer['fax']; $data['Customer']['office_phone'] = $customer['phone']; $data['Customer']['url'] = $customer['website']; $data['Customer']['vat_number'] = $customer['vat']; $data['Customer']['billing_address_1'] = $billing['address1']; $data['Customer']['billing_address_2'] = $billing['address2']; $data['Customer']['billing_city'] = $billing['city']; $data['Customer']['billing_region'] = $billing['state']; $data['Customer']['billing_postal_code'] = $billing['postcode']; $data['Customer']['billing_country'] = $billing['country']; $data['Customer']['shipping_address_1'] = $shipping['address1']; $data['Customer']['shipping_address_2'] = $shipping['address2'];