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.
 
 
 
 
 
 

103 lines
7.7 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. //\backend\modules\hotel\assets\hotelAsset::addScript($this, '../assets/js/htCommon.js');
  16. ?>
  17. <div class="portlet-body flip-scroll">
  18. <?php
  19. if (isset($data['order_info'])) {
  20. ?>
  21. <table class="table table-bordered table-striped table-condensed flip-content">
  22. <thead class="flip-content">
  23. <tr>
  24. <th style="width: 4%">序号</th>
  25. <th style="">酒店</th>
  26. <th class="numeric" style="text-align: right;width: 6%">订单数</th>
  27. <th class="numeric" style="text-align: right;width: 6%">间夜数</th>
  28. <th class="numeric" style="text-align: right;width: 6%">间夜数月环比</th>
  29. <th class="numeric" style="text-align: right;width: 9%">销售额</th>
  30. <th class="numeric" style="text-align: right;width: 6%">销售额月环比</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: 4%">赔入</th>
  34. <th class="numeric" style="text-align: right;width: 4%">赔出</th>
  35. <th class="numeric" style="text-align: right;width: 9%">毛利</th>
  36. <th class="numeric" style="text-align: right;width: 6%">毛利月环比</th>
  37. <th class="numeric" style="text-align: right;width: 6%">毛利率</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. <tr style="font-weight: bold;">
  42. <td>-</td>
  43. <td>总计</td>
  44. <td class="numeric" style="text-align: right">
  45. <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room', 'op' => 'orgSale', 'start_date' => $searchModel['start_date'],
  46. 'hotel_id' => $searchModel['hotel_id'], 'org_sale_id'=> $searchModel['org_sale_id'], 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>">
  47. <?php echo empty($data['total']['total_order_num']) ? 0 : $data['total']['total_order_num']; ?></a>
  48. </td>
  49. <td class="numeric" style="text-align: right"><?php echo empty($data['total']['total_room_num']) ? 0 : $data['total']['total_room_num'] ?></td>
  50. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_room_count'] ?></td>
  51. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_price'] === '-' ? '-' : number_format($data['total']['total_order_price'], 2); ?></td>
  52. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_order_price']; ?></td>
  53. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_base_price'] === '-' ? '-' : number_format($data['total']['total_base_price'], 2); ?></td>
  54. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_commission_total'] === '-' ? '-' : number_format($data['total']['total_commission_total'], 2); ?></td>
  55. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_in'] === '-' ? '-' : number_format($data['total']['total_compensate_in'], 2); ?></td>
  56. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_compensate_out'] === '-' ? '-' : number_format($data['total']['total_compensate_out'], 2); ?></td>
  57. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_order_profit'] === '-' ? '-' : number_format($data['total']['total_order_profit'], 2); ?></td>
  58. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_mom_profit_value']; ?></td>
  59. <td class="numeric" style="text-align: right"><?php echo $data['total']['total_price_rate']; ?></td>
  60. </tr>
  61. <?php
  62. foreach ($data['order_info'] as $k => $v) { ?>
  63. <tr>
  64. <td><?php echo $k + 1 ?></td>
  65. <td class="numeric" style="text-align: left;">
  66. <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['hotel/report/sales-channel', 'op' => 'orgSale',
  67. 'Report[start_date]' => $searchModel['start_date'], 'Report[org_sale_id]' => $searchModel['org_sale_id'],
  68. 'hotel_id' => $v['PARENT_PROD_ID'], 'Report[end_date]' => $searchModel['end_date'], 'Report[date_type]' => $searchModel['date_type']]) ?>">
  69. <?php echo $v['PARENT_PROD_NAME'] ?></a>
  70. </td>
  71. <td class="numeric" style="text-align: right;">
  72. <a target="_blank" onclick="open_new_path(this)" go_path="<?= Yii::$app->urlManager->createUrl(['hotel/report/hotel-sales-room',
  73. 'op' => 'roomInfo', 'start_date' => $searchModel['start_date'], 'hotel_id' => $v['PARENT_PROD_ID'], 'org_sale_id' => $searchModel['org_sale_id']
  74. , 'end_date' => $searchModel['end_date'], 'date_type' => $searchModel['date_type']]) ?>"><?php echo $v['order_count'] ?></a>
  75. </td>
  76. <td class="numeric" style="text-align: right;"><?php echo $v['room_count'] ?></td>
  77. <td class="numeric" style="text-align: right;"><?php echo is_null($v['room_count_mom']) ? '-' :$v['room_count_mom'] ?></td>
  78. <td class="numeric" style="text-align: right;"><?php echo $v['ORDER_PRICE'] === '-' ? '-' : number_format($v['ORDER_PRICE'], 2); ?></td>
  79. <td class="numeric" style="text-align: right;"><?php echo is_null($v['order_price_mom']) ? '-' : $v['order_price_mom'] ?></td>
  80. <td class="numeric" style="text-align: right;"><?php echo $v['BASE_PRICE'] === '-' ? '-' : number_format($v['BASE_PRICE'], 2); ?></td>
  81. <td class="numeric" style="text-align: right;"><?php echo $v['TOTAL_COMMISSION'] === '-' ? '-' : number_format($v['TOTAL_COMMISSION'], 2); ?></td>
  82. <td class="numeric" style="text-align: right;"><?php echo $v['compensate_in'] === '-' ? '-' : number_format($v['compensate_in'], 2); ?></td>
  83. <td class="numeric" style="text-align: right;"><?php echo $v['compensate_out'] === '-' ? '-' : number_format($v['compensate_out'], 2); ?></td>
  84. <td class="numeric" style="text-align: right;"><?php echo $v['PROFIT_VALUE'] === '-' ? '-' : number_format($v['PROFIT_VALUE'], 2); ?></td>
  85. <td class="numeric" style="text-align: right;"><?php echo is_null($v['profit_value_mom']) ? '-' :$v['profit_value_mom'] ?></td>
  86. <td class="numeric" style="text-align: right;"><?php echo is_null($v['price_rate']) ? '-' : $v['price_rate'] ?></td>
  87. </tr>
  88. <?php } ?>
  89. </tbody>
  90. </table>
  91. <?php
  92. } else {
  93. echo '暂无数据';
  94. }
  95. ?>
  96. </div>