Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

75 wiersze
4.2 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2016/12/21
  6. * Time: 17:46
  7. */
  8. ?>
  9. <div class="portlet-body flip-scroll">
  10. <table class="table table-bordered table-striped table-condensed flip-content">
  11. <thead class="flip-content">
  12. <tr>
  13. <th>序号</th>
  14. <th> 销售渠道</th>
  15. <th class="numeric"> 订单数</th>
  16. <th class="numeric"> 间夜数</th>
  17. <th class="numeric"> 间夜数月环比</th>
  18. <th class="numeric"> 销售额</th>
  19. <th class="numeric"> 销售额月环比</th>
  20. <th class="numeric"> 采购成本</th>
  21. <th class="numeric"> 渠道佣金</th>
  22. <th class="numeric"> 毛利</th>
  23. <th class="numeric"> 毛利月环比</th>
  24. <th class="numeric"> 毛利率</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <?php
  29. foreach ($data['all'] as $v) { ?>
  30. <tr>
  31. <td>-</td>
  32. <th> 合计</th>
  33. <th class="numeric"><a
  34. href="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'org_sale_id' => '', 'start_date' => $searchModel['start_date']
  35. , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"
  36. class="nav-link"><?php echo $v['order_count'] ?></a></th>
  37. <th class="numeric"><?php echo $v['room_count'] ?></th>
  38. <th class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></th>
  39. <th class="numeric"><?php echo $v['sales_value'] ?></th>
  40. <th class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></th>
  41. <th class="numeric"><?php echo $v['cost_value'] ?></th>
  42. <th class="numeric"><?php echo $v['commission_value'] ?></th>
  43. <th class="numeric"><?php echo $v['profit_value'] ?></th>
  44. <th class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></th>
  45. <th class="numeric"><?php echo $v['gross_rate'] == '-' ? '-' : number_format($v['gross_rate'] * 100, 2) . '%' ?></th>
  46. </tr>
  47. <?php } ?>
  48. <?php
  49. foreach ($data['list'] as $k => $v) { ?>
  50. <tr>
  51. <td><?php echo $k + 1 ?></td>
  52. <td>
  53. <a href="<?= Yii::$app->urlManager->createUrl(['hotel/report/sale-channel-hotel', 'Report[org_sale_id]' => $v['channel_id'], 'Report[start_date]' => $searchModel['start_date']
  54. , 'Report[end_date]' => $searchModel['end_date'], 'Report[date_type]' => $searchModel['date_type']]) ?>"
  55. class="nav-link"><?php echo $v['channel_name'] ?></a></td>
  56. <td class="numeric"><a
  57. href="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'org_sale_id' => $v['channel_id'], 'start_date' => $searchModel['start_date']
  58. , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"
  59. class="nav-link"><?php echo $v['order_count'] ?></a></td>
  60. <td class="numeric"><?php echo $v['room_count'] ?></td>
  61. <td class="numeric"><?php echo $v['room_rate'] == '-' ? '-' : number_format($v['room_rate'] * 100, 2) . '%' ?></td>
  62. <td class="numeric"><?php echo $v['sales_value'] ?></td>
  63. <td class="numeric"><?php echo $v['sales_rate'] == '-' ? '-' : number_format($v['sales_rate'] * 100, 2) . '%' ?></td>
  64. <td class="numeric"><?php echo $v['cost_value'] ?></td>
  65. <td class="numeric"><?php echo $v['commission_value'] ?></td>
  66. <td class="numeric"><?php echo $v['profit_value'] ?></td>
  67. <td class="numeric"><?php echo $v['profit_rate'] == '-' ? '-' : number_format($v['profit_rate'] * 100, 2) . '%' ?></td>
  68. <td class="numeric"><?php echo $v['gross_rate'] == '-' ? '-' : number_format($v['gross_rate'] * 100, 2) . '%' ?></td>
  69. </tr>
  70. <?php } ?>
  71. </tbody>
  72. </table>
  73. </div>