?打開手機文件夾mobile ? ?? flow.php ?或 ?buy.php
查找一下代碼
?/* 如果使用庫存,且下訂單時減庫存,則減少庫存 */
? ? if ($_CFG[‘use_storage’] == ‘1’ && $_CFG[‘stock_dec_time’] == SDT_PLACE)
? ? {
? ? ? ? change_order_goods_storage($order[‘order_id’], true, SDT_PLACE);
? ? }
在以上代碼下 加入 以下代碼
/* 給商家發郵件 */
? ? /* 增加是否給客服發送郵件選項 */
? ? 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);
? ? }
夢之網科技 http://www.aecov.cn