Browse Source

fleat: order display

igb 2 weeks ago
parent
commit
354f4ac055
6 changed files with 9 additions and 9 deletions
  1. 1 1
      customer_detail.php
  2. 1 1
      order.php
  3. 3 3
      order_add.php
  4. 1 1
      order_details.php
  5. 2 2
      order_edit.php
  6. 1 1
      order_save.php

+ 1 - 1
customer_detail.php

@@ -434,7 +434,7 @@ function getPaymentStatusText($status) {
             <table class="orders-table">
                 <thead>
                     <tr>
-                        <th>订单号</th>
+                        <th>销售订单号</th>
                         <th>下单日期</th>
                         <th>订单金额</th>
                         <th>订单状态</th>

+ 1 - 1
order.php

@@ -220,7 +220,7 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
     <div class="table2 em<?= $_SESSION['employee_id'] ?>">
         <div class="theader">
             <div class="col2">序号</div>
-            <div class="col3">订单号</div>
+            <div class="col3">销售订单号</div>
             <div class="col4">客户编码</div>
             <div class="col5">客户</div>
             <div class="col7">订单日期</div>

+ 3 - 3
order_add.php

@@ -250,8 +250,8 @@ if ($customerId > 0) {
         <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
             <tbody>
             <tr>
-                <th width="8%">订单号</th>
-                <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入订单号" /></td>
+                <th width="8%">销售订单号</th>
+                <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入销售订单号" /></td>
             </tr>
             <tr>
                 <th width="8%">客户选择</th>
@@ -893,7 +893,7 @@ if ($customerId > 0) {
             });
 
             if (!orderCode) {
-                alert('订单号不能为空');
+                alert('销售订单号不能为空');
                 $('#order_code').focus();
                 return false;
             }

+ 1 - 1
order_details.php

@@ -200,7 +200,7 @@ if (!empty($id) && is_numeric($id)) {
     <div class="order-info">
         <h2>订单信息</h2>
         <div class="info-row">
-            <span class="info-label">订单号:</span> <?= htmlspecialcharsFix($order['order_code']) ?>
+            <span class="info-label">销售订单号:</span> <?= htmlspecialcharsFix($order['order_code']) ?>
         </div>
         <div class="info-row">
             <span class="info-label">客户:</span> 

+ 2 - 2
order_edit.php

@@ -268,7 +268,7 @@ if (!empty($id) && is_numeric($id)) {
         <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
             <tbody>
             <tr>
-                <th width="8%">订单号</th>
+                <th width="8%">销售订单号</th>
                 <td>
                     <input type="text" id="order_code" name="order_code" value="<?= htmlspecialcharsFix($order['order_code']) ?>" class="txt1" />
                     <input type="hidden" name="id" value="<?= $id ?>" />
@@ -1064,7 +1064,7 @@ if (!empty($id) && is_numeric($id)) {
             });
 
             if (!orderCode) {
-                alert('订单号不能为空');
+                alert('销售订单号不能为空');
                 $('#order_code').focus();
                 return false;
             }

+ 1 - 1
order_save.php

@@ -42,7 +42,7 @@ $total_amount = $subtotal - $discount_amount;
 
 // 验证必填字段
 if (empty($order_code)) {
-    echo "<script>alert('订单号不能为空');history.back();</script>";
+    echo "<script>alert('销售订单号不能为空');history.back();</script>";
     exit;
 }