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


PHP Order::getCountByStoreId方法代码示例

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


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

示例1: actionIndex

 public function actionIndex()
 {
     $last15days = [];
     $last6Month = [];
     $numDataOrder = [];
     // 订单生成数据
     $numDataVolume = [];
     // 营业额数据
     $numDataCompleted = [];
     // 订单完成数据
     $numDataVolumeMonth = [];
     // 每月营业额
     $today = strtotime("00:00:00");
     $todayEnd = strtotime("23:59:59");
     for ($i = 0; $i < 15; $i++) {
         $timestrap = strtotime('-' . $i . ' days', $today);
         $timestrapEnd = strtotime('-' . $i . ' days', $todayEnd);
         $where = ['and', ['store_id' => Yii::$app->user->identity->store_id], ['>=', 'created_at', $timestrap], ['<=', 'created_at', $timestrapEnd]];
         array_unshift($last15days, date('m/d', $timestrap));
         array_unshift($numDataOrder, Order::find()->where($where)->count());
         $data = OrderVolume::find()->select(['sum(volume) AS volume', 'count(*) AS count'])->where($where)->asArray()->one();
         array_unshift($numDataVolume, $data['volume']);
         array_unshift($numDataCompleted, $data['count']);
     }
     for ($i = 0; $i < 6; $i++) {
         $timestrap = strtotime("first day of -{$i} month", $today);
         $timestrapEnd = strtotime("last day of -{$i} month", $todayEnd);
         $where = ['and', ['store_id' => Yii::$app->user->identity->store_id], ['>=', 'created_at', $timestrap], ['<=', 'created_at', $timestrapEnd]];
         array_unshift($last6Month, date('Y/m', $timestrap));
         array_unshift($numDataVolumeMonth, OrderVolume::find()->where($where)->sum('volume'));
     }
     $data2 = OrderVolume::find()->select(['sum(volume) AS volume', 'count(*) AS count'])->where(['store_id' => Yii::$app->user->identity->store_id])->asArray()->one();
     return $this->render('index', ['model' => Yii::$app->user->identity->store, 'last15days' => $last15days, 'last6Month' => $last6Month, 'numDataOrder' => $numDataOrder, 'numDataVolume' => $numDataVolume, 'numDataCompleted' => $numDataCompleted, 'numDataVolumeMonth' => $numDataVolumeMonth, 'countOrder' => Order::getCountByStoreId(Yii::$app->user->identity->store_id), 'countCompleted' => $data2['count'], 'sumVolume' => $data2['volume']]);
 }
开发者ID:daixianceng,项目名称:xiaoego.com,代码行数:34,代码来源:SiteController.php

示例2:

        </div>
        <div class="row">
            <div class="col-lg-12">
                <?php 
echo Alert::widget();
?>
            </div>
        </div>
        <?php 
echo $content;
?>
    </div>
    <!-- /#page-wrapper -->

</div>
<!-- /#wrapper -->
<audio class="audio-order hidden" controls="controls" data-count="<?php 
echo Order::getCountByStoreId(Yii::$app->user->identity->store_id);
?>
">
    <source src="<?php 
echo Url::base();
?>
/audio/alert.ogg" type="audio/ogg">
    <source src="<?php 
echo Url::base();
?>
/audio/alert.mp3" type="audio/mpeg">
</audio>
<?php 
$this->endContent();
开发者ID:daixianceng,项目名称:xiaoego.com,代码行数:31,代码来源:main.php

示例3: actionCount

 public function actionCount()
 {
     Yii::$app->response->format = Response::FORMAT_JSON;
     $count = Order::getCountByStoreId(Yii::$app->user->identity->store_id);
     return ['count' => $count];
 }
开发者ID:daixianceng,项目名称:xiaoego.com,代码行数:6,代码来源:OrderController.php


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