Explorar el Código

fleat: rebate

igb hace 1 día
padre
commit
313cd9801b
Se han modificado 6 ficheros con 1654 adiciones y 0 borrados
  1. 89 0
      get_rebate_details.php
  2. 1 0
      panel.php
  3. 522 0
      rebate_history.php
  4. 408 0
      rebate_redeem.php
  5. 89 0
      rebate_redeem_save.php
  6. 545 0
      rebate_summary.php

+ 89 - 0
get_rebate_details.php

@@ -0,0 +1,89 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+header('Content-Type: application/json');
+
+// 获取返点兑换ID
+$redemptionId = isset($_GET['redemption_id']) ? intval($_GET['redemption_id']) : 0;
+
+if ($redemptionId <= 0) {
+    echo json_encode(['success' => false, 'message' => '无效的兑换ID']);
+    exit;
+}
+
+// 验证权限
+$employee_id = $_SESSION['employee_id'];
+$isAdmin = checkIfAdmin();
+
+// 获取返点兑换详情
+$sql = "SELECT 
+            rri.id,
+            rri.order_id,
+            rri.order_item_id,
+            rri.product_id,
+            rri.quantity,
+            rri.rebate_amount,
+            p.ProductName AS product_name,
+            o.order_code,
+            oi.unit
+        FROM 
+            rebate_redemption_items rri
+        JOIN 
+            products p ON rri.product_id = p.id
+        JOIN 
+            orders o ON rri.order_id = o.id
+        JOIN 
+            order_items oi ON rri.order_item_id = oi.id
+        JOIN
+            rebate_redemptions rr ON rri.redemption_id = rr.id
+        JOIN
+            customer c ON rr.customer_id = c.id
+        WHERE 
+            rri.redemption_id = ?";
+
+// 非管理员只能查看自己客户的数据
+if (!$isAdmin) {
+    $sql .= " AND c.cs_belong = $employee_id";
+}
+
+$sql .= " ORDER BY o.order_code, p.ProductName";
+
+// 使用预处理语句防止SQL注入
+$stmt = $conn->prepare($sql);
+$stmt->bind_param("i", $redemptionId);
+$stmt->execute();
+$result = $stmt->get_result();
+
+if (!$result) {
+    echo json_encode(['success' => false, 'message' => '查询失败: ' . $conn->error]);
+    exit;
+}
+
+// 获取所有返点项目
+$items = [];
+while ($row = $result->fetch_assoc()) {
+    // 计算每项的总返点金额
+    $totalRebate = $row['quantity'] * $row['rebate_amount'];
+    
+    $items[] = [
+        'id' => $row['id'],
+        'order_id' => $row['order_id'],
+        'order_code' => $row['order_code'],
+        'product_id' => $row['product_id'],
+        'product_name' => htmlspecialcharsFix($row['product_name']),
+        'quantity' => $row['quantity'],
+        'unit' => $row['unit'],
+        'rebate_amount' => number_format($row['rebate_amount'], 2),
+        'total_rebate' => number_format($totalRebate, 2)
+    ];
+}
+
+// 返回JSON数据
+echo json_encode([
+    'success' => true,
+    'redemption_id' => $redemptionId,
+    'items' => $items,
+    'count' => count($items)
+]);
+?> 

+ 1 - 0
panel.php

@@ -44,6 +44,7 @@ $stmt->close();
             <?php endif; ?>
             <dt><a href="../customerAdd.php" target="contentFrame">客户录入</a></dt>
             <!-- <dt><a href="relationships.php" target="contentFrame">客户关系</a></dt> -->
+            <dt><a href="../rebate_summary.php" target="contentFrame">返点兑换</a></dt>
             <dt><a href="../order.php" target="contentFrame">订单管理</a></dt>
             <dt id="myCustomer" class="subnav">我的客户
                 <div class="list-wraper">

+ 522 - 0
rebate_history.php

