You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

86 lines
4.5 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2016/12/22
  6. * Time: 15:29
  7. */
  8. ?>
  9. <div class="portlet box green">
  10. <div class="portlet-title">
  11. <div class="caption">
  12. <i class="fa fa-cogs"></i>渠道销售酒店统计
  13. </div>
  14. <div class="tools">
  15. <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']
  16. , 'Report[end_date]' => $searchModel['end_date'], 'Report[date_type]' => $searchModel['date_type']]) ?>"><span
  17. aria-hidden="true" class="icon-cloud-download"> 导出</span></a>
  18. <a href="javascript:$('#form').submit();"><span aria-hidden="true" class="icon-refresh"> 刷新</span></a>
  19. </div>
  20. </div>
  21. <div class="portlet-body flip-scroll">
  22. <table class="table table-bordered table-striped table-condensed flip-content">
  23. <thead class="flip-content">
  24. <tr>
  25. <th>序号</th>
  26. <th> 酒店</th>
  27. <th class="numeric"> 订单数</th>
  28. <th class="numeric"> 间夜数</th>
  29. <th class="numeric"> 间夜数月环比</th>
  30. <th class="numeric"> 销售额</th>
  31. <th class="numeric"> 销售额月环比</th>
  32. <th class="numeric"> 采购成本</th>
  33. <th class="numeric"> 渠道佣金</th>
  34. <th class="numeric"> 毛利</th>
  35. <th class="numeric"> 毛利月环比</th>
  36. <th class="numeric"> 毛利率</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <?php
  41. foreach ($data['all'] as $v) { ?>
  42. <tr>
  43. <td>-</td>
  44. <th> 合计</th>
  45. <th class="numeric"><?php echo $v['order_count'] ?></th>
  46. <th class="numeric"><?php echo $v['room_count'] ?></th>
  47. <th class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></th>
  48. <th class="numeric"><?php echo $v['sales_value'] ?></th>
  49. <th class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></th>
  50. <th class="numeric"><?php echo $v['cost_value'] ?></th>
  51. <th class="numeric"><?php echo $v['commission_value'] ?></th>
  52. <th class="numeric"><?php echo $v['profit_value'] ?></th>
  53. <th class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></th>
  54. <th class="numeric"><?php echo $v['gross_rate'] == '-' ? '-' : number_format($v['gross_rate'] * 100, 2) . '%' ?></th>
  55. </tr>
  56. <?php } ?>
  57. <?php
  58. foreach ($data['list'] as $k => $v) { ?>
  59. <tr>
  60. <td><?php echo $k + 1 ?></td>
  61. <td><?php echo $v['hotel_name'] ?></td>
  62. <td class="numeric"><a
  63. 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']
  64. , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"><?php echo $v['order_count'] ?></a>
  65. </td>
  66. <td class="numeric"><?php echo $v['room_count'] ?></td>
  67. <td class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></td>
  68. <td class="numeric"><?php echo $v['sales_value'] ?></td>
  69. <td class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></td>
  70. <td class="numeric"><?php echo $v['cost_value'] ?></td>
  71. <td class="numeric"><?php echo $v['commission_value'] ?></td>
  72. <td class="numeric"><?php echo $v['profit_value'] ?></td>
  73. <td class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></td>
  74. <td class="numeric"><?php echo number_format($v['gross_rate'] * 100, 2) . '%' ?></td>
  75. </tr>
  76. <?php } ?>
  77. </tbody>
  78. </table>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>