fix: correct field labels in product advanced filter
Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) <aider@aider.chat>
This commit is contained in:
@ -559,18 +559,18 @@ const fieldOptions = ref([
|
|||||||
{ label: 'BaseID', value: 'base_id' },
|
{ label: 'BaseID', value: 'base_id' },
|
||||||
{ label: '所属公司', value: 'company_name' },
|
{ label: '所属公司', value: 'company_name' },
|
||||||
{ label: '名称', value: 'material_name' },
|
{ label: '名称', value: 'material_name' },
|
||||||
{ label: '规格型号', value: 'spec_model' },
|
{ label: '规格', value: 'spec_model' },
|
||||||
{ label: '类别', value: 'category' },
|
{ label: '类别', value: 'category' },
|
||||||
{ label: '类型', value: 'material_type' },
|
{ label: '类型', value: 'material_type' },
|
||||||
{ label: '单位', value: 'unit' },
|
{ label: '单位', value: 'unit' },
|
||||||
{ label: 'SKU', value: 'sku' },
|
{ label: 'SKU', value: 'sku' },
|
||||||
{ label: '入库日期', value: 'inbound_date' },
|
{ label: '入库日期', value: 'inbound_date' },
|
||||||
{ label: '条码', value: 'barcode' },
|
{ label: '条码', value: 'barcode' },
|
||||||
{ label: '序列号', value: 'serial_number' },
|
{ label: '序列号(SN)', value: 'serial_number' },
|
||||||
{ label: '批号', value: 'batch_number' },
|
{ label: '批号', value: 'batch_number' },
|
||||||
{ label: '状态', value: 'status' },
|
{ label: '库存状态', value: 'status' },
|
||||||
{ label: '质量状态', value: 'quality_status' },
|
{ label: '质量状态', value: 'quality_status' },
|
||||||
{ label: '入库量', value: 'in_quantity' },
|
{ label: '入库数量', value: 'in_quantity' },
|
||||||
{ label: '库存数', value: 'stock_quantity' },
|
{ label: '库存数', value: 'stock_quantity' },
|
||||||
{ label: '可用数', value: 'available_quantity' },
|
{ label: '可用数', value: 'available_quantity' },
|
||||||
{ label: '库位', value: 'warehouse_location' },
|
{ label: '库位', value: 'warehouse_location' },
|
||||||
@ -581,8 +581,8 @@ const fieldOptions = ref([
|
|||||||
{ label: '单件成本', value: 'unit_total_cost' },
|
{ label: '单件成本', value: 'unit_total_cost' },
|
||||||
{ label: '总成本', value: 'total_price' },
|
{ label: '总成本', value: 'total_price' },
|
||||||
{ label: '订单号', value: 'order_id' },
|
{ label: '订单号', value: 'order_id' },
|
||||||
{ label: '售价', value: 'sale_price' },
|
{ label: '产品定价', value: 'sale_price' },
|
||||||
{ label: '生产负责人', value: 'production_manager' },
|
{ label: '负责人', value: 'production_manager' },
|
||||||
])
|
])
|
||||||
const operatorOptions = ref([
|
const operatorOptions = ref([
|
||||||
{ label: '等于', value: '=' },
|
{ label: '等于', value: '=' },
|
||||||
|
|||||||
Reference in New Issue
Block a user