@@ -0,0 +1,522 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 辅助函数
+$urlStr = '';
+
+// 处理筛选条件
+$fliterFromDate = $_GET['fliterFromDate'] ?? '';
+$fliterToDate = $_GET['fliterToDate'] ?? '';
+
+$fliterStr = "";
+
+if (!empty($fliterFromDate)) {
+    $fliterStr .= " AND rr.redemption_date >= '" . mysqli_real_escape_string($conn, $fliterFromDate) . "'";
+    $urlStr .= "&fliterFromDate=" . urlencode($fliterFromDate);
+}
+
+if (!empty($fliterToDate)) {
+    $fliterStr .= " AND rr.redemption_date <= '" . mysqli_real_escape_string($conn, $fliterToDate) . " 23:59:59'";
+    $urlStr .= "&fliterToDate=" . urlencode($fliterToDate);
+}
+
+// 搜索参数
+$keys = $_GET['Keys'] ?? '';
+$keyscode = mysqli_real_escape_string($conn, $keys);
+$page = isset($_GET['Page']) ? intval($_GET['Page']) : 1;
+
+// 构建基本条件SQL
+$employee_id = $_SESSION['employee_id'];
+$isAdmin = checkIfAdmin();
+
+// 基础查询,计算总记录数
+$countSql = "SELECT COUNT(*) AS total 
+             FROM rebate_redemptions rr
+             JOIN customer c ON rr.customer_id = c.id
+             WHERE 1=1";
+
+// 非管理员只能查看自己客户的返点历史
+if (!$isAdmin) {
+    $countSql .= " AND c.cs_belong = $employee_id";
+}
+
+// 添加搜索条件
+if (!empty($keyscode)) {
+    $countSql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
+}
+
+// 添加日期筛选
+$countSql .= $fliterStr;
+
+// 执行查询获取总记录数
+$countResult = mysqli_query($conn, $countSql);
+if (!$countResult) {
+    die("查询记录数量错误: " . mysqli_error($conn));
+}
+$countRow = mysqli_fetch_assoc($countResult);
+$totalRecords = $countRow['total'];
+
+// 设置每页显示记录数和分页
+$pageSize = 20;
+
+// 计算总页数
+$totalPages = ceil($totalRecords / $pageSize);
+if ($totalPages < 1) $totalPages = 1;
+
+// 验证当前页码
+if ($page < 1) $page = 1;
+if ($page > $totalPages) $page = $totalPages;
+
+// 计算起始记录
+$offset = ($page - 1) * $pageSize;
+
+// 查询返点兑换历史记录
+$sql = "SELECT 
+            rr.id AS redemption_id,
+            rr.customer_id,
+            c.cs_code,
+            c.cs_company AS customer_name,
+            rr.redemption_date,
+            rr.total_rebate_amount,
+            rr.notes,
+            rr.status,
+            e.em_user AS employee_name,
+            (SELECT COUNT(DISTINCT product_id) FROM rebate_redemption_items WHERE redemption_id = rr.id) AS product_count
+        FROM 
+            rebate_redemptions rr
+        JOIN 
+            customer c ON rr.customer_id = c.id
+        LEFT JOIN
+            employee e ON rr.created_by = e.id
+        WHERE 
+            1=1";
+
+// 非管理员只能查看自己客户的返点历史
+if (!$isAdmin) {
+    $sql .= " AND c.cs_belong = $employee_id";
+}
+
+// 添加搜索条件
+if (!empty($keyscode)) {
+    $sql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
+}
+
+// 添加日期筛选
+$sql .= $fliterStr;
+
+// 添加排序和分页
+$sql .= " ORDER BY rr.redemption_date DESC, rr.id DESC LIMIT $offset, $pageSize";
+
+$result = mysqli_query($conn, $sql);
+if (!$result) {
+    die("查询返点历史错误: " . mysqli_error($conn));
+}
+
+// 获取返点历史记录
+$redemptions = [];
+while ($row = mysqli_fetch_assoc($result)) {
+    $redemptions[] = $row;
+}
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>客户返点历史</title>
+    <link rel="stylesheet" href="css/common.css" type="text/css" />
+    <link rel="stylesheet" href="css/alert.css" type="text/css" />
+    <script src="js/jquery-1.7.2.min.js"></script>
+    <script src="js/js.js"></script>
+    <style>
+        body {
+            margin: 0;
+            padding: 20px;
+            background: #fff;
+        }
+        #man_zone {
+            margin-left: 0;
+        }
+        
+        /* 表格布局 */
+        .table2 {
+            width: 100%;
+        }
+        
+        .theader, .tline {
+            display: flex;
+            flex-direction: row;
+            align-items: center;
+            width: 100%;
+            border-bottom: 1px solid #ddd;
+        }
+        
+        .theader {
+            background-color: #f2f2f2;
+            font-weight: bold;
+            height: 40px;
+        }
+        
+        .tline {
+            height: 45px;
+        }
+        
+        .tline:hover {
+            background-color: #f5f5f5;
+        }
+        
+        .col1 { width: 5%; text-align: center; }
+        .col2 { width: 15%; }
+        .col3 { width: 20%; }
+        .col4 { width: 12%; text-align: center; }
+        .col5 { width: 10%; text-align: center; }
+        .col6 { width: 15%; text-align: right; }
+        .col7 { width: 10%; text-align: center; }
+        .col8 { width: 13%; text-align: center; }
+
+        /* 表格布局修复 */
+        .table2 .col1 { width: 5%; text-align: center; }
+        .table2 .col2 { width: 15%; }
+        .table2 .col3 { width: 20%; }
+        .table2 .col4 { width: 12%; text-align: center; }
+        .table2 .col5 { width: 10%; text-align: center; }
+        .table2 .col6 { width: 15%; text-align: right; }
+        .table2 .col7 { width: 10%; text-align: center; }
+        .table2 .col8 { width: 13%; text-align: center; }
+
+        .theader > div, .tline > div {
+            padding: 0 5px;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            white-space: nowrap;
+        }
+        
+        /* 日期选择器样式 */
+        .date-input {
+            padding: 5px;
+            border: 1px solid #ccc;
+            border-radius: 3px;
+        }
+        
+        /* 滑动面板样式 */
+        .rb-slidepanel {
+            cursor: pointer;
+        }
+        
+        .rb-slidepanel.open {
+            font-weight: bold;
+            color: #3366cc;
+        }
+        
+        .notepanel {
+            display: none;
+            background: #f9f9f9;
+            padding: 10px;
+            border: 1px solid #eee;
+            margin-bottom: 10px;
+        }
+        
+        .notepanel .noteItem {
+            font-weight: bold;
+            margin-bottom: 5px;
+        }
+        
+        .rebate-details {
+            margin-top: 10px;
+            border-top: 1px dashed #ddd;
+            padding-top: 10px;
+        }
+        
+        /* 状态样式 */
+        .status-active {
+            color: #27ae60;
+            font-weight: bold;
+        }
+        
+        .status-cancelled {
+            color: #e74c3c;
+            text-decoration: line-through;
+        }
+        
+        /* 备注文本溢出控制 */
+        .notes-text {
+            max-width: 200px;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            display: inline-block;
+        }
+    </style>
+</head>
+<body>
+<div id="man_zone">
+    <div class="fastSelect clear">
+        <H1>客户返点历史查询</H1>
+        <div class="selectItem">
+            <label>兑换日期</label>
+            <input type="date" name="fliterFromDate" class="date-input filterSearch" value="<?= $fliterFromDate ?>">
+            <label>到</label>
+            <input type="date" name="fliterToDate" class="date-input filterSearch" value="<?= $fliterToDate ?>">
+        </div>
+        <div class="inputSearch">
+            <input type="text" id="keys" class="inputTxt" placeholder="请输入客户名称或编码"
+                value="<?= empty($keyscode) ? '' : $keyscode ?>" />
+            <input type="button" id="searchgo" class="searchgo" value="搜索"
+                onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
+            <a href="rebate_summary.php" class="btn1" style="float: right; display: inline-block; padding: 5px 15px; margin-top: 0; line-height: 22px; height: 22px;">返回返点统计</a>
+        </div>
+    </div>
+
+    <div class="table2 em<?= $_SESSION['employee_id'] ?>">
+        <div class="theader">
+            <div class="col1">序号</div>
+            <div class="col2">客户编码</div>
+            <div class="col3">客户名称</div>
+            <div class="col4">兑换日期</div>
+            <div class="col5">产品数</div>
+            <div class="col6">返点金额</div>
+            <div class="col7">处理人</div>
+            <div class="col8">操作</div>
+        </div>
+
+        <?php
+        if (!empty($redemptions)) {
+            $tempNum = ($page - 1) * $pageSize;
+            foreach ($redemptions as $redemption) {
+                $tempNum++;
+                $statusClass = $redemption['status'] == 1 ? 'status-active' : 'status-cancelled';
+                ?>
+                <div class="tline">
+                    <div class="col1"><?= $tempNum ?></div>
+                    <div class="col2"><?= htmlspecialcharsFix($redemption['cs_code']) ?></div>
+                    <div class="col3 rb-slidepanel" data-id="<?= $redemption['redemption_id'] ?>"><?= htmlspecialcharsFix($redemption['customer_name']) ?></div>
+                    <div class="col4"><?= date('Y-m-d', strtotime($redemption['redemption_date'])) ?></div>
+                    <div class="col5"><?= $redemption['product_count'] ?></div>
+                    <div class="col6 <?= $statusClass ?>"><?= number_format($redemption['total_rebate_amount'], 2) ?> 元</div>
+                    <div class="col7"><?= htmlspecialcharsFix($redemption['employee_name']) ?></div>
+                    <div class="col8">
+                        <a href="javascript:void(0)" class="rb-toggleDetail" data-id="<?= $redemption['redemption_id'] ?>">查看详情</a>
+                    </div>
+                </div>
+                <div class="notepanel clear" id="detail-<?= $redemption['redemption_id'] ?>">
+                    <div class="noteItem">返点详情</div>
+                    <?php if (!empty($redemption['notes'])): ?>
+                    <div style="margin-bottom: 10px; color: #666;">
+                        <strong>备注:</strong> <?= htmlspecialcharsFix($redemption['notes']) ?>
+                    </div>
+                    <?php endif; ?>
+                    <div class="rebate-details" id="rebate-details-<?= $redemption['redemption_id'] ?>">
+                        <div style="text-align: center; padding: 10px;">
+                            <img src="images/loading.gif" alt="加载中" style="width: 20px; height: 20px;">
+                            加载返点详情...
+                        </div>
+                    </div>
+                </div>
+                <?php
+            }
+        } else {
+            if (empty($keys) && empty($fliterStr)) {
+                echo '<div class="tline"><div style="width: 100%; text-align: center;">当前没有返点历史记录</div></div>';
+            } else {
+                echo '<div class="tline"><div style="width: 100%; text-align: center;"><a href="?">没有找到匹配的返点历史记录,点击返回</a></div></div>';
+            }
+        }
+        ?>
+
+        <div class="showpagebox">
+            <?php
+            if ($totalPages > 1) {
+                $pageName = "?Keys=$keys$urlStr&";
+                $pageLen = 3;
+
+                if ($page > 1) {
+                    echo "<a href=\"{$pageName}Page=1\">首页</a>";
+                    echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
+                }
+
+                if ($pageLen * 2 + 1 >= $totalPages) {
+                    $startPage = 1;
+                    $endPage = $totalPages;
+                } else {
+                    if ($page <= $pageLen + 1) {
+                        $startPage = 1;
+                        $endPage = $pageLen * 2 + 1;
+                    } else {
+                        $startPage = $page - $pageLen;
+                        $endPage = $page + $pageLen;
+                    }
+                    if ($page + $pageLen > $totalPages) {
+                        $startPage = $totalPages - $pageLen * 2;
+                        $endPage = $totalPages;
+                    }
+                }
+
+                for ($i = $startPage; $i <= $endPage; $i++) {
+                    if ($i == $page) {
+                        echo "<a class=\"current\">$i</a>";
+                    } else {
+                        echo "<a href=\"{$pageName}Page=$i\">$i</a>";
+                    }
+                }
+
+                if ($page < $totalPages) {
+                    if ($totalPages - $page > $pageLen) {
+                        echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
+                    }
+                    echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
+                    echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
+                }
+            }
+            ?>
+        </div>
+    </div>
+
+    <script>
+    $(document).ready(function() {
+        // 添加日期验证逻辑
+        $('input[name="fliterToDate"]').on('change', function() {
+            var fromDate = $('input[name="fliterFromDate"]').val();
+            var toDate = $(this).val();
+            
+            if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
+                alert('结束日期不能早于开始日期');
+                $(this).val(''); // 清空结束日期
+                return false;
+            }
+        });
+        
+        // 开始日期变更时也进行验证
+        $('input[name="fliterFromDate"]').on('change', function() {
+            var fromDate = $(this).val();
+            var toDate = $('input[name="fliterToDate"]').val();
+            
+            if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
+                alert('开始日期不能晚于结束日期');
+                $('input[name="fliterToDate"]').val(''); // 清空结束日期
+                return false;
+            }
+        });
+
+        // 处理筛选条件改变
+        $('.filterSearch').change(function() {
+            var url = '?';
+            var keys = $('#keys').val();
+            if (keys && keys != '请输入客户名称或编码') {
+                url += 'Keys=' + encodeURIComponent(keys) + '&';
+            }
+
+            $('.filterSearch').each(function() {
+                var name = $(this).attr('name');
+                var value = $(this).val();
+                if (value) {
+                    url += name + '=' + encodeURIComponent(value) + '&';
+                }
+            });
+
+            // 移除末尾的&
+            if (url.endsWith('&')) {
+                url = url.substring(0, url.length - 1);
+            }
+
+            location.href = url;
+        });
+        
+        // 切换显示返点详情
+        $('.rb-toggleDetail').on('click', function(e) {
+            e.preventDefault();
+            e.stopPropagation(); // 阻止事件冒泡
+            var redemptionId = $(this).data('id');
+            var $detailPanel = $('#detail-' + redemptionId);
+            var $panel = $(this);
+            
+            if ($detailPanel.is(':visible')) {
+                $detailPanel.slideUp();
+                $panel.text('查看详情');
+                // 移除打开状态
+                $panel.closest('.tline').find('.rb-slidepanel').removeClass('open');
+            } else {
+                $detailPanel.slideDown();
+                $panel.text('收起详情');
+                // 添加打开状态
+                $panel.closest('.tline').find('.rb-slidepanel').addClass('open');
+                
+                // 加载详情数据
+                loadRedemptionDetails(redemptionId);
+            }
+        });
+        
+        // 客户名称点击也可以切换显示
+        $('.rb-slidepanel').on('click', function(e) {
+            e.preventDefault();
+            e.stopPropagation(); // 阻止事件冒泡
+            var redemptionId = $(this).data('id');
+            var $detailPanel = $('#detail-' + redemptionId);
+            var $toggleButton = $('.rb-toggleDetail[data-id="' + redemptionId + '"]');
+            
+            if ($detailPanel.is(':visible')) {
+                $detailPanel.slideUp();
+                $toggleButton.text('查看详情');
+                $(this).removeClass('open');
+            } else {
+                $detailPanel.slideDown();
+                $toggleButton.text('收起详情');
+                $(this).addClass('open');
+                
+                // 加载详情数据
+                loadRedemptionDetails(redemptionId);
+            }
+        });
+        
+        // 加载返点详情
+        function loadRedemptionDetails(redemptionId) {
+            var $detailsContainer = $('#rebate-details-' + redemptionId);
+            
+            // 检查是否已经加载过
+            if ($detailsContainer.data('loaded')) {
+                return;
+            }
+            
+            // 异步加载详情
+            $.ajax({
+                url: 'get_rebate_details.php',
+                type: 'GET',
+                data: { redemption_id: redemptionId },
+                dataType: 'json',
+                success: function(data) {
+                    if (data && data.success) {
+                        var html = '<table class="detail-table" style="width:100%; border-collapse: collapse;">';
+                        html += '<tr style="background-color: #eee; font-weight: bold;">' +
+                                '<th style="padding: 8px; text-align: left; border: 1px solid #ddd;">订单编号</th>' +
+                                '<th style="padding: 8px; text-align: left; border: 1px solid #ddd;">产品名称</th>' +
+                                '<th style="padding: 8px; text-align: center; border: 1px solid #ddd;">数量</th>' +
+                                '<th style="padding: 8px; text-align: right; border: 1px solid #ddd;">返点单价</th>' +
+                                '<th style="padding: 8px; text-align: right; border: 1px solid #ddd;">返点金额</th>' +
+                                '</tr>';
+                                
+                        $.each(data.items, function(i, item) {
+                            html += '<tr style="border-bottom: 1px solid #ddd;">' +
+                                   '<td style="padding: 8px; border: 1px solid #ddd;">' + item.order_code + '</td>' +
+                                   '<td style="padding: 8px; border: 1px solid #ddd;">' + item.product_name + '</td>' +
+                                   '<td style="padding: 8px; text-align: center; border: 1px solid #ddd;">' + item.quantity + ' ' + item.unit + '</td>' +
+                                   '<td style="padding: 8px; text-align: right; border: 1px solid #ddd;">' + item.rebate_amount + ' 元/件</td>' +
+                                   '<td style="padding: 8px; text-align: right; border: 1px solid #ddd;">' + item.total_rebate + ' 元</td>' +
+                                   '</tr>';
+                        });
+                        
+                        html += '</table>';
+                        $detailsContainer.html(html);
+                        $detailsContainer.data('loaded', true);
+                    } else {
+                        $detailsContainer.html('<div style="padding: 10px; color: #e74c3c;">加载详情失败: ' + (data.message || '未知错误') + '</div>');
+                    }
+                },
+                error: function(jqXHR, textStatus, errorThrown) {
+                    $detailsContainer.html('<div style="padding: 10px; color: #e74c3c;">加载详情失败: ' + textStatus + '</div>');
+                }
+            });
+        }
+    });
+    </script>
+</div>
+</body>
+</html> 

