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


PHP ShoppingCart::setRelationRecords方法代码示例

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


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

示例1: actionShoppingCart

    public function actionShoppingCart()
    {
        $this->layout = '/layouts/column1';
        $model = new ShoppingCart();
        if (isset($_POST['ShoppingCart'])) {
            $model->attributes = $_POST['ShoppingCart'];
            $model->createdatetime = new CDbExpression('NOW()');
            $detailedCarts = $this->getRelationDetailedCart();
            $model->setRelationRecords('detailedcart', $detailedCarts);
            if ($model->validate()) {
                // lưu database
                $model->save();
                // gửi mail
                $body = $model->fullname . '<br />Email: ' . $model->email . '<br />Điện thoại: ' . $model->phone . '<br />Địa chỉ: ' . $model->address . '<br />Ghi chú: ' . $model->note . '<hr /><br />' . '<table><tr>
					<th>Mã sản phẩm</th>
					<th>Tên sản phẩm</th>
					<th>Đơn giá</th>
					<th>Số lượng</th>
					<th>Thành tiền</th>
				</tr>';
                $total = 0;
                foreach ($detailedCarts as $item) {
                    $item = (object) $item;
                    $product = Product::model()->findByPk($item->productid);
                    $row = '<tr>' . '<td>%s</td>' . '<td>%s</td>' . '<td>%s</td>' . '<td>%s</td>' . '<td>%s</td>' . '</tr>';
                    $body = $body . sprintf($row, $product->code, $product->name, number_format($item->price), $item->quantity, number_format($item->price * $item->quantity));
                    $total += $item->price * $item->quantity;
                }
                $body = $body . '<tr><td colspan="4">Tổng tiền</td><td>' . number_format($total) . '</td></tr>';
                $body = $body . '</table>';
                $this->SendMail(array('mailto' => Config::model()->getValueByKey('address_received_mail'), 'replyto' => $model->email, 'subject' => 'Đặt hàng online[' . $model->id . ']', 'body' => $body));
                // xoa cookie
                setcookie("ShoppingCartData", "", time() - 3600);
                Yii::app()->user->setFlash('shoppingCart', 'Thông tin mua hàng của bạn đã được gửi đến chúng tôi. Chúng tôi sẽ phản hồi bạn trong thời gian sớm nhất. Xin chân thành cảm ơn!');
                $this->refresh();
            }
        }
        $this->pageTitle = 'Giỏ hàng - ' . Config::model()->getValueByKey('sitetitle');
        $this->metaDescription = Config::model()->getValueByKey('metadescription');
        $this->metaKeywords = Config::model()->getValueByKey('metakeywords');
        $this->render('shoppingCart', array('model' => $model));
    }
开发者ID:phantsang,项目名称:xzsUuJg0keDWW5Rx679PHBVBJ,代码行数:42,代码来源:SiteController.php


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