ecshop開發日誌之手機端虛擬商品自動發貨

在ecshop官方模版收,web端的虛擬商品購買後不能像pc端那般直接在付款後出現虛擬商品的卡號,密碼,截止日期
一下爲讓手機購買也能夠在付款後自動顯示發貨並能顯示卡號密碼截止日期
首 先找到pc端的flow.php文件中的$_REQUEST['act'] = 'done'  這裏面是用來處理訂單的最後一步,(具體怎麼知道的能夠看url後的參數列表),對應手機端處理訂單的的文件爲 mobile/order.php 文件,這裏一樣有一個$_REQUEST['act'] = 'done',對比裏面的代碼發現order.php相比flow.php 缺乏了一段處理虛擬商品的代碼找到ecshop官方的flow.php文件中大約1677行有一個註釋
/*/* 若是使用庫存,且下訂單時減庫存,則減小庫存 */*/下面的if判斷語句仍是相同
這句話上面還有一段代碼(以下),在手機端不存在,具體功能(追到函數裏這段是說:設置紅包已經使用,和咱們如今需求的功能無關)php

if ($order['bonus_id'] > 0 && $temp_amout > 0)
    {
        use_bonus($order['bonus_id'], $new_order_id);
    }

下面還有兩端代碼是手機端沒有的html

/* 給商家發郵件 ----- 這段或許能夠不要,我沒有測試 */
    /* 增長是否給客服發送郵件選項 */
    if ($_CFG['send_service_email'] && $_CFG['service_email'] != '')
    {
        $tpl = get_mail_template('remind_of_new_order');
        $smarty->assign('order', $order);
        $smarty->assign('goods_list', $cart_goods);
        $smarty->assign('shop_name', $_CFG['shop_name']);
        $smarty->assign('send_date', date($_CFG['time_format']));
        $content = $smarty->fetch('str:' . $tpl['template_content']);
        send_mail($_CFG['shop_name'], $_CFG['service_email'], $tpl['template_subject'], $content, $tpl['is_html']);
    }

    /* 若是須要,發短信  -----  這段也是沒有的,應該也不須要*/
    if ($_CFG['sms_order_placed'] == '1' && $_CFG['sms_shop_mobile'] != '')
    {
        include_once('includes/cls_sms.php');
        $sms = new sms();
        $msg = $order['pay_status'] == PS_UNPAYED ?
            $_LANG['order_placed_sms'] : $_LANG['order_placed_sms'] . '[' . $_LANG['sms_paid'] . ']';
        $sms->send($_CFG['sms_shop_mobile'], sprintf($msg, $order['consignee'], $order['tel']),'', 13,1);
    }

下面的關鍵的代碼 ----- 是關係到咱們如今的功能是否是能用
virtual_goods_ship($virtual_goods,$msg, $order['order_sn'], true)這個函數裏面會有一個smarty的assign方法就是這裏將虛擬商品的卡號密碼等信息發送到頁面中,並處理髮貨狀態等,有興趣的童鞋能夠進 去看看,web

/* 若是訂單金額爲0 處理虛擬卡 */
    if ($order['order_amount'] <= 0)
    {
        $sql = "SELECT goods_id, goods_name, goods_number AS num FROM ".
               $GLOBALS['ecs']->table('cart') .
                " WHERE is_real = 0 AND extension_code = 'virtual_card'".
                " AND session_id = '".SESS_ID."' AND rec_type = '$flow_type'";

        $res = $GLOBALS['db']->getAll($sql);

        $virtual_goods = array();
        foreach ($res AS $row)
        {
            $virtual_goods['virtual_card'][] = array('goods_id' => $row['goods_id'], 'goods_name' => $row['goods_name'], 'num' => $row['num']);
        }

        if ($virtual_goods AND $flow_type != CART_GROUP_BUY_GOODS)
        {
            /* 虛擬卡發貨 */
            if (virtual_goods_ship($virtual_goods,$msg, $order['order_sn'], true))
            {
                /* 若是沒有實體商品,修改發貨狀態,送積分和紅包 */
                $sql = "SELECT COUNT(*)" .
                        " FROM " . $ecs->table('order_goods') .
                        " WHERE order_id = '$order[order_id]' " .
                        " AND is_real = 1";
                if ($db->getOne($sql) <= 0)
                {
                    /* 修改訂單狀態 */
                    update_order($order['order_id'], array('shipping_status' => SS_SHIPPED, 'shipping_time' => gmtime()));

                    /* 若是訂單用戶不爲空,計算積分,併發給用戶;發紅包 */
                    if ($order['user_id'] > 0)
                    {
                        /* 取得用戶信息 */
                        $user = user_info($order['user_id']);

                        /* 計算併發放積分 */
                        $integral = integral_to_give($order);
                        log_account_change($order['user_id'], 0, 0, intval($integral['rank_points']), intval($integral['custom_points']), sprintf($_LANG['order_gift_integral'], $order['order_sn']));

                        /* 發放紅包 */
                        send_order_bonus($order['order_id']);
                    }
                }
            }
        }
    }

這裏的代碼添加上之後變量已經發送到頁面中了,在手機模版收是order_done.dwt文件來顯示最後一步的,這裏和pc端的flow.dwt裏全是判斷的思路不太同樣,找到flow.dwt文件中顯示虛擬商品信息的那段代碼以下(其實能夠本身找找)sql

<!--{if $virtual_card}-->
<div style="text-align:center;overflow:hidden;border:1px solid #E2C822;background:#FFF9D7;margin:10px;padding:10px 50px 30px;">
    <!--{foreach from=$virtual_card item=vgoods}-->
    <h3 style="color:#2359B1; font-size:12px;">{$vgoods.goods_name}</h3>
        <!--{foreach from=$vgoods.info item=card}-->
        <ul style="list-style:none;padding:0;margin:0;clear:both">
            <!--{if $card.card_sn}-->
            <li style="margin-right:50px;float:left;"> <strong>卡號:</strong><span style="color:red;">{$card.card_sn}</span> </li>
            <!--{/if}-->
            <!--{if $card.card_password}-->
            <li style="margin-right:50px;float:left;"> <strong>密碼:</strong><span style="color:red;">{$card.card_password}</span> </li>
            <!--{/if}-->
            <!--{if $card.end_date}-->
            <li style="float:left;"> <strong>截止日期:</strong>{$card.end_date} </li>
            <!--{/if}-->
        </ul>
        <!--{/foreach}-->
    <!--{/foreach}-->
</div>
<!--{/if}-->

放到order_done.dwt裏一個合適的位置,到此這個功能大概就完成了
可是我目前爲止沒有的是支付寶付款是否是能自動的返回這些卡號密碼,我都是用餘額支付的,若有不正確的地方,請不吝指正session

相關文章
相關標籤/搜索