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.
 
 
 
 
 
 

107 lines
8.9 KiB

  1. <?php
  2. /**
  3. *
  4. * ============================================================================
  5. * * 版权所有 蜘蛛出行 * *
  6. * 网站地址: http://www.zhizhuchuxing.com
  7. * ----------------------------------------------------------------------------
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  9. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  10. * ============================================================================
  11. * Author By: luocj
  12. * PhpStorm hotelSales.php
  13. * Create By 2016/12/20 9:55 $
  14. */
  15. ?>
  16. <div class="portlet-body flip-scroll">
  17. <table class="table table-bordered table-striped table-condensed flip-content">
  18. <thead class="flip-content">
  19. <tr>
  20. <th>序号</th>
  21. <th>销售渠道</th>
  22. <th class="numeric" style="text-align: right;width: 6%">订单数</th>
  23. <th class="numeric" style="text-align: right;width: 6%">间夜数</th>
  24. <th class="numeric" style="text-align: right;width: 6%">间夜数月环比</th>
  25. <th class="numeric" style="text-align: right;width: 9%">销售额</th>
  26. <th class="numeric" style="text-align: right;width: 6%">销售额月环比</th>
  27. <th class="numeric" style="text-align: right;width: 9%">采购成本</th>
  28. <th class="numeric" style="text-align: right;width: 6%">渠道佣金</th>
  29. <th class="numeric" style="text-align: right;width: 4%">赔入</th>
  30. <th class="numeric" style="text-align: right;width: 4%">赔出</th>
  31. <th class="numeric" style="text-align: right;width: 9%">毛利</th>
  32. <th class="numeric" style="text-align: right;width: 6%">毛利月环比</th>
  33. <th class="numeric" style="text-align: right;width: 6%">毛利率</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <tr style="font-weight: bold;">
  38. <td>-</td>
  39. <td>总计</td>
  40. <td class="numeric" style="text-align: right;">
  41. <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,
  42. 'org_sale_id' => $searchModel->org_sale_id, 'Report[start_date]' => $searchModel->start_date, 'Report[end_date]' => $searchModel['end_date'],
  43. 'Report[date_type]' => $searchModel['date_type']])?>">
  44. <?php echo empty($data['total']['total_order_num']) ? 0 : $data['total']['total_order_num'] ?></a>
  45. </td>
  46. <td class="numeric" style="text-align: right"><?php echo empty($data['total']['total_room_num']) ? 0 :$data['total']['total_room_num'] ?></td>
  47. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_room_count'] ?></td>
  48. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_price'] === '-' ? '-' : number_format($data['total']['total_order_price'], 2); ?></td>
  49. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_order_price']; ?></td>
  50. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_base_price'] === '-' ? '-' : number_format($data['total']['total_base_price'], 2); ?></td>
  51. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_commission_total'] === '-' ? '-' : number_format($data['total']['total_commission_total'], 2); ?></td>
  52. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_in'] === '-' ? '-' : number_format($data['total']['total_compensate_in'], 2); ?></td>
  53. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_out'] === '-' ? '-' : number_format($data['total']['total_compensate_out'], 2); ?></td>
  54. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_profit'] === '-' ? '-' : number_format($data['total']['total_order_profit'], 2); ?></td>
  55. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_profit_value']; ?></td>
  56. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_price_rate']; ?></td>
  57. </tr>
  58. <?php
  59. foreach ($data['order_info'] as $k => $v) { ?>
  60. <tr>
  61. <td><?php echo $k + 1 ?></td>
  62. <!-- 渠道页面-->
  63. <td class="numeric" style="text-align: left;">
  64. <?php
  65. if(empty($searchModel->hotel_id) && $searchModel ->op == 'orgSale')
  66. {
  67. // 直接的渠道链接
  68. ?>
  69. <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/sales',
  70. 'op' => 'getInfo', 'hotel_id' => $searchModel['hotel_id'], 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'],
  71. 'Report[start_date]' => $searchModel->start_date, 'Report[end_date]' => $searchModel['end_date'], 'to_url'=> 'room',
  72. 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['CHANNEL_NAME'] ?></a>
  73. <?php
  74. }else
  75. {
  76. // 通过酒店查找渠道
  77. ?>
  78. <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['/hotel/report/sales-channel-room',
  79. 'op' => 'roomInfo' , 'hotel_id' => $searchModel['hotel_id'],
  80. 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'], 'Report[start_date]' => $searchModel->start_date, 'Report[end_date]' => $searchModel['end_date'],
  81. 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['CHANNEL_NAME'] ?></a>
  82. <?php
  83. }
  84. ?>
  85. </td>
  86. <td class="numeric" style="text-align: right;">
  87. <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,
  88. 'org_sale_id' => $v['OUTSIDE_SALE_ORG_ID'], 'Report[start_date]' => $searchModel['start_date'], 'Report[end_date]' => $searchModel['end_date'],
  89. 'Report[date_type]' => $searchModel['date_type']])?>"><?php echo $v['order_count'] ?></a>
  90. </td>
  91. <td class="numeric" style="text-align: right;"><?php echo $v['room_count'] ?></td>
  92. <td class="numeric" style="text-align: right;"><?php echo is_null($v['room_count_mom']) ? '-' :$v['room_count_mom'] ?></td>
  93. <td class="numeric" style="text-align: right;"><?php echo $v['ORDER_PRICE'] === '-' ? '-' : number_format($v['ORDER_PRICE'], 2); ?></td>
  94. <td class="numeric" style="text-align: right;"><?php echo is_null($v['order_price_mom']) ? '-' : $v['order_price_mom'] ?></td>
  95. <td class="numeric" style="text-align: right;"><?php echo $v['BASE_PRICE'] === '-' ? '-' : number_format($v['BASE_PRICE'], 2); ?></td>
  96. <td class="numeric" style="text-align: right;"><?php echo $v['TOTAL_COMMISSION'] === '-' ? '-' : number_format($v['TOTAL_COMMISSION'], 2); ?></td>
  97. <td class="numeric" style="text-align: right;"><?php echo $v['compensate_in'] === '-' ? '-' : number_format($v['compensate_in'], 2); ?></td>
  98. <td class="numeric" style="text-align: right;"><?php echo $v['compensate_out'] === '-' ? '-' : number_format($v['compensate_out'], 2); ?></td>
  99. <td class="numeric" style="text-align: right;"><?php echo $v['PROFIT_VALUE'] === '-' ? '-' : number_format($v['PROFIT_VALUE'], 2); ?></td>
  100. <td class="numeric" style="text-align: right;"><?php echo is_null($v['profit_value_mom']) ? '-' :$v['profit_value_mom'] ?></td>
  101. <td class="numeric" style="text-align: right;"><?php echo is_null($v['price_rate']) ? '-' : $v['price_rate'] ?></td>
  102. </tr>
  103. <?php } ?>
  104. </tbody>
  105. </table>
  106. </div>