当前位置: 首页>>代码示例>>PHP>>正文


PHP invoice::getCustomerShipping方法代码示例

本文整理汇总了PHP中invoice::getCustomerShipping方法的典型用法代码示例。如果您正苦于以下问题:PHP invoice::getCustomerShipping方法的具体用法?PHP invoice::getCustomerShipping怎么用?PHP invoice::getCustomerShipping使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在invoice的用法示例。


在下文中一共展示了invoice::getCustomerShipping方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: invoice

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']));
    $smarty->assign('shipping', $order->getCustomerShipping($customer['id']));
    $smarty->assign('content', $smarty->fetch('printinvoice.tpl'));
    $smarty->display('print.html');
    exit;
} elseif (isset($_GET['action']) && $_GET['action'] == 'search') {
开发者ID:roshanbhgt,项目名称:erp,代码行数:31,代码来源:invoice.php

示例2: elseif

        $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'];
            $data['Customer']['shipping_address_2'] = $shipping['address2'];
            $data['Customer']['shipping_city'] = $shipping['city'];
开发者ID:roshanbhgt,项目名称:erp,代码行数:31,代码来源:createinvoice.php


注:本文中的invoice::getCustomerShipping方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。