|
@@ -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();
|
|
|
}
|