Browse Source

fleat: update text

igb 2 days ago
parent
commit
3369d9366a
7 changed files with 11 additions and 11 deletions
  1. 2 2
      order.php
  2. 1 1
      order_add.php
  3. 1 1
      order_details.php
  4. 1 1
      order_edit.php
  5. 4 4
      statistics_order_warnings.php
  6. 1 1
      system/add_product.php
  7. 1 1
      system/edit_product.php

+ 2 - 2
order.php

@@ -201,7 +201,7 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
     <div class="fastSelect clear">
         <H1>筛选条件</H1>
         <div class="selectItem">
-            <label>订单日期</label>
+            <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 ?>">
@@ -224,7 +224,7 @@ $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
             <div class="col3">销售订单号</div>
             <div class="col4">客户编码</div>
             <div class="col5">客户</div>
-            <div class="col7">订单日期</div>
+            <div class="col7">出货日期</div>
             <div class="col9">订单金额</div>
             <div class="col10">操作</div>
         </div>

+ 1 - 1
order_add.php

@@ -343,7 +343,7 @@ if ($customerId > 0) {
                 </td>
             </tr>
             <tr>
-                <th width="8%">订单日期</th>
+                <th width="8%">出货日期</th>
                 <td><input type="date" id="order_date" name="order_date" value="<?= date('Y-m-d') ?>" class="txt1" /></td>
             </tr>
             <tr>

+ 1 - 1
order_details.php

@@ -220,7 +220,7 @@ if (!empty($id) && is_numeric($id)) {
 <!--            <span class="info-label">联系人:</span> --><?php //= htmlspecialcharsFix($order['contact_name']) ?>
 <!--        </div>-->
         <div class="info-row">
-            <span class="info-label">订单日期:</span> <?= date('Y-m-d', strtotime($order['order_date'])) ?>
+            <span class="info-label">出货日期:</span> <?= date('Y-m-d', strtotime($order['order_date'])) ?>
         </div>
         <div class="info-row">
             <span class="info-label">创建时间:</span> <?= $order['created_at'] ?>

+ 1 - 1
order_edit.php

@@ -352,7 +352,7 @@ if (!empty($id) && is_numeric($id)) {
                 </td>
             </tr>
             <tr>
-                <th width="8%">订单日期</th>
+                <th width="8%">出货日期</th>
                 <td>
                     <input type="date" id="order_date" name="order_date" value="<?= substr($order['order_date'], 0, 10) ?>" class="txt1" />
                 </td>

+ 4 - 4
statistics_order_warnings.php

@@ -180,7 +180,7 @@ include('statistics_header.php');
                     <th>本期订单金额</th>
                     <th>上期订单金额</th>
                     <th>变化百分比</th>
-                    <th>最近订单日期</th>
+                    <th>最近出货日期</th>
                     <th>业务员</th>
                     <th>操作</th>
                 </tr>
@@ -235,7 +235,7 @@ include('statistics_header.php');
                     <th>平均复购周期(天)</th>
                     <th>最近复购周期(天)</th>
                     <th>偏离正常值</th>
-                    <th>最近订单日期</th>
+                    <th>最近出货日期</th>
                     <th>订单总数</th>
                     <th>业务员</th>
                     <th>操作</th>
@@ -291,7 +291,7 @@ include('statistics_header.php');
                 <tr>
                     <th>客户编码</th>
                     <th>客户名称</th>
-                    <th>最后订单日期</th>
+                    <th>最后出货日期</th>
                     <th>不活跃天数</th>
                     <th>历史订单数</th>
                     <th>历史订单总额</th>
@@ -643,7 +643,7 @@ include('statistics_header.php');
     width: 20%;
 }
 
-#inactive-customers .data-table th:nth-child(3), /* 最后订单日期 */
+#inactive-customers .data-table th:nth-child(3), /* 最后出货日期 */
 #inactive-customers .data-table td:nth-child(3) {
     width: 12%;
 }

+ 1 - 1
system/add_product.php

@@ -15,7 +15,7 @@ $note = '';
 $tips = '';
 $keys = isset($_GET['Keys']) ? urlencode($_GET['Keys']) : '';
 $page = isset($_GET['Page']) ? $_GET['Page'] : 1;
-$rebate = 1; // 默认启用返点
+$rebate = 0; // 默认不启用返点
 
 // Get the return URL
 $href_str = "products.php?keys=" . $keys . "&Page=" . $page;

+ 1 - 1
system/edit_product.php

@@ -42,7 +42,7 @@ $nosale = $row['nosale'];
 $note = htmlspecialcharsFix($row['note']);
 $tips = htmlspecialcharsFix($row['tips']);
 $category_id = $row['category_id'] ? intval($row['category_id']) : 0;
-$rebate = isset($row['rebate']) ? intval($row['rebate']) : 1; // 默认启用返点
+$rebate = isset($row['rebate']) ? intval($row['rebate']) : 0; // 默认不启用返点
 ?>
 <!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">