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


PHP invoice::getCustomer方法代碼示例

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


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

示例1: invoice

<?php

// Includng configuration file
include 'config/config.php';
//Check user is already login or not
checkAuthentication();
$id = $_SESSION['adminid'];
$order = new invoice();
$customer = new customer();
if (isset($_GET['action']) && $_GET['action'] == 'new') {
    $smarty->assign('content', $smarty->fetch('searchchalaninvoice.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'viewinvoice') {
    $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);
    $smarty->assign('billing', $order->getCustomerBilling($customer['id']));
    $smarty->assign('shipping', $order->getCustomerShipping($customer['id']));
    $smarty->assign('content', $smarty->fetch('invoiceview.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'printinvoice') {
    $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);
    $smarty->assign('billing', $order->getCustomerBilling($customer['id']));
開發者ID:roshanbhgt,項目名稱:erp,代碼行數:31,代碼來源:invoice.php

示例2: elseif

        $data['status'] = 'error';
        $data['message'] = 'Delivery chalan does not exist you can click ok to proceed with fresh invoice and cancel to search for chalan #.';
        $smarty->assign('customers', $customer->getCustomers());
        $data['content'] = $smarty->fetch('createinvoice.tpl');
    } else {
        $data['status'] = 'success';
        $data['orderid'] = $_POST['id'];
    }
} elseif (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'];
開發者ID:roshanbhgt,項目名稱:erp,代碼行數:31,代碼來源:createinvoice.php


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