From e3a143f7301185ee9631a0e8515b72bc89ea0679 Mon Sep 17 00:00:00 2001 From: dxc Date: Mon, 2 Mar 2026 17:18:23 +0800 Subject: [PATCH] fix: correct field labels in product advanced filter Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) --- inventory-web/src/views/stock/inbound/product.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inventory-web/src/views/stock/inbound/product.vue b/inventory-web/src/views/stock/inbound/product.vue index 89ca792..1d4731a 100644 --- a/inventory-web/src/views/stock/inbound/product.vue +++ b/inventory-web/src/views/stock/inbound/product.vue @@ -559,18 +559,18 @@ const fieldOptions = ref([ { label: 'BaseID', value: 'base_id' }, { label: '所属公司', value: 'company_name' }, { label: '名称', value: 'material_name' }, - { label: '规格型号', value: 'spec_model' }, + { label: '规格', value: 'spec_model' }, { label: '类别', value: 'category' }, { label: '类型', value: 'material_type' }, { label: '单位', value: 'unit' }, { label: 'SKU', value: 'sku' }, { label: '入库日期', value: 'inbound_date' }, { label: '条码', value: 'barcode' }, - { label: '序列号', value: 'serial_number' }, + { label: '序列号(SN)', value: 'serial_number' }, { label: '批号', value: 'batch_number' }, - { label: '状态', value: 'status' }, + { label: '库存状态', value: 'status' }, { label: '质量状态', value: 'quality_status' }, - { label: '入库量', value: 'in_quantity' }, + { label: '入库数量', value: 'in_quantity' }, { label: '库存数', value: 'stock_quantity' }, { label: '可用数', value: 'available_quantity' }, { label: '库位', value: 'warehouse_location' }, @@ -581,8 +581,8 @@ const fieldOptions = ref([ { label: '单件成本', value: 'unit_total_cost' }, { label: '总成本', value: 'total_price' }, { label: '订单号', value: 'order_id' }, - { label: '售价', value: 'sale_price' }, - { label: '生产负责人', value: 'production_manager' }, + { label: '产品定价', value: 'sale_price' }, + { label: '负责人', value: 'production_manager' }, ]) const operatorOptions = ref([ { label: '等于', value: '=' },