+ 408 - 0
rebate_redeem.php

@@ -0,0 +1,408 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 获取客户ID
+$customerId = isset($_GET['customer_id']) ? intval($_GET['customer_id']) : 0;
+if ($customerId <= 0) {
+    echo "<script>alert('请选择一个有效的客户'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+
+// 获取客户信息
+$customerQuery = $conn->query("SELECT c.id, c.cs_code, c.cs_company 
+                              FROM customer c 
+                              WHERE c.id = " . $customerId);
+if (!$customerQuery || $customerQuery->num_rows == 0) {
+    echo "<script>alert('找不到指定的客户'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+$customerInfo = $customerQuery->fetch_assoc();
+
+// 获取可兑换的返点信息 - 从订单项目中获取
+$rebateQuery = "
+SELECT 
+    o.id AS order_id,
+    o.order_code,
+    o.order_date,
+    oi.id AS order_item_id,
+    oi.product_id,
+    p.ProductName,
+    oi.quantity,
+    oi.unit,
+    (
+        SELECT rr.id
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+        AND rr.min_quantity <= (
+            SELECT SUM(oi2.quantity)
+            FROM order_items oi2
+            JOIN orders o2 ON oi2.order_id = o2.id
+            WHERE o2.customer_id = o.customer_id
+            AND oi2.product_id = oi.product_id
+            AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+            AND NOT EXISTS (
+                SELECT 1
+                FROM rebate_redemption_items rri
+                WHERE rri.order_item_id = oi2.id
+            )
+        )
+        ORDER BY rr.min_quantity DESC
+        LIMIT 1
+    ) AS rebate_rule_id,
+    (
+        SELECT rr.rebate_amount
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+        AND rr.min_quantity <= (
+            SELECT SUM(oi2.quantity)
+            FROM order_items oi2
+            JOIN orders o2 ON oi2.order_id = o2.id
+            WHERE o2.customer_id = o.customer_id
+            AND oi2.product_id = oi.product_id
+            AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+            AND NOT EXISTS (
+                SELECT 1
+                FROM rebate_redemption_items rri
+                WHERE rri.order_item_id = oi2.id
+            )
+        )
+        ORDER BY rr.min_quantity DESC
+        LIMIT 1
+    ) AS rebate_amount,
+    oi.quantity * (
+        SELECT rr.rebate_amount
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+        AND rr.min_quantity <= (
+            SELECT SUM(oi2.quantity)
+            FROM order_items oi2
+            JOIN orders o2 ON oi2.order_id = o2.id
+            WHERE o2.customer_id = o.customer_id
+            AND oi2.product_id = oi.product_id
+            AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+            AND NOT EXISTS (
+                SELECT 1
+                FROM rebate_redemption_items rri
+                WHERE rri.order_item_id = oi2.id
+            )
+        )
+        ORDER BY rr.min_quantity DESC
+        LIMIT 1
+    ) AS item_rebate_total
+FROM 
+    orders o
+JOIN 
+    order_items oi ON o.id = oi.order_id
+JOIN 
+    products p ON oi.product_id = p.id
+WHERE 
+    o.customer_id = $customerId
+    AND o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+    AND p.rebate = 1
+    AND NOT EXISTS (
+        SELECT 1
+        FROM rebate_redemption_items rri
+        WHERE rri.order_item_id = oi.id
+    )
+    -- 确保该订单项有返点规则可用
+    AND EXISTS (
+        SELECT 1
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+        AND rr.min_quantity <= (
+            SELECT SUM(oi2.quantity)
+            FROM order_items oi2
+            JOIN orders o2 ON oi2.order_id = o2.id
+            WHERE o2.customer_id = o.customer_id
+            AND oi2.product_id = oi.product_id
+            AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+            AND NOT EXISTS (
+                SELECT 1
+                FROM rebate_redemption_items rri
+                WHERE rri.order_item_id = oi2.id
+            )
+        )
+    )
+ORDER BY 
+    o.order_date DESC, p.ProductName ASC";
+
+$rebateResult = $conn->query($rebateQuery);
+if (!$rebateResult) {
+    echo "<script>alert('获取返点信息失败: " . $conn->error . "'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+
+// 计算总返点金额
+$totalRebateAmount = 0;
+$rebateItems = [];
+while ($row = $rebateResult->fetch_assoc()) {
+    $rebateItems[] = $row;
+    $totalRebateAmount += floatval($row['item_rebate_total']);
+}
+
+// 如果没有可兑换的返点,返回列表页
+if (count($rebateItems) == 0) {
+    echo "<script>alert('该客户当前没有可兑换的返点'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>返点兑换</title>
+    <link rel="stylesheet" href="css/common.css" type="text/css" />
+    <link rel="stylesheet" href="css/alert.css" type="text/css" />
+    <script src="js/jquery-1.7.2.min.js"></script>
+    <script src="js/js.js"></script>
+    <style>
+        body {
+            margin: 0;
+            padding: 20px;
+            background: #fff;
+        }
+        #man_zone {
+            margin-left: 0;
+        }
+        .rebate-item-row {
+            position: relative;
+            padding: 12px 15px;
+            margin-bottom: 8px;
+            border-radius: 4px;
+            display: flex;
+            align-items: center;
+            flex-wrap: wrap;
+            gap: 15px;
+            background-color: #f9f9f9;
+            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+        }
+        .rebate-item-row:hover {
+            background-color: #f0f0f0;
+        }
+        .order-code {
+            flex: 1;
+            min-width: 100px;
+        }
+        .order-date {
+            flex: 1;
+            min-width: 120px;
+        }
+        .product-name {
+            flex: 2;
+            min-width: 150px;
+        }
+        .item-quantity {
+            flex: 0.8;
+            min-width: 80px;
+            text-align: center;
+        }
+        .rebate-rate {
+            flex: 0.8;
+            min-width: 100px;
+            text-align: right;
+        }
+        .item-total {
+            flex: 1;
+            min-width: 100px;
+            text-align: right;
+            font-weight: bold;
+            color: #e74c3c;
+        }
+        
+        .customer-info {
+            background-color: #f5f5f5;
+            padding: 15px;
+            border-radius: 5px;
+            margin-bottom: 20px;
+            border: 1px solid #ddd;
+            display: flex;
+            justify-content: space-between;
+            align-items: center;
+        }
+        .customer-info .customer-details {
+            flex: 1;
+        }
+        .customer-info h2 {
+            margin-top: 0;
+            margin-bottom: 10px;
+            font-size: 18px;
+            color: #333;
+        }
+        .customer-info p {
+            margin: 5px 0;
+            color: #555;
+        }
+        
+        .customer-info .actions {
+            text-align: right;
+        }
+        
+        .btn-history {
+            background-color: #3498db;
+            color: white;
+            border: none;
+            padding: 8px 16px;
+            font-size: 14px;
+            border-radius: 4px;
+            cursor: pointer;
+            text-decoration: none;
+            display: inline-block;
+        }
+        .btn-history:hover {
+            background-color: #2980b9;
+        }
+        
+        .list-header {
+            display: flex;
+            background-color: #eee;
+            padding: 10px 15px;
+            margin-bottom: 10px;
+            border-radius: 4px;
+            font-weight: bold;
+            color: #555;
+            font-size: 13px;
+            gap: 15px;
+        }
+        
+        .total-section {
+            margin-top: 20px;
+            padding: 15px;
+            background-color: #f5f5f5;
+            border-radius: 4px;
+            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+        }
+        
+        .btn-redeem {
+            background-color: #e74c3c;
+            color: white;
+            border: none;
+            padding: 10px 20px;
+            font-size: 16px;
+            border-radius: 4px;
+            cursor: pointer;
+            margin-top: 20px;
+        }
+        .btn-redeem:hover {
+            background-color: #c0392b;
+        }
+        
+        .btn-cancel {
+            background-color: #7f8c8d;
+            color: white;
+            border: none;
+            padding: 10px 20px;
+            font-size: 16px;
+            border-radius: 4px;
+            cursor: pointer;
+            margin-right: 10px;
+        }
+        .btn-cancel:hover {
+            background-color: #6c7a7a;
+        }
+        
+        .rebate-notes {
+            margin-top: 15px;
+            width: 100%;
+            padding: 8px;
+            border: 1px solid #ddd;
+            border-radius: 4px;
+            resize: vertical;
+            min-height: 60px;
+        }
+        
+        @media (max-width: 768px) {
+            .rebate-item-row {
+                flex-direction: column;
+                align-items: flex-start;
+            }
+            .list-header {
+                display: none;
+            }
+            .order-code, .order-date, .product-name, .item-quantity,
+            .rebate-rate, .item-total {
+                width: 100%;
+                min-width: 100%;
+                margin-bottom: 5px;
+            }
+        }
+    </style>
+</head>
+<body>
+<div id="man_zone">
+    <div class="customer-info">
+        <div class="customer-details">
+            <h2>客户返点兑换</h2>
+            <p><strong>客户编码:</strong> <?= htmlspecialcharsFix($customerInfo['cs_code']) ?></p>
+            <p><strong>客户名称:</strong> <?= htmlspecialcharsFix($customerInfo['cs_company']) ?></p>
+        </div>
+        <div class="actions">
+            <a href="rebate_history.php" class="btn-history">查看返点历史</a>
+        </div>
+    </div>
+    
+    <form name="redeemForm" id="redeemForm" method="post" action="rebate_redeem_save.php" onsubmit="return validateRedeemForm()">
+        <input type="hidden" name="customer_id" value="<?= $customerId ?>">
+        <input type="hidden" name="total_rebate_amount" id="total-rebate-amount" value="<?= $totalRebateAmount ?>">
+        
+        <div class="list-header">
+            <div class="order-code">订单编号</div>
+            <div class="order-date">订单日期</div>
+            <div class="product-name">产品名称</div>
+            <div class="item-quantity">数量</div>
+            <div class="rebate-rate">返点单价</div>
+            <div class="item-total">返点金额</div>
+        </div>
+        
+        <div id="rebate-items-container">
+            <?php foreach ($rebateItems as $index => $item): ?>
+            <div class="rebate-item-row">
+                <!-- 隐藏字段,所有项目都会被提交 -->
+                <input type="hidden" name="items[<?= $index ?>][selected]" value="1">
+                <input type="hidden" name="items[<?= $index ?>][order_id]" value="<?= $item['order_id'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][order_item_id]" value="<?= $item['order_item_id'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][product_id]" value="<?= $item['product_id'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][rebate_amount]" value="<?= $item['rebate_amount'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][rebate_rule_id]" value="<?= $item['rebate_rule_id'] ?>">
+                <input type="hidden" name="items[<?= $index ?>][item_rebate_total]" value="<?= $item['item_rebate_total'] ?>">
+                
+                <div class="order-code"><?= htmlspecialcharsFix($item['order_code']) ?></div>
+                <div class="order-date"><?= date('Y-m-d', strtotime($item['order_date'])) ?></div>
+                <div class="product-name"><?= htmlspecialcharsFix($item['ProductName']) ?></div>
+                <div class="item-quantity"><?= $item['quantity'] ?> <?= $item['unit'] ?></div>
+                <div class="rebate-rate"><?= number_format($item['rebate_amount'], 2) ?> 元/件</div>
+                <div class="item-total"><?= number_format($item['item_rebate_total'], 2) ?> 元</div>
+            </div>
+            <?php endforeach; ?>
+        </div>
+        
+        <div class="total-section">
+            <div style="display: flex; justify-content: space-between; align-items: center;">
+                <div>
+                    <label for="notes">兑换备注:</label>
+                    <textarea name="notes" id="notes" class="rebate-notes" placeholder="可选备注内容..."></textarea>
+                </div>
+                <div style="display: flex; flex-direction: column; align-items: flex-end;">
+                    <div style="font-size: 16px; margin-bottom: 10px;">
+                        <label>总返点金额:</label>
+                        <span id="total-rebate-display" style="font-size: 18px; font-weight: bold; color: #e74c3c;"><?= number_format($totalRebateAmount, 2) ?> 元</span>
+                    </div>
+                    <div>
+                        <button type="button" class="btn-cancel" onclick="window.location.href='rebate_summary.php'">取消</button>
+                        <button type="submit" class="btn-redeem">确认兑换</button>
+                    </div>
+                </div>
+            </div>
+        </div>
+    </form>
+
+    <script>
+    // 验证表单
+    function validateRedeemForm() {
+        return confirm('确定要兑换所有返点项目吗?此操作不可逆!');
+    }
+    </script>
+</div>
+</body>
+</html> 

+ 89 - 0
rebate_redeem_save.php

@@ -0,0 +1,89 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 防止非POST提交
+if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
+    echo "<script>alert('无效的请求方式'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+
+// 获取表单数据
+$customerId = isset($_POST['customer_id']) ? intval($_POST['customer_id']) : 0;
+$totalRebateAmount = isset($_POST['total_rebate_amount']) ? floatval($_POST['total_rebate_amount']) : 0;
+$notes = isset($_POST['notes']) ? mysqli_real_escape_string($conn, $_POST['notes']) : '';
+$items = isset($_POST['items']) ? $_POST['items'] : [];
+
+// 验证基本数据
+if ($customerId <= 0) {
+    echo "<script>alert('客户信息无效'); window.location.href='rebate_summary.php';</script>";
+    exit;
+}
+
+if ($totalRebateAmount <= 0) {
+    echo "<script>alert('返点总额必须大于零'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
+    exit;
+}
+
+if (empty($items)) {
+    echo "<script>alert('没有可兑换的返点项目'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
+    exit;
+}
+
+// 开始事务
+$conn->begin_transaction();
+
+try {
+    // 获取当前登录的员工ID
+    $employeeId = $_SESSION['employee_id'];
+    
+    // 1. 创建主兑换记录
+    $insertRedemption = "INSERT INTO rebate_redemptions 
+                        (customer_id, redemption_date, total_rebate_amount, status, notes, created_by) 
+                        VALUES (?, NOW(), ?, 1, ?, ?)";
+    $stmt = $conn->prepare($insertRedemption);
+    $stmt->bind_param("idsi", $customerId, $totalRebateAmount, $notes, $employeeId);
+    
+    if (!$stmt->execute()) {
+        throw new Exception("创建兑换记录失败: " . $stmt->error);
+    }
+    
+    $redemptionId = $conn->insert_id;
+    $stmt->close();
+    
+    // 2. 创建兑换明细记录
+    $insertItemStmt = $conn->prepare("INSERT INTO rebate_redemption_items 
+                                      (redemption_id, order_id, order_item_id, product_id, quantity, rebate_amount, rebate_rule_id) 
+                                      VALUES (?, ?, ?, ?, ?, ?, ?)");
+    
+    foreach ($items as $item) {
+        $orderId = intval($item['order_id']);
+        $orderItemId = intval($item['order_item_id']);
+        $productId = intval($item['product_id']);
+        $quantity = intval($item['quantity']);
+        $rebateAmount = floatval($item['item_rebate_total']);
+        $rebateRuleId = intval($item['rebate_rule_id']);
+        
+        $insertItemStmt->bind_param("iiiiidi", $redemptionId, $orderId, $orderItemId, $productId, $quantity, $rebateAmount, $rebateRuleId);
+        
+        if (!$insertItemStmt->execute()) {
+            throw new Exception("创建兑换明细记录失败: " . $insertItemStmt->error);
+        }
+    }
+    
+    $insertItemStmt->close();
+    
+    // 提交事务
+    $conn->commit();
+    
+    // 返回成功消息
+    echo "<script>alert('返点兑换成功!'); window.location.href='rebate_summary.php';</script>";
+    
+} catch (Exception $e) {
+    // 回滚事务
+    $conn->rollback();
+    
+    // 显示错误信息
+    echo "<script>alert('处理失败: " . addslashes($e->getMessage()) . "'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
+}
+?> 

+ 545 - 0
rebate_summary.php

@@ -0,0 +1,545 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 辅助函数
+$act = $_GET['act'] ?? '';
+$urlStr = '';
+
+// 处理筛选条件
+$fliterFromDate = $_GET['fliterFromDate'] ?? '';
+$fliterToDate = $_GET['fliterToDate'] ?? '';
+
+$fliterStr = "";
+
+if (!empty($fliterFromDate)) {
+    $fliterStr .= " AND o.order_date >= '" . mysqli_real_escape_string($conn, $fliterFromDate) . "'";
+    $urlStr .= "&fliterFromDate=" . urlencode($fliterFromDate);
+}
+
+if (!empty($fliterToDate)) {
+    $fliterStr .= " AND o.order_date <= '" . mysqli_real_escape_string($conn, $fliterToDate) . " 23:59:59'";
+    $urlStr .= "&fliterToDate=" . urlencode($fliterToDate);
+}
+
+// 搜索参数
+$keys = $_GET['Keys'] ?? '';
+$keyscode = mysqli_real_escape_string($conn, $keys);
+$page = $_GET['Page'] ?? 1;
+
+// 构建基本条件SQL - 这部分是两个查询共用的
+$employee_id = $_SESSION['employee_id'];
+$isAdmin = checkIfAdmin();
+
+// 步骤1:查询符合条件的客户ID列表
+$customerListSql = "SELECT DISTINCT o.customer_id
+FROM orders o
+JOIN order_items oi ON o.id = oi.order_id
+JOIN customer c ON o.customer_id = c.id
+JOIN products p ON oi.product_id = p.id
+WHERE 
+    o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+    AND p.rebate = 1
+    AND NOT EXISTS (
+        SELECT 1
+        FROM rebate_redemption_items rri
+        WHERE rri.order_item_id = oi.id
+    )
+    AND EXISTS (
+        SELECT 1
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+    )
+    AND (
+        SELECT SUM(oi2.quantity)
+        FROM order_items oi2
+        JOIN orders o2 ON oi2.order_id = o2.id
+        WHERE o2.customer_id = o.customer_id
+        AND oi2.product_id = oi.product_id
+        AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+        AND NOT EXISTS (
+            SELECT 1
+            FROM rebate_redemption_items rri
+            WHERE rri.order_item_id = oi2.id
+        )
+    ) >= (
+        SELECT MIN(rr.min_quantity)
+        FROM rebate_rules rr
+        WHERE rr.product_id = oi.product_id
+    )";
+
+// 非管理员只能查看自己的客户返点
+if (!$isAdmin) {
+    $customerListSql .= " AND c.cs_belong = $employee_id";
+}
+
+// 添加搜索条件
+if (!empty($keyscode)) {
+    $customerListSql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
+}
+
+// 添加日期筛选
+$customerListSql .= $fliterStr;
+
+// 执行查询获取客户ID列表
+$customerResult = mysqli_query($conn, $customerListSql);
+if (!$customerResult) {
+    die("查询客户列表错误: " . mysqli_error($conn));
+}
+
+// 获取客户ID并创建IN子句
+$customerIds = [];
+while ($row = mysqli_fetch_assoc($customerResult)) {
+    $customerIds[] = $row['customer_id'];
+}
+
+// 如果没有找到客户,设置一个不可能的ID以确保查询不返回任何结果
+if (empty($customerIds)) {
+    $customerIds = [-1]; // 不可能的ID
+}
+
+$customerIdsStr = implode(',', $customerIds);
+
+// 设置每页显示记录数和分页
+$pageSize = 20;
+$totalRecords = count($customerIds);
+
+// 计算总页数
+$totalPages = ceil($totalRecords / $pageSize);
+if ($totalPages < 1) $totalPages = 1;
+
+// 验证当前页码
+$page = (int)$page;
+if ($page < 1) $page = 1;
+if ($page > $totalPages) $page = $totalPages;
+
+// 计算起始记录
+$offset = ($page - 1) * $pageSize;
+
+// 步骤2:获取分页后的客户详细信息
+// 为防止表结构问题,使用更简单的SQL格式并明确使用id字段
+
+// 先获取客户基本信息
+$paginatedCustomerIds = array_slice($customerIds, $offset, $pageSize);
+if (empty($paginatedCustomerIds)) {
+    $paginatedCustomerIds = [-1]; // 确保不会有结果
+}
+$paginatedIdsStr = implode(',', $paginatedCustomerIds);
+
+$customerDetailSql = "
+SELECT 
+    c.id AS customer_id,
+    c.cs_company AS customer_name,
+    c.cs_code
+FROM 
+    customer c
+WHERE 
+    c.id IN ($paginatedIdsStr)";
+
+$result = mysqli_query($conn, $customerDetailSql);
+if (!$result) {
+    die("查询客户基本信息错误: " . mysqli_error($conn));
+}
+
+$customers = [];
+while ($row = mysqli_fetch_assoc($result)) {
+    $customers[$row['customer_id']] = $row;
+    $customers[$row['customer_id']]['total_rebate_amount'] = 0;
+    $customers[$row['customer_id']]['qualifying_products'] = 0;
+    $customers[$row['customer_id']]['rebate_details'] = '';
+}
+
+// 如果找到客户,获取每个客户的返点详情
+if (!empty($customers)) {
+    $customerIdsForDetails = array_keys($customers);
+    $customerIdsForDetailsStr = implode(',', $customerIdsForDetails);
+    
+    // 获取客户返点总金额和产品数量
+    $rebateDetailsSql = "
+    SELECT 
+        o.customer_id,
+        SUM(
+            oi.quantity * (
+                SELECT rr.rebate_amount
+                FROM rebate_rules rr
+                WHERE rr.product_id = oi.product_id
+                AND rr.min_quantity <= (
+                    SELECT SUM(oi2.quantity)
+                    FROM order_items oi2
+                    JOIN orders o2 ON oi2.order_id = o2.id
+                    WHERE o2.customer_id = o.customer_id
+                    AND oi2.product_id = oi.product_id
+                    AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+                    AND NOT EXISTS (
+                        SELECT 1
+                        FROM rebate_redemption_items rri
+                        WHERE rri.order_item_id = oi2.id
+                    )
+                )
+                ORDER BY rr.min_quantity DESC
+                LIMIT 1
+            )
+        ) AS total_rebate_amount,
+        COUNT(DISTINCT oi.product_id) AS qualifying_products
+    FROM 
+        orders o
+    JOIN 
+        order_items oi ON o.id = oi.order_id
+    JOIN
+        products p ON oi.product_id = p.id
+    WHERE 
+        o.customer_id IN ($customerIdsForDetailsStr)
+        AND o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+        AND p.rebate = 1
+        AND NOT EXISTS (
+            SELECT 1
+            FROM rebate_redemption_items rri
+            WHERE rri.order_item_id = oi.id
+        )
+    GROUP BY 
+        o.customer_id";
+    
+    $detailsResult = mysqli_query($conn, $rebateDetailsSql);
+    if (!$detailsResult) {
+        die("查询返点详情错误: " . mysqli_error($conn));
+    }
+    
+    // 填充总金额和产品数量
+    while ($detailRow = mysqli_fetch_assoc($detailsResult)) {
+        if (isset($customers[$detailRow['customer_id']])) {
+            $customers[$detailRow['customer_id']]['total_rebate_amount'] = $detailRow['total_rebate_amount'];
+            $customers[$detailRow['customer_id']]['qualifying_products'] = $detailRow['qualifying_products'];
+        }
+    }
+    
+    // 获取每个客户的产品返点详情
+    foreach ($customerIdsForDetails as $customerId) {
+        $productDetailsSql = "
+        SELECT 
+            p.ProductName,
+            SUM(oi.quantity) AS quantity,
+            (
+                SELECT rr.rebate_amount
+                FROM rebate_rules rr
+                WHERE rr.product_id = oi.product_id
+                AND rr.min_quantity <= SUM(oi.quantity)
+                ORDER BY rr.min_quantity DESC
+                LIMIT 1
+            ) AS rebate_amount
+        FROM 
+            order_items oi
+        JOIN 
+            orders o ON oi.order_id = o.id
+        JOIN 
+            products p ON oi.product_id = p.id
+        WHERE 
+            o.customer_id = $customerId
+            AND o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 60 DAY)
+            AND p.rebate = 1
+            AND NOT EXISTS (
+                SELECT 1
+                FROM rebate_redemption_items rri
+                WHERE rri.order_item_id = oi.id
+            )
+        GROUP BY 
+            oi.product_id, p.ProductName";
+        
+        $productResult = mysqli_query($conn, $productDetailsSql);
+        if (!$productResult) {
+            die("查询产品详情错误: " . mysqli_error($conn));
+        }
+        
+        // 构建返点详情文本
+        $details = [];
+        while ($productRow = mysqli_fetch_assoc($productResult)) {
+            $details[] = $productRow['ProductName'] . ': ' . 
+                         $productRow['quantity'] . ' 件 x ' . 
+                         $productRow['rebate_amount'] . ' 元/件';
+        }
+        
+        $customers[$customerId]['rebate_details'] = implode('; ', $details);
+    }
+    
+    // 按照返点金额排序
+    usort($customers, function($a, $b) {
+        return $b['total_rebate_amount'] <=> $a['total_rebate_amount'];
+    });
+}
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>客户返点统计</title>
+    <link rel="stylesheet" href="css/common.css" type="text/css" />
+    <link rel="stylesheet" href="css/alert.css" type="text/css" />
+    <script src="js/jquery-1.7.2.min.js"></script>
+    <script src="js/js.js"></script>
+    <style>
+        body {
+            margin: 0;
+            padding: 20px;
+            background: #fff;
+        }
+        #man_zone {
+            margin-left: 0;
+        }
+        
+        /* 表格布局 */
+        .table2 {
+            width: 100%;
+        }
+        
+        .theader, .tline {
+            display: flex;
+            flex-direction: row;
+            align-items: center;
+            width: 100%;
+            border-bottom: 1px solid #ddd;
+        }
+        
+        .theader {
+            background-color: #f2f2f2;
+            font-weight: bold;
+            height: 40px;
+        }
+        
+        .tline {
+            height: 45px;
+        }
+        
+        .tline:hover {
+            background-color: #f5f5f5;
+        }
+        
+        .col1 { width: 5%; text-align: center; }
+        .col2 { width: 15%; }
+        .col3 { width: 25%; }
+        .col4 { width: 10%; text-align: center; }
+        .col5 { width: 15%; text-align: right; }
+        .col6 { width: 10%; text-align: center; }
+        .col7 { width: 20%; text-align: center; }
+
+        /* 表格布局修复,因为 "css/common.css 覆盖了 */
+        .table2 .col1 { width: 5%; text-align: center; }
+        .table2 .col2 { width: 15%; }
+        .table2 .col3 { width: 25%; }
+        .table2 .col4 { width: 10%; text-align: center; }
+        .table2 .col5 { width: 15%; text-align: right; }
+        .table2 .col6 { width: 10%; text-align: center; }
+        .table2 .col7 { width: 20%; text-align: center; }
+
+        .theader > div, .tline > div {
+            padding: 0 5px;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            white-space: nowrap;
+        }
+        
+        /* 日期选择器样式 */
+        .date-input {
+            padding: 5px;
+            border: 1px solid #ccc;
+            border-radius: 3px;
+        }
+        
+        /* 滑动面板样式 */
+        .slidepanel {
+            cursor: pointer;
+        }
+        
+        .slidepanel.open {
+            font-weight: bold;
+            color: #3366cc;
+        }
+        
+        .notepanel {
+            display: none;
+            background: #f9f9f9;
+            padding: 10px;
+            border: 1px solid #eee;
+            margin-bottom: 10px;
+        }
+        
+        .notepanel .noteItem {
+            font-weight: bold;
+            margin-bottom: 5px;
+        }
+        
+        .rebate-details {
+            margin-top: 10px;
+            border-top: 1px dashed #ddd;
+            padding-top: 10px;
+        }
+    </style>
+</head>
+<body>
+<div id="man_zone">
+    <div class="fastSelect clear">
+        <H1>筛选条件</H1>
+        <div class="selectItem">
+            <label>订单日期</label>
+            <input type="date" name="fliterFromDate" class="date-input filterSearch" value="<?= $fliterFromDate ?>">
+            <label>到</label>
+            <input type="date" name="fliterToDate" class="date-input filterSearch" value="<?= $fliterToDate ?>">
+        </div>
+        <div class="inputSearch">
+            <input type="text" id="keys" class="inputTxt" placeholder="请输入客户名称或编码"
+                value="<?= empty($keyscode) ? '' : $keyscode ?>" />
+            <input type="button" id="searchgo" class="searchgo" value="搜索"
+                onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
+            <a href="rebate_history.php" class="btn1" style="float: right; display: inline-block; padding: 5px 15px; margin-top: 0; line-height: 22px; height: 22px;">查看返点历史</a>
+        </div>
+    </div>
+
+    <div class="table2 em<?= $_SESSION['employee_id'] ?>">
+        <div class="theader">
+            <div class="col1">序号</div>
+            <div class="col2">客户编码</div>
+            <div class="col3">客户名称</div>
+            <div class="col4">返点产品数</div>
+            <div class="col5">返点金额合计</div>
+            <div class="col6">查看详情</div>
+            <div class="col7">操作</div>
+        </div>
+
+        <?php
+        if (!empty($customers)) {
+            $tempNum = ($page - 1) * $pageSize;
+            foreach ($customers as $customer) {
+                $tempNum++;
+                ?>
+                <div class="tline">
+                    <div class="col1"><?= $tempNum ?></div>
+                    <div class="col2"><?= htmlspecialcharsFix($customer['cs_code']) ?></div>
+                    <div class="col3 slidepanel" data-id="<?= $customer['customer_id'] ?>"><?= htmlspecialcharsFix($customer['customer_name']) ?></div>
+                    <div class="col4"><?= $customer['qualifying_products'] ?></div>
+                    <div class="col5"><?= number_format($customer['total_rebate_amount'], 2) ?> 元</div>
+                    <div class="col6">
+                        <a href="javascript:void(0)" class="toggleDetail" data-id="<?= $customer['customer_id'] ?>">展开详情</a>
+                    </div>
+                    <div class="col7">
+                        <a href="rebate_redeem.php?customer_id=<?= $customer['customer_id'] ?>" class="ico_edit ico">处理兑换</a>
+                    </div>
+                </div>
+                <div class="notepanel clear" id="detail-<?= $customer['customer_id'] ?>">
+                    <div class="noteItem">返点详情</div>
+                    <div class="rebate-details">
+                        <?= htmlspecialcharsFix($customer['rebate_details']) ?>
+                    </div>
+                </div>
+                <?php
+            }
+        } else {
+            if (empty($keys) && empty($fliterStr)) {
+                echo '<div class="tline"><div align="center" colspan="7">当前没有客户有可用返点</div></div>';
+            } else {
+                echo '<div class="tline"><div align="center" colspan="7"><a href="?">没有找到匹配的返点记录,点击返回</a></div></div>';
+            }
+        }
+        ?>
+
+        <div class="showpagebox">
+            <?php
+            if ($totalPages > 1) {
+                $pageName = "?Keys=$keys$urlStr&";
+                $pageLen = 3;
+
+                if ($page > 1) {
+                    echo "<a href=\"{$pageName}Page=1\">首页</a>";
+                    echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
+                }
+
+                if ($pageLen * 2 + 1 >= $totalPages) {
+                    $startPage = 1;
+                    $endPage = $totalPages;
+                } else {
+                    if ($page <= $pageLen + 1) {
+                        $startPage = 1;
+                        $endPage = $pageLen * 2 + 1;
+                    } else {
+                        $startPage = $page - $pageLen;
+                        $endPage = $page + $pageLen;
+                    }
+                    if ($page + $pageLen > $totalPages) {
+                        $startPage = $totalPages - $pageLen * 2;
+                        $endPage = $totalPages;
+                    }
+                }
+
+                for ($i = $startPage; $i <= $endPage; $i++) {
+                    if ($i == $page) {
+                        echo "<a class=\"current\">$i</a>";
+                    } else {
+                        echo "<a href=\"{$pageName}Page=$i\">$i</a>";
+                    }
+                }
+
+                if ($page < $totalPages) {
+                    if ($totalPages - $page > $pageLen) {
+                        echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
+                    }
+                    echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
+                    echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
+                }
+            }
+            ?>
+        </div>
+    </div>
+
+    <script>
+    $(document).ready(function() {
+        // 添加日期验证逻辑
+        $('input[name="fliterToDate"]').on('change', function() {
+            var fromDate = $('input[name="fliterFromDate"]').val();
+            var toDate = $(this).val();
+            
+            if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
+                alert('结束日期不能早于开始日期');
+                $(this).val(''); // 清空结束日期
+                return false;
+            }
+        });
+        
+        // 开始日期变更时也进行验证
+        $('input[name="fliterFromDate"]').on('change', function() {
+            var fromDate = $(this).val();
+            var toDate = $('input[name="fliterToDate"]').val();
+            
+            if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
+                alert('开始日期不能晚于结束日期');
+                $('input[name="fliterToDate"]').val(''); // 清空结束日期
+                return false;
+            }
+        });
+
+        // 处理筛选条件改变
+        $('.filterSearch').change(function() {
+            var url = '?';
+            var keys = $('#keys').val();
+            if (keys && keys != '请输入客户名称或编码') {
+                url += 'Keys=' + encodeURIComponent(keys) + '&';
+            }
+
+            $('.filterSearch').each(function() {
+                var name = $(this).attr('name');
+                var value = $(this).val();
+                if (value) {
+                    url += name + '=' + encodeURIComponent(value) + '&';
+                }
+            });
+
+            // 移除末尾的&
+            if (url.endsWith('&')) {
+                url = url.substring(0, url.length - 1);
+            }
+
+            location.href = url;
+        });
+        
+  
+    });
+    </script>
+</div>
+</body>
+</html>