當前位置: 首頁>>代碼示例>>PHP>>正文


PHP order::getOrder方法代碼示例

本文整理匯總了PHP中order::getOrder方法的典型用法代碼示例。如果您正苦於以下問題:PHP order::getOrder方法的具體用法?PHP order::getOrder怎麽用?PHP order::getOrder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在order的用法示例。


在下文中一共展示了order::getOrder方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: order

<?php

// Includng configuration file
include 'config/config.php';
//Check user is already login or not
checkAuthentication();
$id = $_SESSION['adminid'];
$order = new order();
$customer = new customer();
if (isset($_GET['action']) && $_GET['action'] == 'new') {
    $smarty->assign('customers', $customer->getCustomers());
    $smarty->assign('content', $smarty->fetch('createorder.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'edit') {
    $id = $_GET['id'];
    $orderdet = $order->getOrder($id);
    $orderitems = $order->getOrderItems($orderdet['id']);
    $customer = $order->getCustomer($orderdet['customer_id']);
    $smarty->assign('order', $orderdet);
    $smarty->assign('orderitems', $orderitems);
    $smarty->assign('customer', $customer);
    $smarty->assign('billing', $order->getCustomerBilling($customer['id']));
    $smarty->assign('shipping', $order->getCustomerShipping($customer['id']));
    $smarty->assign('content', $smarty->fetch('editorder.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'viewchalan') {
    $id = $_GET['id'];
    $orderdet = $order->getOrder($id);
    $orderitems = $order->getOrderItems($orderdet['id']);
    $customer = $order->getCustomer($orderdet['customer_id']);
    $smarty->assign('order', $orderdet);
    $smarty->assign('orderitem', $orderitems);
    $smarty->assign('customer', $customer);
開發者ID:roshanbhgt,項目名稱:erp,代碼行數:31,代碼來源:order.php

示例2: order

<?php

// Includng configuration file
include 'config/config.php';
//Check user is already login or not
checkAuthentication();
$id = $_SESSION['adminid'];
$order = new order();
$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'];
開發者ID:roshanbhgt,項目名稱:erp,代碼行數:31,代碼來源:invoicechalan.php

示例3: function

<?php

use Models\Order;
use Lib\OAuth2\OAuth2;
$app->group('/order', function () use($app, $authorize, $resourceServer) {
    //create order//
    $app->post('/', $authorize(), function () use($app, $resourceServer) {
        $order = new order();
        $ordernumber = mt_rand();
        //would be the paypal ordernumber, when actual transactions are processed//
        $ticketquantity = $app->request->post('ticketquantity');
        $participantid = $app->request->post('participantid');
        //perform insertion//
        $json = $order->addOrder($ordernumber, $ticketquantity, $participantid);
        echo $json;
    });
    //get specific order//
    $app->get('/:id/', $authorize(), function ($id) use($app, $resourceServer) {
        $order = new order();
        $json = $order->getOrder($id);
        echo $json;
    });
});
開發者ID:Opportunity-Hack-2015-Arizona,項目名稱:Team13,代碼行數:23,代碼來源:order.php


注:本文中的order::getOrder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。