Browse Source

fleat: update order

igb 2 days ago
parent
commit
23a8b3b085
3 changed files with 132 additions and 635 deletions
  1. 48 228
      order_add.php
  2. 74 251
      order_edit.php
  3. 10 156
      order_save.php

+ 48 - 228
order_add.php

@@ -58,7 +58,7 @@ if ($customerId > 0) {
             display: flex;
             align-items: center;
             flex-wrap: wrap;
-            gap: 8px;
+            gap: 20px; /* 增加间距 */
             background-color: #f9f9f9;
             box-shadow: 0 1px 3px rgba(0,0,0,0.1);
         }
@@ -83,7 +83,7 @@ if ($customerId > 0) {
             color: white;
         }
         .product-info {
-            flex: 2;
+            flex: 3;
             min-width: 200px;
         }
         .product-spec {
@@ -95,7 +95,7 @@ if ($customerId > 0) {
             min-width: 80px;
         }
         .product-unit {
-            flex: 0.5;
+            flex: 0.8;
             min-width: 60px;
         }
         .product-price {
@@ -103,12 +103,12 @@ if ($customerId > 0) {
             min-width: 100px;
         }
         .product-total {
-            flex: 1;
+            flex: 1.2;
             min-width: 100px;
             font-weight: bold;
         }
         .product-row input[type="number"] {
-            width: 80px;
+            width: 90%;
             padding: 5px;
             border: 1px solid #ddd;
             border-radius: 4px;
@@ -305,6 +305,9 @@ if ($customerId > 0) {
         .customer-clear-btn:hover {
             color: #c0392b;
         }
+        .product-row .total-price-input {
+            width: 90%;
+        }
     </style>
 </head>
 <body>
@@ -314,7 +317,7 @@ if ($customerId > 0) {
             <tbody>
             <tr>
                 <th width="8%">销售订单号</th>
-                <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入销售订单号" /></td>
+                <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入销售订单号 (多个用 / 分隔) " /></td>
             </tr>
             <tr>
                 <th width="8%">客户选择</th>
@@ -351,13 +354,11 @@ if ($customerId > 0) {
                 <td>
                     <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
                     
-                    <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 8px;">
-                        <div style="flex: 2; min-width: 200px;">产品</div>
-                        <div style="flex: 2; min-width: 200px;">规格</div>
+                    <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 20px;">
+                        <div style="flex: 3; min-width: 200px;">产品</div>
                         <div style="flex: 1; min-width: 80px;">数量</div>
-                        <div style="flex: 0.5; min-width: 60px;">单位</div>
-                        <div style="flex: 1; min-width: 100px;">单价</div>
-                        <div style="flex: 1; min-width: 100px;">总价</div>
+                        <div style="flex: 0.8; min-width: 60px;">单位</div>
+                        <div style="flex: 1.2; min-width: 100px;">总价</div>
                     </div>
                     
                     <div id="product-container">
@@ -630,6 +631,20 @@ if ($customerId > 0) {
                 var categoryTag = $this.find('.category-tag').text();
                 var row = $this.closest('.product-row');
                 
+                // 检查是否已存在相同的产品
+                var isDuplicate = false;
+                $('.product-id-input').not(row.find('.product-id-input')).each(function() {
+                    if ($(this).val() == productId) {
+                        isDuplicate = true;
+                        return false; // 跳出循环
+                    }
+                });
+                
+                if (isDuplicate) {
+                    alert('该产品已添加,不能添加相同的产品');
+                    return;
+                }
+                
                 // 清理产品名称,移除分类信息
                 if (categoryTag) {
                     productName = productName.replace(categoryTag, '').trim();
@@ -649,87 +664,10 @@ if ($customerId > 0) {
                 // 隐藏产品搜索结果
                 row.find('.productlist').hide();
                 
-                // 获取产品规格信息
+                // 获取产品单位信息
                 getProductSpecifications(productId, row);
             });
             
-            // 规格选择改变事件
-            $(document).on('change', '.spec-select', function() {
-                var $this = $(this);
-                var row = $this.closest('.product-row');
-                var specId = $this.val();
-                var specData = $this.find('option:selected').data();
-                
-                if (specId) {
-                    // 检查是否已存在相同的产品规格组合
-                    var isDuplicate = false;
-                    $('.spec-select').not($this).each(function() {
-                        if ($(this).val() == specId) {
-                            isDuplicate = true;
-                            return false; // 跳出循环
-                        }
-                    });
-                    
-                    if (isDuplicate) {
-                        alert('该产品规格已添加,不能重复添加');
-                        $this.val(''); // 重置选择
-                        return;
-                    }
-                    
-                    // 设置规格ID到隐藏字段
-                    row.find('.spec-id-input').val(specId);
-                    
-                    // 不再自动设置价格信息
-                    // if (specData.price) {
-                    //     row.find('.price-input').val(specData.price);
-                    // } else {
-                    //     row.find('.price-input').val('');
-                    // }
-                    
-                    // 存储规格价格作为最低价格限制
-                    var minPrice = specData.price || 0;
-                    var priceInput = row.find('.price-input');
-                    priceInput.attr('data-min-price', minPrice);
-                    if (minPrice > 0) {
-                        priceInput.attr('placeholder', '输入单价');
-                    } else {
-                        priceInput.attr('placeholder', '输入单价');
-                    }
-                    
-                    // 设置最小订购数量
-                    var minQty = specData.minQty || 1;
-                    var qtyInput = row.find('.quantity-input');
-                    if (parseInt(qtyInput.val()) < minQty) {
-                        qtyInput.val(minQty);
-                    }
-                    qtyInput.attr('min', minQty);
-                    
-                    // 更新规格信息显示
-                    // var specInfoHtml = '';
-                    // if (specData.code) {
-                    //     specInfoHtml += '<span>编码: ' + specData.code + '</span>';
-                    // }
-                    // if (specData.minQty > 1) {
-                    //     specInfoHtml += ' <span>最小订购量: ' + specData.minQty + '</span>';
-                    // }
-                    // if (specData.price) {
-                    //     specInfoHtml += ' <span>参考价格: ¥' + specData.price + '</span>';
-                    // }
-                    // row.find('.spec-info').html(specInfoHtml);
-                    
-                    // 重新计算总价
-                    calculateItemTotal(row.find('.price-input')[0]);
-                } else {
-                    // 清除规格相关信息
-                    row.find('.spec-id-input').val('');
-                    // 不再清除价格
-                    // row.find('.price-input').val('');
-                    row.find('.price-input').attr('data-min-price', '0').attr('placeholder', '输入单价');
-                    row.find('.spec-info').html('');
-                    calculateItemTotal(row.find('.price-input')[0]);
-                }
-            });
-            
             // 点击其他地方隐藏下拉列表
             $(document).on('click', function(e) {
                 if (!$(e.target).closest('.product-search').length && !$(e.target).closest('.productlist').length) {
@@ -747,26 +685,21 @@ if ($customerId > 0) {
                 
                 // 只有当已经选择了产品时才允许重新选择
                 if (productId) {
-                    if (confirm('确定要重新选择产品吗?这将清除当前选择的产品及其规格信息。')) {
-                        // 清空产品ID和选择的规格
+                    if (confirm('确定要重新选择产品吗?这将清除当前选择的产品信息。')) {
+                        // 清空产品ID
                         row.find('.product-id-input').val('');
-                        row.find('.spec-id-input').val('');
                         
                         // 隐藏产品信息,显示搜索框
                         $(this).hide();
                         row.find('.product-search').val('').show();
                         
-                        // 隐藏并清空规格选择
-                        row.find('.spec-select').hide().empty();
-                        row.find('.spec-info').html('');
-                        
                         // 清除单位信息
                         row.find('.unit-input').val('');
                         row.find('.unit-label').text('');
                         
-                        // 清除价信息并重新计算总额
-                        row.find('.price-input').val('');
-                        calculateItemTotal(row.find('.price-input')[0]);
+                        // 清除价信息并重新计算总额
+                        row.find('.total-price-input').val('0.00');
+                        calculateOrderTotal();
                     }
                 }
             });
@@ -785,18 +718,9 @@ if ($customerId > 0) {
                     <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
                 </div>
                 
-                <div class="row-section product-spec">
-                    <div class="row-section-label"><span>规格</span></div>
-                    <input type="hidden" name="items[${productIndex}][spec_id]" class="spec-id-input" value="">
-                    <select class="spec-select" name="items[${productIndex}][spec_select]" style="display: none;">
-                        <option value="">请选择规格</option>
-                    </select>
-                    <div class="spec-info"></div>
-                </div>
-                
                 <div class="row-section product-quantity">
                     <div class="row-section-label"><span>数量</span></div>
-                    <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
+                    <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input">
                 </div>
                 
                 <div class="row-section product-unit">
@@ -805,15 +729,9 @@ if ($customerId > 0) {
                     <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
                 </div>
                 
-                <div class="row-section product-price">
-                    <div class="row-section-label"><span>单价</span></div>
-                    <input type="number" step="0.01" name="items[${productIndex}][unit_price]" value="" class="price-input" placeholder="输入单价" onchange="calculateItemTotal(this)">
-                </div>
-                
                 <div class="row-section product-total">
                     <div class="row-section-label"><span>总价</span></div>
-                    <span class="total-price-display" style="display: inline-block; background-color: #f0f0f0; border: 1px solid #ddd; padding: 2px 8px; min-width: 60px; text-align: right;">0.00</span>
-                    <input type="hidden" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input">
+                    <input type="number" step="0.01" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
                 </div>
             </div>
             `;
@@ -832,49 +750,14 @@ if ($customerId > 0) {
                 data: {product_id: productId},
                 dataType: 'json',
                 success: function(data) {
-                    if (data && data.product && data.specifications) {
-                        // 恢复设置单位信息
+                    if (data && data.product) {
+                        // 设置单位信息
                         if (data.product.unit) {
                             row.find('.unit-input').val(data.product.unit);
                             row.find('.unit-label').text(data.product.unit);
                         }
-                        
-                        // 处理规格信息
-                        var specifications = data.specifications;
-                        if (specifications.length === 0) {
-                            alert('此产品没有规格信息,请添加规格后再选择');
-                            // 重置产品选择
-                            row.find('.product-id-input').val('');
-                            row.find('.selected-product-info').hide();
-                            row.find('.product-search').val('').show();
-                            return;
-                        }
-                        
-                        // 填充规格选择下拉框
-                        var specSelect = row.find('.spec-select');
-                        specSelect.empty();
-                        specSelect.append('<option value="">请选择规格</option>');
-                        
-                        $.each(specifications, function(i, spec) {
-                            var displayText = spec.spec_name + ': ' + spec.spec_value;
-                            if (spec.price) {
-                                displayText += ' (¥' + spec.price + ')';
-                            }
-                            
-                            var option = $('<option></option>')
-                                .attr('value', spec.id)
-                                .text(displayText)
-                                .data('price', spec.price)
-                                .data('minQty', spec.min_order_quantity)
-                                .data('code', spec.spec_code);
-                            
-                            specSelect.append(option);
-                        });
-                        
-                        // 显示规格选择下拉框
-                        specSelect.show();
                     } else {
-                        alert('获取产品规格失败');
+                        alert('获取产品信息失败');
                         // 重置产品选择
                         row.find('.product-id-input').val('');
                         row.find('.selected-product-info').hide();
@@ -882,7 +765,7 @@ if ($customerId > 0) {
                     }
                 },
                 error: function() {
-                    alert('获取产品规格失败,请重试');
+                    alert('获取产品信息失败,请重试');
                     // 重置产品选择
                     row.find('.product-id-input').val('');
                     row.find('.selected-product-info').hide();
@@ -905,31 +788,6 @@ if ($customerId > 0) {
             productIndex = $('.product-row').length;
         }
 
-        function calculateItemTotal(element) {
-            var row = $(element).closest('.product-row');
-            var quantity = parseInt(row.find('.quantity-input').val()) || 0;
-            var priceInput = row.find('.price-input');
-            var priceValue = priceInput.val().trim();
-            var price = (priceValue === '') ? 0 : (parseFloat(priceValue) || 0);
-            var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
-
-            // 检查价格是否低于规格最低价
-            if (price > 0 && minPrice > 0 && price < minPrice) {
-                priceInput.css('color', 'red');
-            } else {
-                priceInput.css('color', '');
-            }
-
-            var total = quantity * price;
-            if (total < 0) total = 0;
-
-            // 更新显示元素和隐藏输入框
-            row.find('.total-price-display').text(total.toFixed(2));
-            row.find('.total-price-input').val(total.toFixed(2));
-
-            calculateOrderTotal();
-        }
-
         function calculateOrderTotal() {
             var total = 0;
             $('.total-price-input').each(function() {
@@ -964,9 +822,7 @@ if ($customerId > 0) {
             var customerId = $('#customer_id').val();
             var customerName = $('#customer_search').val();
             var hasProducts = false;
-            var allSpecsSelected = true;
-            var allPricesValid = true;
-            var allPricesHighEnough = true;
+            var allTotalPricesValid = true;
             var firstInvalidField = null;
 
             // 检查是否有产品行
@@ -978,12 +834,8 @@ if ($customerId > 0) {
 
             $('.product-row').each(function() {
                 var productId = $(this).find('.product-id-input').val();
-                var specId = $(this).find('.spec-id-input').val();
-                var priceInput = $(this).find('.price-input');
-                var priceValue = priceInput.val().trim();
-                var price = parseFloat(priceValue) || 0;
-                var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
-                var specSelect = $(this).find('.spec-select');
+                var totalPriceInput = $(this).find('.total-price-input');
+                var totalPrice = parseFloat(totalPriceInput.val()) || 0;
                 var productSearch = $(this).find('.product-search');
                 
                 // 检查产品是否已选择
@@ -996,27 +848,11 @@ if ($customerId > 0) {
                 
                 hasProducts = true;
                 
-                // 检查规格是否已选择
-                if (!specId && specSelect.is(':visible')) {
-                    allSpecsSelected = false;
-                    if (!firstInvalidField) {
-                        firstInvalidField = specSelect;
-                    }
-                }
-                
-                // 检查单价是否有效
-                if (priceValue === '' || isNaN(parseFloat(priceValue))) {
-                    allPricesValid = false;
+                // 检查总价是否有效
+                if (totalPrice <= 0) {
+                    allTotalPricesValid = false;
                     if (!firstInvalidField) {
-                        firstInvalidField = priceInput;
-                    }
-                }
-                
-                // 检查单价是否大于等于规格价格
-                if (minPrice > 0 && price < minPrice) {
-                    allPricesHighEnough = false;
-                    if (!firstInvalidField) {
-                        firstInvalidField = priceInput;
+                        firstInvalidField = totalPriceInput;
                     }
                 }
             });
@@ -1050,24 +886,8 @@ if ($customerId > 0) {
                 return false;
             }
             
-            if (!allSpecsSelected) {
-                alert('请为所有产品选择规格');
-                if (firstInvalidField) {
-                    firstInvalidField.focus();
-                }
-                return false;
-            }
-            
-            if (!allPricesValid) {
-                alert('请为所有产品输入有效的单价');
-                if (firstInvalidField) {
-                    firstInvalidField.focus();
-                }
-                return false;
-            }
-            
-            if (!allPricesHighEnough) {
-                alert('单价不能低于规格设定的参考价格');
+            if (!allTotalPricesValid) {
+                alert('请为所有产品输入有效的总价');
                 if (firstInvalidField) {
                     firstInvalidField.focus();
                 }

+ 74 - 251
order_edit.php

@@ -77,7 +77,7 @@ if (!empty($id) && is_numeric($id)) {
             display: flex;
             align-items: center;
             flex-wrap: wrap;
-            gap: 8px;
+            gap: 20px; /* 增加间距 */
             background-color: #f9f9f9;
             box-shadow: 0 1px 3px rgba(0,0,0,0.1);
         }
@@ -102,7 +102,7 @@ if (!empty($id) && is_numeric($id)) {
             color: white;
         }
         .product-info {
-            flex: 2;
+            flex: 3;
             min-width: 200px;
         }
         .product-spec {
@@ -114,7 +114,7 @@ if (!empty($id) && is_numeric($id)) {
             min-width: 80px;
         }
         .product-unit {
-            flex: 0.5;
+            flex: 0.8;
             min-width: 60px;
         }
         .product-price {
@@ -122,12 +122,12 @@ if (!empty($id) && is_numeric($id)) {
             min-width: 100px;
         }
         .product-total {
-            flex: 1;
+            flex: 1.2;
             min-width: 100px;
             font-weight: bold;
         }
         .product-row input[type="number"] {
-            width: 80px;
+            width: 90%;
             padding: 5px;
             border: 1px solid #ddd;
             border-radius: 4px;
@@ -323,6 +323,9 @@ if (!empty($id) && is_numeric($id)) {
         .customer-clear-btn:hover {
             color: #c0392b;
         }
+        .product-row .total-price-input {
+            width: 90%;
+        }
     </style>
 </head>
 <body>
@@ -362,13 +365,11 @@ if (!empty($id) && is_numeric($id)) {
                 <td>
                     <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
                     
-                    <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 8px;">
-                        <div style="flex: 2; min-width: 200px;">产品</div>
-                        <div style="flex: 2; min-width: 200px;">规格</div>
+                    <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 20px;">
+                        <div style="flex: 3; min-width: 200px;">产品</div>
                         <div style="flex: 1; min-width: 80px;">数量</div>
-                        <div style="flex: 0.5; min-width: 60px;">单位</div>
-                        <div style="flex: 1; min-width: 100px;">单价</div>
-                        <div style="flex: 1; min-width: 100px;">总价</div>
+                        <div style="flex: 0.8; min-width: 60px;">单位</div>
+                        <div style="flex: 1.2; min-width: 100px;">总价</div>
                     </div>
                     
                     <div id="product-container">
@@ -389,20 +390,6 @@ if (!empty($id) && is_numeric($id)) {
                                         </div>
                                     </div>
                                 
-                                <div class="row-section product-spec">
-                                    <div class="row-section-label"><span>规格</span></div>
-                                    <input type="hidden" name="items[<?= $index ?>][spec_id]" class="spec-id-input" value="<?= $item['specification_id'] ?? 0 ?>">
-                                    <!-- 规格选择框将在加载产品时填充 -->
-                                    <select class="spec-select" name="items[<?= $index ?>][spec_select]" style="display: none;">
-                                        <option value="">请选择规格</option>
-                                    </select>
-                                    <div class="spec-info" style="cursor: pointer;" title="点击修改规格">
-                                        <?php if (!empty($item['spec_name'])): ?>
-                                            <?= htmlspecialcharsFix($item['spec_name']) ?>: <?= htmlspecialcharsFix($item['spec_value'] ?? '') ?>
-                                        <?php endif; ?>
-                                    </div>
-                                </div>
-                                
                                 <div class="row-section product-quantity">
                                     <div class="row-section-label"><span>数量</span></div>
                                     <input type="number" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
@@ -414,15 +401,9 @@ if (!empty($id) && is_numeric($id)) {
                                     <input type="hidden" name="items[<?= $index ?>][unit]" value="<?= htmlspecialcharsFix($item['unit']) ?>" class="unit-input">
                                 </div>
                                 
-                                <div class="row-section product-price">
-                                    <div class="row-section-label"><span>单价</span></div>
-                                    <input type="number" step="0.01" name="items[<?= $index ?>][unit_price]" value="<?= $item['unit_price'] ?>" class="price-input" onchange="calculateItemTotal(this)">
-                    </div>
-                    
                                 <div class="row-section product-total">
                                     <div class="row-section-label"><span>总价</span></div>
-                                    <span class="total-price-display" style="display: inline-block; background-color: #f0f0f0; border: 1px solid #ddd; padding: 2px 8px; min-width: 60px; text-align: right;"><?= number_format($item['total_price'], 2) ?></span>
-                                    <input type="hidden" name="items[<?= $index ?>][total_price]" value="<?= $item['total_price'] ?>" class="total-price-input">
+                                    <input type="number" step="0.01" name="items[<?= $index ?>][total_price]" value="<?= $item['total_price'] ?>" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
                                 </div>
                                 
                                 <!-- 保留隐藏的折扣字段以便后端兼容 -->
@@ -692,6 +673,20 @@ if (!empty($id) && is_numeric($id)) {
                 var categoryTag = $this.find('.category-tag').text();
                 var row = $this.closest('.product-row');
                 
+                // 检查是否已存在相同的产品
+                var isDuplicate = false;
+                $('.product-id-input').not(row.find('.product-id-input')).each(function() {
+                    if ($(this).val() == productId) {
+                        isDuplicate = true;
+                        return false; // 跳出循环
+                    }
+                });
+                
+                if (isDuplicate) {
+                    alert('该产品已添加,不能添加相同的产品');
+                    return;
+                }
+                
                 // 清理产品名称,移除分类信息
                 if (categoryTag) {
                     productName = productName.replace(categoryTag, '').trim();
@@ -715,6 +710,32 @@ if (!empty($id) && is_numeric($id)) {
                 getProductSpecifications(productId, row);
             });
             
+            // 点击已选产品名显示的标签时,切换回搜索模式
+            $(document).on('click dblclick', '.selected-product-info', function() {
+                var row = $(this).closest('.product-row');
+                var productId = row.find('.product-id-input').val();
+                
+                // 只有当已经选择了产品时才允许重新选择
+                if (productId) {
+                    if (confirm('确定要重新选择产品吗?这将清除当前选择的产品信息。')) {
+                        // 清空产品ID
+                        row.find('.product-id-input').val('');
+                        
+                        // 隐藏产品信息,显示搜索框
+                        $(this).hide();
+                        row.find('.product-search').val('').show();
+                        
+                        // 清除单位信息
+                        row.find('.unit-input').val('');
+                        row.find('.unit-label').text('');
+                        
+                        // 清除总价信息并重新计算总额
+                        row.find('.total-price-input').val('0.00');
+                        calculateOrderTotal();
+                    }
+                }
+            });
+            
             // 规格选择改变事件
             $(document).on('change', '.spec-select', function() {
                 var $this = $(this);
@@ -786,49 +807,6 @@ if (!empty($id) && is_numeric($id)) {
                     $('#customer_dropdown').hide();
                 }
             });
-            
-            // 点击已选产品名显示的标签时,切换回搜索模式
-            $(document).on('click dblclick', '.selected-product-info', function() {
-                var row = $(this).closest('.product-row');
-                var productId = row.find('.product-id-input').val();
-                
-                // 只有当已经选择了产品时才允许重新选择
-                if (productId) {
-                    if (confirm('确定要重新选择产品吗?这将清除当前选择的产品及其规格信息。')) {
-                        // 清空产品ID和选择的规格
-                        row.find('.product-id-input').val('');
-                        row.find('.spec-id-input').val('');
-                        
-                        // 隐藏产品信息,显示搜索框
-                        $(this).hide();
-                        row.find('.product-search').val('').show();
-                        
-                        // 隐藏并清空规格选择
-                        row.find('.spec-select').hide().empty();
-                        row.find('.spec-info').html('');
-                        
-                        // 清除单位信息
-                        row.find('.unit-input').val('');
-                        row.find('.unit-label').text('');
-                        
-                        // 清除价格信息并重新计算总额
-                        row.find('.price-input').val('');
-                        calculateItemTotal(row.find('.price-input')[0]);
-                    }
-                }
-            });
-            
-            // 点击规格信息时显示规格选择下拉框
-            $(document).on('click', '.spec-info', function() {
-                var row = $(this).closest('.product-row');
-                var specSelect = row.find('.spec-select');
-                
-                if (specSelect.find('option').length > 1) {
-                    // 隐藏规格信息,显示规格选择下拉框
-                    $(this).hide();
-                    specSelect.show().focus();
-                }
-            });
         });
 
         function addEmptyProductRow() {
@@ -844,18 +822,9 @@ if (!empty($id) && is_numeric($id)) {
                     <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
                 </div>
                 
-                <div class="row-section product-spec">
-                    <div class="row-section-label"><span>规格</span></div>
-                    <input type="hidden" name="items[${productIndex}][spec_id]" class="spec-id-input" value="">
-                    <select class="spec-select" name="items[${productIndex}][spec_select]" style="display: none;">
-                        <option value="">请选择规格</option>
-                    </select>
-                    <div class="spec-info" style="cursor: pointer;" title="点击修改规格"></div>
-                </div>
-                
                 <div class="row-section product-quantity">
                     <div class="row-section-label"><span>数量</span></div>
-                    <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
+                    <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input">
                 </div>
                 
                 <div class="row-section product-unit">
@@ -864,15 +833,9 @@ if (!empty($id) && is_numeric($id)) {
                     <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
                 </div>
                 
-                <div class="row-section product-price">
-                    <div class="row-section-label"><span>单价</span></div>
-                    <input type="number" step="0.01" name="items[${productIndex}][unit_price]" value="" class="price-input" placeholder="输入单价" onchange="calculateItemTotal(this)">
-                </div>
-                
                 <div class="row-section product-total">
                     <div class="row-section-label"><span>总价</span></div>
-                    <span class="total-price-display" style="display: inline-block; background-color: #f0f0f0; border: 1px solid #ddd; padding: 2px 8px; min-width: 60px; text-align: right;">0.00</span>
-                    <input type="hidden" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input">
+                    <input type="number" step="0.01" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
                 </div>
                 
                 <!-- 保留隐藏的字段以便后端兼容 -->
@@ -937,111 +900,26 @@ if (!empty($id) && is_numeric($id)) {
                 data: {product_id: productId},
                 dataType: 'json',
                 success: function(data) {
-                    if (data && data.product && data.specifications) {
-                        console.log("获取到规格数据:", data.specifications);
+                    if (data && data.product) {
                         // 设置单位信息
                         if (data.product.unit) {
                             row.find('.unit-input').val(data.product.unit);
                             row.find('.unit-label').text(data.product.unit);
                         }
-                        
-                        // 处理规格信息
-                        var specifications = data.specifications;
-                        console.log("获取到的规格列表详情:", JSON.stringify(specifications)); // 打印完整的规格对象
-                        if (specifications.length === 0) {
-                            // 如果是编辑现有产品,不显示警告
-                            if (!currentSpecId) {
-                                alert('此产品没有规格信息,请添加规格后再选择');
-                                // 重置产品选择
-                                row.find('.product-id-input').val('');
-                                row.find('.selected-product-info').hide();
-                                row.find('.product-search').val('').show();
-                            }
-                            return;
-                        }
-                        
-                        // 填充规格选择下拉框
-                        var specSelect = row.find('.spec-select');
-                        specSelect.empty();
-                        specSelect.append('<option value="">请选择规格</option>');
-                        
-                        var foundSelectedSpec = false;
-                        
-                        $.each(specifications, function(i, spec) {
-                            var displayText = spec.spec_name + ': ' + spec.spec_value;
-                            if (spec.price) {
-                                displayText += ' (¥' + spec.price + ')';
-                            }
-                            
-                            var option = $('<option></option>')
-                                .attr('value', spec.id)
-                                .text(displayText)
-                                .data('price', spec.price)
-                                .data('minQty', spec.min_order_quantity)
-                                .data('code', spec.spec_code);
-                            
-                            // 如果是当前选中的规格,设置selected属性
-                            if (currentSpecId && parseInt(spec.id) === parseInt(currentSpecId)) {
-                                console.log("找到匹配的规格 - 规格ID:", spec.id, "当前规格ID:", currentSpecId, 
-                                           "规格名称:", spec.spec_name, "规格值:", spec.spec_value);
-                                option.prop('selected', true);
-                                foundSelectedSpec = true;
-                                
-                                // 更新规格信息显示
-                                row.find('.spec-info').html(displayText);
-                                
-                                // 设置参考价格
-                                var priceInput = row.find('.price-input');
-                                priceInput.attr('data-min-price', spec.price || 0);
-                            } else {
-                                console.log("规格不匹配 - 规格ID:", spec.id, "当前规格ID:", currentSpecId, 
-                                           "类型:", typeof spec.id, typeof currentSpecId);
-                            }
-                            
-                            specSelect.append(option);
-                        });
-                        
-                        // 显示规格选择下拉框并隐藏spec-info
-                        if (!currentSpecId || !foundSelectedSpec) {
-                            // 如果没有选中规格,显示下拉框
-                            specSelect.show();
-                            row.find('.spec-info').hide();
-                        } else {
-                            // 如果已选中规格,显示规格信息
-                            specSelect.hide();
-                            row.find('.spec-info').show();
-                        }
-                        
-                        // 如果在规格列表中找不到已选择的规格
-                        if (currentSpecId && !foundSelectedSpec) {
-                            console.log("在规格列表中找不到已选择的规格ID:", currentSpecId);
-                            // 不清除规格ID,保留数据库中的值
-                            // row.find('.spec-id-input').val('');
-                            
-                            // 隐藏规格选择下拉框,保留现有规格信息
-                            specSelect.hide();
-                            row.find('.spec-info').show();
-                        }
                     } else {
-                        // 如果是编辑现有产品,不显示警告
-                        if (!currentSpecId) {
-                            alert('获取产品规格失败');
-                            // 重置产品选择
-                            row.find('.product-id-input').val('');
-                            row.find('.selected-product-info').hide();
-                            row.find('.product-search').val('').show();
-                        }
-                    }
-                },
-                error: function() {
-                    // 如果是编辑现有产品,不显示警告
-                    if (!currentSpecId) {
-                        alert('获取产品规格失败,请重试');
+                        alert('获取产品信息失败');
                         // 重置产品选择
                         row.find('.product-id-input').val('');
                         row.find('.selected-product-info').hide();
                         row.find('.product-search').val('').show();
                     }
+                },
+                error: function() {
+                    alert('获取产品信息失败,请重试');
+                    // 重置产品选择
+                    row.find('.product-id-input').val('');
+                    row.find('.selected-product-info').hide();
+                    row.find('.product-search').val('').show();
                 }
             });
         }
@@ -1063,29 +941,12 @@ if (!empty($id) && is_numeric($id)) {
                             //默认不设置单价
                             //row.find('.price-input').val(data.price);
                         }
-                        calculateItemTotal(row.find('.price-input')[0]);
+                        calculateOrderTotal();
                     }
                 }
             });
         }
 
-        function calculateItemTotal(element) {
-            var row = $(element).closest('.product-row');
-            var quantity = parseInt(row.find('.quantity-input').val()) || 0;
-            var priceInput = row.find('.price-input');
-            var priceValue = priceInput.val().trim();
-            var price = (priceValue === '') ? 0 : (parseFloat(priceValue) || 0);
-
-            var total = quantity * price;
-            if (total < 0) total = 0;
-
-            // 更新显示元素和隐藏输入框
-            row.find('.total-price-display').text(total.toFixed(2));
-            row.find('.total-price-input').val(total.toFixed(2));
-
-            calculateOrderTotal();
-        }
-
         function calculateOrderTotal() {
             var total = 0;
             $('.total-price-input').each(function() {
@@ -1103,9 +964,7 @@ if (!empty($id) && is_numeric($id)) {
             var customerId = $('#customer_id').val();
             var customerName = $('#customer_search').val() || $('#customer_selected').text().trim();
             var hasProducts = false;
-            var allSpecsSelected = true;
-            var allPricesValid = true;
-            var allPricesHighEnough = true;
+            var allTotalPricesValid = true;
             var firstInvalidField = null;
 
             // 检查是否有产品行
@@ -1117,12 +976,8 @@ if (!empty($id) && is_numeric($id)) {
 
             $('.product-row').each(function() {
                 var productId = $(this).find('.product-id-input').val();
-                var specId = $(this).find('.spec-id-input').val();
-                var priceInput = $(this).find('.price-input');
-                var priceValue = priceInput.val().trim();
-                var price = parseFloat(priceValue) || 0;
-                var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
-                var specSelect = $(this).find('.spec-select');
+                var totalPriceInput = $(this).find('.total-price-input');
+                var totalPrice = parseFloat(totalPriceInput.val()) || 0;
                 var productSearch = $(this).find('.product-search');
                 
                 // 检查产品是否已选择
@@ -1135,27 +990,11 @@ if (!empty($id) && is_numeric($id)) {
                 
                 hasProducts = true;
                 
-                // 检查规格是否已选择
-                if (!specId && specSelect.is(':visible')) {
-                    allSpecsSelected = false;
+                // 检查总价是否有效
+                if (totalPrice <= 0) {
+                    allTotalPricesValid = false;
                     if (!firstInvalidField) {
-                        firstInvalidField = specSelect;
-                    }
-                }
-                
-                // 检查单价是否有效
-                if (priceValue === '' || isNaN(parseFloat(priceValue))) {
-                    allPricesValid = false;
-                    if (!firstInvalidField) {
-                        firstInvalidField = priceInput;
-                    }
-                }
-                
-                // 检查单价是否大于等于规格价格
-                if (minPrice > 0 && price < minPrice) {
-                    allPricesHighEnough = false;
-                    if (!firstInvalidField) {
-                        firstInvalidField = priceInput;
+                        firstInvalidField = totalPriceInput;
                     }
                 }
             });
@@ -1188,24 +1027,8 @@ if (!empty($id) && is_numeric($id)) {
                 return false;
             }
             
-            if (!allSpecsSelected) {
-                alert('请为所有产品选择规格');
-                if (firstInvalidField) {
-                    firstInvalidField.focus();
-                }
-                return false;
-            }
-            
-            if (!allPricesValid) {
-                alert('请为所有产品输入有效的单价');
-                if (firstInvalidField) {
-                    firstInvalidField.focus();
-                }
-                return false;
-            }
-            
-            if (!allPricesHighEnough) {
-                alert('单价不能低于规格设定的参考价格');
+            if (!allTotalPricesValid) {
+                alert('请为所有产品输入有效的总价');
                 if (firstInvalidField) {
                     firstInvalidField.focus();
                 }

+ 10 - 156
order_save.php

@@ -46,9 +46,8 @@ $discount_amount = !empty($_POST['discount_amount']) ? (float)$_POST['discount_a
 
 foreach ($items as $item) {
     $quantity = (int)$item['quantity'];
-    $unit_price = (float)$item['unit_price'];
-    $item_total = $quantity * $unit_price;
-    $subtotal += $item_total;
+    $total_price = (float)$item['total_price']; // 直接使用用户输入的总价
+    $subtotal += $total_price;
 }
 
 $total_amount = $subtotal - $discount_amount;
@@ -116,79 +115,6 @@ if ($customer_result && mysqli_num_rows($customer_result) > 0) {
 // 处理保存
 if ($isedit) {
 
-    //价格判断,不能低于指导价
-    $price_error = false;
-    $error_product_name = '';
-    $error_min_price = 0;
-    $error_current_price = 0;
-    
-    foreach ($items as $item) {
-        if (empty($item['product_id'])) continue;
-        
-        $product_id = (int)$item['product_id'];
-        $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0;
-        $quantity = (int)$item['quantity'];
-        $unit_price = (float)$item['unit_price'];
-        
-        // 查询产品名称,用于错误提示
-        $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
-        $product_result = mysqli_query($conn, $product_query);
-        
-        // 检查产品是否存在
-        if (mysqli_num_rows($product_result) === 0) {
-            echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
-            exit;
-        }
-        
-        $product_row = mysqli_fetch_assoc($product_result);
-        $product_name = $product_row['ProductName'];
-        
-        // 如果有规格ID,检查规格价格
-        if ($spec_id > 0) {
-
-            //先判断是否国家有特殊规格
-
-
-            $spec_result=null;
-            if($customer_country>0) {
-                $spec_query = "SELECT pcp.price,pcp.min_order_quantity, ps.spec_name, ps.spec_value FROM product_country_price pcp
-                                    left join product_specifications ps on pcp.specification_id=ps.id
-                          WHERE pcp.specification_id = $spec_id  AND pcp.country_id = $customer_country
-                          LIMIT 1";
-                $spec_result = mysqli_query($conn, $spec_query);
-            }
-
-            if (mysqli_num_rows($spec_result) < 1) {
-                $spec_query = "SELECT price, spec_name, spec_value FROM product_specifications 
-                          WHERE id = $spec_id AND product_id = $product_id 
-                          LIMIT 1";
-
-                $spec_result = mysqli_query($conn, $spec_query);
-            }
-            
-            if (mysqli_num_rows($spec_result) > 0) {
-                $spec_row = mysqli_fetch_assoc($spec_result);
-                $min_price = (float)$spec_row['price'];
-                
-                // 如果单价低于规格价格,标记错误
-                if ($min_price > 0 && $unit_price < $min_price) {
-                    $price_error = true;
-                    $error_product_name = $product_name . " (" . $spec_row['spec_name'] . ": " . $spec_row['spec_value'] . ")";
-                    $error_min_price = $min_price;
-                    $error_current_price = $unit_price;
-                    break;
-                }
-            }
-        }
-    }
-    
-    // 如果价格低于指导价,显示错误并返回
-    if ($price_error) {
-        $error_message = "产品  {$error_product_name} 的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
-        echo "<script>alert(\"{$error_message}\");history.back();</script>";
-        exit;
-    }
-
     // 更新订单基本信息
     $sql = "UPDATE orders SET 
             order_code = '$order_code', 
@@ -220,11 +146,11 @@ if ($isedit) {
         if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
 
         $product_id = (int)$item['product_id'];
-        $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
         $quantity = (int)$item['quantity'];
         $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
-        $unit_price = (float)$item['unit_price'];
-        $total_price = $quantity * $unit_price;
+        $total_price = (float)$item['total_price'];
+        // 如果数量大于0,计算单价,否则单价为0
+        $unit_price = ($quantity > 0) ? ($total_price / $quantity) : 0;
         $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
 
         $sql = "INSERT INTO order_items (
@@ -232,7 +158,7 @@ if ($isedit) {
                 total_price, notes, 
                 created_at, updated_at
             ) VALUES (
-                $id, $product_id, $spec_id, $quantity, '$unit', $unit_price, 
+                $id, $product_id, 0, $quantity, '$unit', $unit_price, 
                 $total_price, '$item_notes', 
                 NOW(), NOW()
             )";
@@ -243,78 +169,6 @@ if ($isedit) {
     $message = "订单更新成功!";
 } else {
 
-    //价格判断,不能低于指导价
-    $price_error = false;
-    $error_product_name = '';
-    $error_min_price = 0;
-    $error_current_price = 0;
-    
-    foreach ($items as $item) {
-        if (empty($item['product_id'])) continue;
-        
-        $product_id = (int)$item['product_id'];
-        $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0;
-        $quantity = (int)$item['quantity'];
-        $unit_price = (float)$item['unit_price'];
-        
-        // 查询产品名称,用于错误提示
-        $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
-        $product_result = mysqli_query($conn, $product_query);
-        
-        // 检查产品是否存在
-        if (mysqli_num_rows($product_result) === 0) {
-            echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
-            exit;
-        }
-        
-        $product_row = mysqli_fetch_assoc($product_result);
-        $product_name = $product_row['ProductName'];
-        
-        // 如果有规格ID,检查规格价格
-        if ($spec_id > 0) {
-
-            //先判断是否国家有特殊规格
-
-            $spec_result=null;
-            if($customer_country>0) {
-                $spec_query = "SELECT pcp.price,pcp.min_order_quantity, ps.spec_name, ps.spec_value FROM product_country_price pcp
-                                    left join product_specifications ps on pcp.specification_id=ps.id
-                          WHERE pcp.specification_id = $spec_id  AND pcp.country_id = $customer_country
-                          LIMIT 1";
-                $spec_result = mysqli_query($conn, $spec_query);
-            }
-
-            if (mysqli_num_rows($spec_result) < 1) {
-                $spec_query = "SELECT price, spec_name, spec_value FROM product_specifications 
-                          WHERE id = $spec_id AND product_id = $product_id 
-                          LIMIT 1";
-
-                $spec_result = mysqli_query($conn, $spec_query);
-            }
-            
-            if (mysqli_num_rows($spec_result) > 0) {
-                $spec_row = mysqli_fetch_assoc($spec_result);
-                $min_price = (float)$spec_row['price'];
-                
-                // 如果单价低于规格价格,标记错误
-                if ($min_price > 0 && $unit_price < $min_price) {
-                    $price_error = true;
-                    $error_product_name = $product_name . " (" . $spec_row['spec_name'] . ": " . $spec_row['spec_value'] . ")";
-                    $error_min_price = $min_price;
-                    $error_current_price = $unit_price;
-                    break;
-                }
-            }
-        }
-    }
-    
-    // 如果价格低于指导价,显示错误并返回
-    if ($price_error) {
-        $error_message = "产品  {$error_product_name}  的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
-        echo "<script>alert(\"{$error_message}\");history.back();</script>";
-        exit;
-    }
-
     // 创建新订单
     $sql = "INSERT INTO orders (
             order_code, customer_id, contact_id, employee_id, 
@@ -338,11 +192,11 @@ if ($isedit) {
         if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
 
         $product_id = (int)$item['product_id'];
-        $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
         $quantity = (int)$item['quantity'];
         $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
-        $unit_price = (float)$item['unit_price'];
-        $total_price = $quantity * $unit_price;
+        $total_price = (float)$item['total_price'];
+        // 如果数量大于0,计算单价,否则单价为0
+        $unit_price = ($quantity > 0) ? ($total_price / $quantity) : 0;
         $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
 
         $sql = "INSERT INTO order_items (
@@ -350,7 +204,7 @@ if ($isedit) {
                 total_price, notes, 
                 created_at, updated_at
             ) VALUES (
-                $order_id, $product_id, $spec_id, $quantity, '$unit', $unit_price, 
+                $order_id, $product_id, 0, $quantity, '$unit', $unit_price, 
                 $total_price, '$item_notes', 
                 NOW(), NOW()
             )";