|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: luocj
- * PhpStorm hotelSales.php
- * Create By 2016/12/20 9:55 $
- */
- ?>
- <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" style="text-align: right;width: 6%">订单数</th>
- <th class="numeric" style="text-align: right;width: 6%">间夜数</th>
- <th class="numeric" style="text-align: right;width: 6%">间夜数月环比</th>
- <th class="numeric" style="text-align: right;width: 9%">销售额</th>
- <th class="numeric" style="text-align: right;width: 6%">销售额月环比</th>
- <th class="numeric" style="text-align: right;width: 9%">采购成本</th>
- <th class="numeric" style="text-align: right;width: 6%">渠道佣金</th>
- <th class="numeric" style="text-align: right;width: 4%">赔入</th>
- <th class="numeric" style="text-align: right;width: 4%">赔出</th>
- <th class="numeric" style="text-align: right;width: 9%">毛利</th>
- <th class="numeric" style="text-align: right;width: 6%">毛利月环比</th>
- <th class="numeric" style="text-align: right;width: 6%">毛利率</th>
- </tr>
- </thead>
- <tbody>
- <tr style="font-weight: bold;">
- <td>-</td>
- <td>总计</td>
- <td class="numeric" style="text-align: right;">
- <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/hotel-sales-room', 'op' => 'roomInfo' , 'hotel_id' => $searchModel->hotel_id,
- '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']])?>">
- <?php echo empty($data['total']['total_order_num']) ? 0 : $data['total']['total_order_num'] ?></a>
- </td>
- <td class="numeric" style="text-align: right"><?php echo empty($data['total']['total_room_num']) ? 0 :$data['total']['total_room_num'] ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_room_count'] ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_price'] === '-' ? '-' : number_format($data['total']['total_order_price'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_order_price']; ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_base_price'] === '-' ? '-' : number_format($data['total']['total_base_price'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_commission_total'] === '-' ? '-' : number_format($data['total']['total_commission_total'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_in'] === '-' ? '-' : number_format($data['total']['total_compensate_in'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_out'] === '-' ? '-' : number_format($data['total']['total_compensate_out'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_profit'] === '-' ? '-' : number_format($data['total']['total_order_profit'], 2); ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_profit_value']; ?></td>
- <td class="numeric" style="text-align: right"><?php echo $data['total']['total_price_rate']; ?></td>
- </tr>
- <?php
- foreach ($data['order_info'] as $k => $v) { ?>
- <tr>
- <td><?php echo $k + 1 ?></td>
- <!-- 渠道页面-->
- <td class="numeric" style="text-align: left;">
- <?php
- if(empty($searchModel->hotel_id) && $searchModel ->op == 'orgSale')
- {
- // 直接的渠道链接
- ?>
- <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/sales',
- 'op' => 'getInfo', 'hotel_id' => $searchModel['hotel_id'], 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'],
- 'Report[start_date]' => $searchModel->start_date, 'Report[end_date]' => $searchModel['end_date'], 'to_url'=> 'room',
- 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['CHANNEL_NAME'] ?></a>
- <?php
- }else
- {
- // 通过酒店查找渠道
- ?>
- <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/sales-channel-room',
- 'op' => 'roomInfo' , 'hotel_id' => $searchModel['hotel_id'],
- 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'], 'Report[start_date]' => $searchModel->start_date, 'Report[end_date]' => $searchModel['end_date'],
- 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['CHANNEL_NAME'] ?></a>
- <?php
- }
- ?>
- </td>
- <td class="numeric" style="text-align: right;">
- <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/hotel-sales-room', 'op' => 'roomInfo' , 'hotel_id' => $searchModel->hotel_id,
- 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'], 'Report[start_date]' => $searchModel['start_date'], 'Report[end_date]' => $searchModel['end_date'],
- 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['order_count'] ?></a>
- </td>
- <td class="numeric" style="text-align: right;"><?php echo $v['room_count'] ?></td>
- <td class="numeric" style="text-align: right;"><?php echo is_null($v['room_count_mom']) ? '-' :$v['room_count_mom'] ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['ORDER_PRICE'] === '-' ? '-' : number_format($v['ORDER_PRICE'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo is_null($v['order_price_mom']) ? '-' : $v['order_price_mom'] ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['BASE_PRICE'] === '-' ? '-' : number_format($v['BASE_PRICE'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['TOTAL_COMMISSION'] === '-' ? '-' : number_format($v['TOTAL_COMMISSION'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['compensate_in'] === '-' ? '-' : number_format($v['compensate_in'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['compensate_out'] === '-' ? '-' : number_format($v['compensate_out'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo $v['PROFIT_VALUE'] === '-' ? '-' : number_format($v['PROFIT_VALUE'], 2); ?></td>
- <td class="numeric" style="text-align: right;"><?php echo is_null($v['profit_value_mom']) ? '-' :$v['profit_value_mom'] ?></td>
- <td class="numeric" style="text-align: right;"><?php echo is_null($v['price_rate']) ? '-' : $v['price_rate'] ?></td>
- </tr>
- <?php } ?>
-
- </tbody>
- </table>
- </div>
|