123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>赛亿销售统计</title>
- <link rel="stylesheet" href="/static/css/base.css">
- <link rel="stylesheet" href="/static/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/css/index.css">
- <script src="/static/js/jquery.min.js"></script>
- <script src="/static/js/bootstrap.min.js"></script>
- <style type="text/css">
- @media print {
- .noprint {
- display: none;
- }
- input {
- border: none;
- }
- }
- </style>
- </head>
- <body>
- <div class="wrap container">
- <div class="header">
- <span><img src="/img/logo.jpg" alt=""></span>
- <span>北京赛亿科技有限公司</span>
- </div>
- <div class="aside">
- <div class="col-md-12 lin-height text_center"><a href="/index">提成汇总</a></div>
- <div class="col-md-12 lin-height text_center"><a href="/index/commission">计提数据录入</a></div>
- <div class="col-md-12 lin-height text_center"><a href="/index/seller">销售员管理</a></div>
- <div class="col-md-12 lin-height text_center"><a href="/index/company">销售单位管理</a></div>
- </div>
-
- <div class="content">
- <div class="time row">
- <div class="col-md-3 noprint">
- 请选择月份 :
- <select name="select_time" id="select_time">
- <?php
- foreach ($maonth_picker->monarr as $value) {
- if ($maonth_picker->cur_month == $value) {
- echo "<option value='$value' selected>$value</option>";
- } else {
- echo "<option value='$value'>$value</option>";
- }
- }
- ?>
- </select>
- </div>
- <div class="col-md-5 text_center">
- <h4><?php echo $maonth_picker->cur_month; ?>份提成汇总表</h4>
- </div>
- <div class="col-md-2 noprint" style="text-align:right;">
- <div class="btn-group ">
- <button type="button" class="btn btn-default" onclick=" doPrint()">打印</button>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-md-10 ">
- <table class=" table table-hover table-bordered">
- <thead>
- <tr>
- <th>序 号</th>
- <th>销售员</th>
- <th>其他业务费</th>
- <th>总利润</th>
- <th>提成比例</th>
- <th>提成金额</th>
- <th>特批</th>
- <th>提成比例</th>
- <th>提成金额</th>
- <th>历史欠款</th>
- <th>合 计</th>
- <th>备 注</th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($data as $value) {
- ?>
- <tr>
- <td><?php echo $value['id']; ?></td>
- <td><?php echo $value['name']; ?></td>
- <td><?php echo $value['other_expenses'] ? $value['other_expenses'] : 0; ?></td>
- <td><?php echo $value['total_profit'] ? $value['total_profit'] : 0; ?></td>
- <td><?php echo $value['c_rate'] * 100 . '%'; ?></td>
- <td><?php echo $value['c_money']; ?></td>
- <td><?php echo $value['tepi']; ?></td>
- <td><?php echo $value['t_rate'] * 100 . '%'; ?></td>
- <td><?php echo $value['t_money']; ?></td>
- <td><?php echo $value['overdraft'] ? $value['overdraft'] : 0; ?></td>
- <td><?php echo $value['s_money']; ?></td>
- <td><?php echo $value['remark']; ?></td>
-
- <?php echo $value['name']; ?></a></td> -->
- </tr>
- <?php
- }
- ?>
- <tr>
- <td colspan='2' style="text-align: center;font-weight:bold;">合计</td>
- <td><?php echo $total['other_expenses'];?></td>
- <td><?php echo $total['total_profit'];?></td>
- <td>25%</td>
- <td><?php echo $total['c_money'];?></td>
- <td><?php echo $total['tepi'];?></td>
- <td>100%</td>
- <td><?php echo $total['t_money'];?></td>
- <td></td>
- <td><?php echo $total['s_money'];?></td>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div style="margin-left:50px;">
- <div class="row" style="margin:0 auto;">
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">制表:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">复核:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">审批:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">制表:</span>
- </div>
- <div class="row" style="margin:0 auto;">
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">日期:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">日期:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">日期:</span>
- <span class="col-md-1" style="line-height: 40px;margin-right:50px;">日期:</span>
- </div>
- </div>
- </div>
-
- </div>
-
- <div class="modal fade" id="loading" tabindex="-1" role="dialog" aria-labelledby="myModalLabelLoading" aria-hidden="true" style="top: 200px;">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h4 class="modal-title" id="myModalLabelLoading">提示</h4>
- </div>
- <div class="modal-body">
- 系统初始化中, 请稍候。。。<span id="resultLoading" style="color:red;"></span>
- </div>
- </div>
- </div>
- </div>
- <script src="/static/js/init.js"></script>
- <script>
- init();
- function doPrint() {
- var bdhtml = window.document.body.innerHTML;
- var startprint = "<!--startprint-->";
- var endprint = "<!--endprint-->";
- prnhtml = bdhtml.substr(bdhtml.indexOf(startprint) + 17, bdhtml.indexOf(endprint));
- window.document.body.innerHTML = prnhtml;
- window.print();
- }
- $("#select_time").change(function() {
- var select_time = $("#select_time").val();
- window.location.href = "/index.php?select_time=" + select_time;
- })
-
- function modify(obj) {
- var su_id = $(obj).data("su_id")
- var seller = $(obj).data("seller");
- var other_expenses = $(obj).data("other_expenses");
- var overdraft = $(obj).data("overdraft");
- $("#su_id").val(su_id);
- $("#seller").val(seller);
- $("#other_expenses").val(other_expenses);
- $("#overdraft").val(overdraft);
- $("#myModal").modal("show");
- }
- $("#tj").click(function() {
- var data = {
- "id": Number($("#su_id").val()),
- "name": $("#seller").val(),
- "month": $("#month").val(),
- "other_expenses": Number($("#other_expenses").val()),
- "overdraft": Number($("#overdraft").val()),
- }
- console.log(data);
-
- $.post('/dosummary.php', data, function(res) {
- if (res.code == 0) {
- window.location.reload();
- } else {
- alert(res.msg);
- }
- }, 'json');
- })
- </script>
- </body>
- </html>
|