|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 张帅
- * PhpStorm statistical-from.php
- * Create By 2017/1/12 11:39 $
- */
-
- use backend\modules\zzcs\assets\ZzcsNewAsset2;
- use yii\widgets\Pjax;
- ZzcsNewAsset2::addCss($this, '/payment/css/cope_account_statement.css');
- ZzcsNewAsset2::addScript($this, '/global/js/jquery-2.2.4.min.js');
- ZzcsNewAsset2::addScript($this, '/global/js/jquery.cookie.js');
- ZzcsNewAsset2::addScript($this, '/gathering/js/tool.js?v=20171129');
- ZzcsNewAsset2::addScript($this, '/plug/layer/layer.js');
- ZzcsNewAsset2::addScript($this, '/plug/jqueryPage/jquery.page.js');
- ZzcsNewAsset2::addScript($this, '/payment/js/cope_account_statement.js?v=20171129');
- ?>
- <div class="iframe_box">
- <div class="dis_search">
- <div class="form-inline search_first">
- <span class="search_name">供应商:</span>
- <select class="select_screen" id="org_list">
- <option value="0">请选择</option>
- <?php foreach ($supplier_list as $v):?>
- <option value="<?php echo $v['org_id']?>"><?php echo $v['org_name']?></option>
- <?php endforeach;?>
- </select>
- <span class="search_name">对账单号:</span>
- <div class="form-group">
- <input type="text" class="form-control" style="width: 150px;" id="amount_id" placeholder="对账单号">
- </div>
- <span class="search_name">结算状态:</span>
- <select class="form-control" style="width: 100px;" id="status_type">
- <option value="0">请选择</option>
- <option value="1">待核对</option>
- <option value="2">待结算</option>
- <option value="3">已结算</option>
- <option value="4">已取消</option>
- </select>
- <div class="form-inline" id="btns" style="float: right; margin-right: 20px;">
- <button type="button" class="btn btn-primary float_r mar_r" onclick="searchDidClick()"><span class="glyphicon glyphicon-search"></span> 查询</button>
- </div>
- </div>
-
- </div>
- <?php Pjax::begin(['id' => 'main_table', 'timeout' => 30000000]) ?>
- <div role="tabpanel" class="tab-pane" id="div_order">
- <div class="table-responsive">
- <table class="table table-striped table-hover" style="table-layout: fixed;word-break: break-all;word-wrap: break-word;">
- <thead>
- <tr>
- <th width="95">结算账期</th>
- <th width="125">对账单号</th>
- <th width="85">结算方式</th>
- <th width="150">供应商名称</th>
- <th width="150">账单备注</th>
- <th width="70">采购成本</th>
- <th width="100">赔款</th>
- <th width="100">结算状态</th>
- <th width="120">操作</th>
- </tr>
- </thead>
- <tbody id="order_list">
- <?php if($list):?>
- <?php foreach ($list as $v):?>
- <tr dict='<?php echo json_encode($v)?>'>
- <td>
- <div><?php echo $v['start_date'] ?></div>
- <div><?php echo $v['end_date'] ?></div>
- </td>
- <td><?php echo $v['batch_id'] ?></td>
- <td><?php echo $v['sett_frequency'] ?></td>
- <td class="org_info"><?php echo $v['org_name'] ?></td>
- <td class="remark" onclick='changeRemark(<?php echo $v['id'].',"'.$v['remark'].'"';?>)'><?php echo $v['remark'] ?></td>
- <td><?php echo $v['price'] ?></td>
- <td><?php echo $v['reparations_price'] ?></td>
- <td><?php echo $v['status_des'] ?></td>
- <td>
- <div>
- <?php if($v['status']==1):?>
- <button type="button" class="btn btn-link btn-xs" onclick="rightCheck(<?= $v['id']?>)">确认核对</button>
- <button type="button" class="btn btn-link btn-xs" onclick="cancelBill(<?= $v['id']?>)">取消对账</button>
- <?php elseif($v['status']==2):?>
- <button type="button" class="btn btn-link btn-xs" onclick="rightSettlement(<?= $v['id']?>)">确认结算</button>
- <?php endif;?>
- <?php if($v['status']==1 ||$v['status']==2 ||$v['status']==3 ||$v['status']==4):?>
- <button type="button" class="btn btn-link btn-xs" onclick="downloadBill(<?= $v['id']?>)">下载账单</button>
- <?php endif;?>
- </div>
- </td>
- </tr>
- <?php endforeach;?>
- <?php else:?>
- <tr style="text-align: center;">
- <td style="color: #666;" colspan="9">无查询结果</td>
- </tr>
- <?php endif;?>
- </tbody>
- </table>
- </div>
- <!--页码信息-->
- <div id="page_size_d" total_row="<?php echo $page['total_row']; ?>" total_page="<?php echo $page['total_page']; ?>">
- <span class="page_size">每页条数</span>
- <select id="page_size" onchange="changePageSize(this)">
- <?php foreach ($page_size_arr as $key => $vel) {
- if ($vel == $page_size) {
- echo '<option value="' . $vel . '" selected=selected>' . $vel . '</option>';
- } else {
- echo '<option value="' . $vel . '">' . $vel . '</option>';
- }
- } ?>
- </select>
- </div>
- <div id="page_list">
- <?php
- if (count($page_arr) > 0) {
- foreach ($page_arr as $key => $vel) {
- if ($page['current_page'] == 1 && ($vel == '首页' || $vel == '<上一页')) {
- $class = 'not_click';
- } elseif ($page['current_page'] == $vel) {
- $class = 'click';
- } elseif ($page['current_page'] == $page['total_page'] && ($vel == '末页' || $vel == '下一页>')) {
- $class = 'not_click';
- } elseif ($vel == '...') {
- $class = 'not_click';
- } else {
- $class = 'clickable';
- }
- if ($vel != '首页' && $vel != '<上一页' && $vel != '下一页>' && $vel != '末页') {
- $class = 'page_num ' . $class;
- }
- if ($class == 'clickable' || $class == 'page_num clickable') {
- echo '<span class="' . $class . '" onclick="pageSearchInfo(this,' . $page['total_page'] . ')">' . $vel . '</span>';
- } else {
- echo '<span class="' . $class . '">' . $vel . '</span>';
- }
- }
- }
- ?>
- <span class="total_row">共<?php echo $page['total_row']; ?>条</span>
- </div>
- <?php Pjax::end() ?>
- <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;">
- <div style="padding: 5px 0;">
- <span style="font-weight: 500;">结算周期</span><span id="cycle" style="margin-left: 20px;"></span>
- </div>
- <div style="padding: 5px 0;">
- <span style="font-weight: 500;">开户银行</span><span id="bank_name" style="margin-left: 20px;"></span>
- </div>
- <div style="padding: 5px 0;">
- <span style="font-weight: 500;">银行账户</span><span id="bank_id" style="margin-left: 20px;"></span>
- </div>
- <div style="padding: 5px 0;">
- <span style="font-weight: 500;">开户名称</span><span id="id_name" style="margin-left: 20px;"></span>
- </div>
- </div>
- </div>
- </div>
|