|
@@ -211,7 +211,7 @@ $temp_num = $pageSize * ($page - 1);
|
|
|
<th width="25%">产品名称</th>
|
|
|
<th width="15%">产品分类</th>
|
|
|
<th width="30%">图片</th>
|
|
|
- <th width="10%">规格数量</th>
|
|
|
+ <th width="10%">返点规则数量</th>
|
|
|
<th width="20%">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -235,11 +235,11 @@ $temp_num = $pageSize * ($page - 1);
|
|
|
<td align="center"><img src="<?php echo htmlspecialcharsFix($row['ProductImg']); ?>" width="30px"></td>
|
|
|
<td align="center">
|
|
|
<?php
|
|
|
- // Count specifications for this product
|
|
|
- $spec_sql = "SELECT COUNT(*) as spec_count FROM product_specifications WHERE product_id = " . $row['id'];
|
|
|
- $spec_result = mysqli_query($conn, $spec_sql);
|
|
|
- $spec_row = mysqli_fetch_assoc($spec_result);
|
|
|
- echo $spec_row['spec_count'];
|
|
|
+ // Count rebate rules for this product (only where rebate_amount > 0)
|
|
|
+ $rebate_sql = "SELECT COUNT(*) as rebate_count FROM rebate_rules WHERE product_id = " . $row['id'] . " AND rebate_amount > 0";
|
|
|
+ $rebate_result = mysqli_query($conn, $rebate_sql);
|
|
|
+ $rebate_row = mysqli_fetch_assoc($rebate_result);
|
|
|
+ echo $rebate_row['rebate_count'];
|
|
|
?>
|
|
|
</td>
|
|
|
<td align="center">
|