|
- <?php
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2016/12/21
- * Time: 17:46
- */
-
- ?>
- <div class="portlet-body flip-scroll">
- <table class="table table-bordered table-striped table-condensed flip-content">
- <thead class="flip-content">
- <tr>
- <th>序号</th>
- <th> 销售渠道</th>
- <th class="numeric"> 订单数</th>
- <th class="numeric"> 间夜数</th>
- <th class="numeric"> 间夜数月环比</th>
- <th class="numeric"> 销售额</th>
- <th class="numeric"> 销售额月环比</th>
- <th class="numeric"> 采购成本</th>
- <th class="numeric"> 渠道佣金</th>
- <th class="numeric"> 毛利</th>
- <th class="numeric"> 毛利月环比</th>
- <th class="numeric"> 毛利率</th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($data['all'] as $v) { ?>
- <tr>
- <td>-</td>
- <th> 合计</th>
- <th class="numeric"><a
- href="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'org_sale_id' => '', 'start_date' => $searchModel['start_date']
- , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"
- class="nav-link"><?php echo $v['order_count'] ?></a></th>
- <th class="numeric"><?php echo $v['room_count'] ?></th>
- <th class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></th>
- <th class="numeric"><?php echo $v['sales_value'] ?></th>
- <th class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></th>
- <th class="numeric"><?php echo $v['cost_value'] ?></th>
- <th class="numeric"><?php echo $v['commission_value'] ?></th>
- <th class="numeric"><?php echo $v['profit_value'] ?></th>
- <th class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></th>
- <th class="numeric"><?php echo $v['gross_rate'] == '-' ? '-' : number_format($v['gross_rate'] * 100, 2) . '%' ?></th>
- </tr>
- <?php } ?>
- <?php
- foreach ($data['list'] as $k => $v) { ?>
- <tr>
- <td><?php echo $k + 1 ?></td>
- <td>
- <a href="<?= Yii::$app->urlManager->createUrl(['hotel/report/sale-channel-hotel', 'Report[org_sale_id]' => $v['channel_id'], 'Report[start_date]' => $searchModel['start_date']
- , 'Report[end_date]' => $searchModel['end_date'], 'Report[date_type]' => $searchModel['date_type']]) ?>"
- class="nav-link"><?php echo $v['channel_name'] ?></a></td>
- <td class="numeric"><a
- href="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'org_sale_id' => $v['channel_id'], 'start_date' => $searchModel['start_date']
- , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"
- class="nav-link"><?php echo $v['order_count'] ?></a></td>
- <td class="numeric"><?php echo $v['room_count'] ?></td>
- <td class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></td>
- <td class="numeric"><?php echo $v['sales_value'] ?></td>
- <td class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></td>
- <td class="numeric"><?php echo $v['cost_value'] ?></td>
- <td class="numeric"><?php echo $v['commission_value'] ?></td>
- <td class="numeric"><?php echo $v['profit_value'] ?></td>
- <td class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></td>
- <td class="numeric"><?php echo $v['gross_rate'] == '-' ? '-' : number_format($v['gross_rate'] * 100, 2) . '%' ?></td>
- </tr>
- <?php } ?>
- </tbody>
- </table>
- </div>
|