|
- <?php
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2016/12/22
- * Time: 15:29
- */
- ?>
- <div class="portlet box green">
- <div class="portlet-title">
- <div class="caption">
- <i class="fa fa-cogs"></i>渠道销售酒店统计
- </div>
- <div class="tools">
- <a href="<?= Yii::$app->urlManager->createUrl(['hotel/report/export-sale-channel-hotel', 'Report[org_sale_id]' => $searchModel['org_sale_id'], 'Report[start_date]' => $searchModel['start_date']
- , 'Report[end_date]' => $searchModel['end_date'], 'Report[date_type]' => $searchModel['date_type']]) ?>"><span
- aria-hidden="true" class="icon-cloud-download"> 导出</span></a>
- <a href="javascript:$('#form').submit();"><span aria-hidden="true" class="icon-refresh"> 刷新</span></a>
-
- </div>
- </div>
- <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"><?php echo $v['order_count'] ?></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><?php echo $v['hotel_name'] ?></td>
- <td class="numeric"><a
- href="<?=Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'org_sale_id' => $v['channel_id'],'hotel_id' => $v['hotel_id'], 'start_date' => $searchModel['start_date']
- , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"><?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 number_format($v['gross_rate'] * 100, 2) . '%' ?></td>
- </tr>
- <?php } ?>
-
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|