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.
 
 
 
 
 
 

166 lines
8.9 KiB

  1. <?php
  2. /**
  3. *
  4. * ============================================================================
  5. * * 版权所有 蜘蛛出行 * *
  6. * 网站地址: http://www.zhizhuchuxing.com
  7. * ----------------------------------------------------------------------------
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  9. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  10. * ============================================================================
  11. * Author By: 张帅
  12. * PhpStorm statistical-from.php
  13. * Create By 2017/1/12 11:39 $
  14. */
  15. use backend\modules\zzcs\assets\ZzcsNewAsset2;
  16. use yii\widgets\Pjax;
  17. ZzcsNewAsset2::addCss($this, '/payment/css/cope_account_statement.css');
  18. ZzcsNewAsset2::addScript($this, '/global/js/jquery-2.2.4.min.js');
  19. ZzcsNewAsset2::addScript($this, '/global/js/jquery.cookie.js');
  20. ZzcsNewAsset2::addScript($this, '/gathering/js/tool.js?v=20171129');
  21. ZzcsNewAsset2::addScript($this, '/plug/layer/layer.js');
  22. ZzcsNewAsset2::addScript($this, '/plug/jqueryPage/jquery.page.js');
  23. ZzcsNewAsset2::addScript($this, '/payment/js/cope_account_statement.js?v=20171129');
  24. ?>
  25. <div class="iframe_box">
  26. <div class="dis_search">
  27. <div class="form-inline search_first">
  28. <span class="search_name">供应商:</span>
  29. <select class="select_screen" id="org_list">
  30. <option value="0">请选择</option>
  31. <?php foreach ($supplier_list as $v):?>
  32. <option value="<?php echo $v['org_id']?>"><?php echo $v['org_name']?></option>
  33. <?php endforeach;?>
  34. </select>
  35. <span class="search_name">对账单号:</span>
  36. <div class="form-group">
  37. <input type="text" class="form-control" style="width: 150px;" id="amount_id" placeholder="对账单号">
  38. </div>
  39. <span class="search_name">结算状态:</span>
  40. <select class="form-control" style="width: 100px;" id="status_type">
  41. <option value="0">请选择</option>
  42. <option value="1">待核对</option>
  43. <option value="2">待结算</option>
  44. <option value="3">已结算</option>
  45. <option value="4">已取消</option>
  46. </select>
  47. <div class="form-inline" id="btns" style="float: right; margin-right: 20px;">
  48. <button type="button" class="btn btn-primary float_r mar_r" onclick="searchDidClick()"><span class="glyphicon glyphicon-search"></span> 查询</button>
  49. </div>
  50. </div>
  51. </div>
  52. <?php Pjax::begin(['id' => 'main_table', 'timeout' => 30000000]) ?>
  53. <div role="tabpanel" class="tab-pane" id="div_order">
  54. <div class="table-responsive">
  55. <table class="table table-striped table-hover" style="table-layout: fixed;word-break: break-all;word-wrap: break-word;">
  56. <thead>
  57. <tr>
  58. <th width="95">结算账期</th>
  59. <th width="125">对账单号</th>
  60. <th width="85">结算方式</th>
  61. <th width="150">供应商名称</th>
  62. <th width="150">账单备注</th>
  63. <th width="70">采购成本</th>
  64. <th width="100">赔款</th>
  65. <th width="100">结算状态</th>
  66. <th width="120">操作</th>
  67. </tr>
  68. </thead>
  69. <tbody id="order_list">
  70. <?php if($list):?>
  71. <?php foreach ($list as $v):?>
  72. <tr dict='<?php echo json_encode($v)?>'>
  73. <td>
  74. <div><?php echo $v['start_date'] ?></div>
  75. <div><?php echo $v['end_date'] ?></div>
  76. </td>
  77. <td><?php echo $v['batch_id'] ?></td>
  78. <td><?php echo $v['sett_frequency'] ?></td>
  79. <td class="org_info"><?php echo $v['org_name'] ?></td>
  80. <td class="remark" onclick='changeRemark(<?php echo $v['id'].',"'.$v['remark'].'"';?>)'><?php echo $v['remark'] ?></td>
  81. <td><?php echo $v['price'] ?></td>
  82. <td><?php echo $v['reparations_price'] ?></td>
  83. <td><?php echo $v['status_des'] ?></td>
  84. <td>
  85. <div>
  86. <?php if($v['status']==1):?>
  87. <button type="button" class="btn btn-link btn-xs" onclick="rightCheck(<?= $v['id']?>)">确认核对</button>
  88. <button type="button" class="btn btn-link btn-xs" onclick="cancelBill(<?= $v['id']?>)">取消对账</button>
  89. <?php elseif($v['status']==2):?>
  90. <button type="button" class="btn btn-link btn-xs" onclick="rightSettlement(<?= $v['id']?>)">确认结算</button>
  91. <?php endif;?>
  92. <?php if($v['status']==1 ||$v['status']==2 ||$v['status']==3 ||$v['status']==4):?>
  93. <button type="button" class="btn btn-link btn-xs" onclick="downloadBill(<?= $v['id']?>)">下载账单</button>
  94. <?php endif;?>
  95. </div>
  96. </td>
  97. </tr>
  98. <?php endforeach;?>
  99. <?php else:?>
  100. <tr style="text-align: center;">
  101. <td style="color: #666;" colspan="9">无查询结果</td>
  102. </tr>
  103. <?php endif;?>
  104. </tbody>
  105. </table>
  106. </div>
  107. <!--页码信息-->
  108. <div id="page_size_d" total_row="<?php echo $page['total_row']; ?>" total_page="<?php echo $page['total_page']; ?>">
  109. <span class="page_size">每页条数</span>
  110. <select id="page_size" onchange="changePageSize(this)">
  111. <?php foreach ($page_size_arr as $key => $vel) {
  112. if ($vel == $page_size) {
  113. echo '<option value="' . $vel . '" selected=selected>' . $vel . '</option>';
  114. } else {
  115. echo '<option value="' . $vel . '">' . $vel . '</option>';
  116. }
  117. } ?>
  118. </select>
  119. </div>
  120. <div id="page_list">
  121. <?php
  122. if (count($page_arr) > 0) {
  123. foreach ($page_arr as $key => $vel) {
  124. if ($page['current_page'] == 1 && ($vel == '首页' || $vel == '<上一页')) {
  125. $class = 'not_click';
  126. } elseif ($page['current_page'] == $vel) {
  127. $class = 'click';
  128. } elseif ($page['current_page'] == $page['total_page'] && ($vel == '末页' || $vel == '下一页>')) {
  129. $class = 'not_click';
  130. } elseif ($vel == '...') {
  131. $class = 'not_click';
  132. } else {
  133. $class = 'clickable';
  134. }
  135. if ($vel != '首页' && $vel != '<上一页' && $vel != '下一页>' && $vel != '末页') {
  136. $class = 'page_num ' . $class;
  137. }
  138. if ($class == 'clickable' || $class == 'page_num clickable') {
  139. echo '<span class="' . $class . '" onclick="pageSearchInfo(this,' . $page['total_page'] . ')">' . $vel . '</span>';
  140. } else {
  141. echo '<span class="' . $class . '">' . $vel . '</span>';
  142. }
  143. }
  144. }
  145. ?>
  146. <span class="total_row">共<?php echo $page['total_row']; ?>条</span>
  147. </div>
  148. <?php Pjax::end() ?>
  149. <div id="bank_info" style="width: 240px;height: 130px;position: absolute;z-index: 1;background-color: white;border: 1px solid darkgray;border-radius: 5px;padding: 15px 10px;font-size: 14px;display: none;">
  150. <div style="padding: 5px 0;">
  151. <span style="font-weight: 500;">结算周期</span><span id="cycle" style="margin-left: 20px;"></span>
  152. </div>
  153. <div style="padding: 5px 0;">
  154. <span style="font-weight: 500;">开户银行</span><span id="bank_name" style="margin-left: 20px;"></span>
  155. </div>
  156. <div style="padding: 5px 0;">
  157. <span style="font-weight: 500;">银行账户</span><span id="bank_id" style="margin-left: 20px;"></span>
  158. </div>
  159. <div style="padding: 5px 0;">
  160. <span style="font-weight: 500;">开户名称</span><span id="id_name" style="margin-left: 20px;"></span>
  161. </div>
  162. </div>
  163. </div>
  164. </div>