?打开手机文件夹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.mzwkj.com