|
@@ -36,21 +36,21 @@ $keyscode = mysqli_real_escape_string($conn, $keys);
|
|
|
$page = $_GET['Page'] ?? 1;
|
|
|
$ord = $_GET['Ord'] ?? '';
|
|
|
|
|
|
+
|
|
|
+
|
|
|
$ordStr = !empty($ord) ? "$ord," : "";
|
|
|
|
|
|
// 构建查询SQL
|
|
|
$employee_id = $_SESSION['employee_id'];
|
|
|
-$sqlStr = "SELECT o.*, c.cs_company, c.cs_code, cc.contact_name
|
|
|
+$sqlStr = "SELECT o.*, c.cs_company, c.cs_code
|
|
|
FROM orders o
|
|
|
LEFT JOIN customer c ON o.customer_id = c.id
|
|
|
- LEFT JOIN customer_contact cc ON o.contact_id = cc.id
|
|
|
WHERE o.employee_id = $employee_id";
|
|
|
|
|
|
if (!empty($keyscode)) {
|
|
|
$sqlStr .= " AND (o.order_code LIKE '%$keyscode%'
|
|
|
OR c.cs_company LIKE '%$keyscode%'
|
|
|
- OR c.cs_code LIKE '%$keyscode%'
|
|
|
- OR cc.contact_name LIKE '%$keyscode%')";
|
|
|
+ OR c.cs_code LIKE '%$keyscode%')";
|
|
|
}
|
|
|
|
|
|
$sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
@@ -103,14 +103,31 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
}
|
|
|
|
|
|
.col2 { width: 5%; text-align: center; }
|
|
|
- .col3 { width: 15%; }
|
|
|
- .col4 { width: 18%; }
|
|
|
- .col5 { width: 22%; }
|
|
|
- .col6 { width: 12%; }
|
|
|
- .col7 { width: 14%; }
|
|
|
- .col9 { width: 10%; text-align: right; }
|
|
|
+ .col3 { width: 10%; }
|
|
|
+ .col4 { width: 20%; }
|
|
|
+ .col5 { width: 30%; }
|
|
|
+ .col7 { width: 16%; }
|
|
|
+ .col9 { width: 14%; text-align: right; }
|
|
|
.col10 { width: 16%; text-align: center; }
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /* 表格布局修复,因为 "css/common.css 覆盖了 */
|
|
|
+ .table2 .col2 { width: 5%; text-align: center; }
|
|
|
+ .table2 .col3 { width: 10%; }
|
|
|
+ .table2 .col4 { width: 20%; }
|
|
|
+ .table2 .col5 { width: 30%; }
|
|
|
+ .table2 .col7 { width: 16%; }
|
|
|
+ .table2 .col9 { width: 14%; text-align: right; }
|
|
|
+ .table2 .col10 { width: 16%; text-align: center; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
.theader > div, .tline > div {
|
|
|
padding: 0 5px;
|
|
|
overflow: hidden;
|
|
@@ -150,7 +167,7 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
|
|
|
.notepanel .noteItem2 {
|
|
|
font-weight: bold;
|
|
|
- margin-top: 10px;
|
|
|
+
|
|
|
margin-bottom: 5px;
|
|
|
}
|
|
|
|
|
@@ -183,7 +200,7 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
<input type="text" id="keys" class="inputTxt" placeholder="请输入搜索关键词"
|
|
|
value="<?= empty($keyscode) ? '' : $keyscode ?>" />
|
|
|
<input type="button" id="searchgo" class="searchgo" value="搜索"
|
|
|
- onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" />
|
|
|
+ onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -197,7 +214,6 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
<div class="col3">订单编号</div>
|
|
|
<div class="col4">客户编码</div>
|
|
|
<div class="col5">客户</div>
|
|
|
- <div class="col6">联系人</div>
|
|
|
<div class="col7">订单日期</div>
|
|
|
<div class="col9">订单金额</div>
|
|
|
<div class="col10">操作</div>
|
|
@@ -211,13 +227,11 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
$employee_id = $_SESSION['employee_id'];
|
|
|
$countSql = "SELECT COUNT(*) AS total FROM orders o
|
|
|
LEFT JOIN customer c ON o.customer_id = c.id
|
|
|
- LEFT JOIN customer_contact cc ON o.contact_id = cc.id
|
|
|
WHERE o.employee_id = $employee_id";
|
|
|
if (!empty($keyscode)) {
|
|
|
$countSql .= " AND (o.order_code LIKE '%$keyscode%'
|
|
|
OR c.cs_company LIKE '%$keyscode%'
|
|
|
- OR c.cs_code LIKE '%$keyscode%'
|
|
|
- OR cc.contact_name LIKE '%$keyscode%')";
|
|
|
+ OR c.cs_code LIKE '%$keyscode%')";
|
|
|
}
|
|
|
$countSql .= $fliterStr;
|
|
|
|
|
@@ -252,7 +266,6 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
|
|
|
<div class="col3 slidepanel"><?= htmlspecialcharsFix($row['order_code']) ?></div>
|
|
|
<div class="col4"><?= htmlspecialcharsFix($row['cs_code']) ?></div>
|
|
|
<div class="col5"><?= htmlspecialcharsFix($row['cs_company']) ?></div>
|
|
|
- <div class="col6"><?= htmlspecialcharsFix($row['contact_name']) ?></div>
|
|
|
<div class="col7"><?= date('Y-m-d', strtotime($row['order_date'])) ?></div>
|
|
|
<div class="col9"><?= number_format($row['total_amount'], 2) ?></div>
|
|
|
<div class="col10">
|