feat: add column sorting and advanced filtering for purchase inbound
Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) <aider@aider.chat>
This commit is contained in:
@ -106,7 +106,7 @@ def search_base():
|
||||
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# 1. 获取列表 (修改:接收 category 和 material_type)
|
||||
# 1. 获取列表 (修改:接收 category, material_type, orderByColumn, isAsc, advancedFilters)
|
||||
# ------------------------------------------------------------------
|
||||
@inbound_buy_bp.route('/list', methods=['GET'])
|
||||
@permission_required('inbound_buy')
|
||||
@ -121,11 +121,24 @@ def get_list():
|
||||
material_type = request.args.get('material_type', '')
|
||||
company = request.args.get('company', '')
|
||||
|
||||
# 排序参数
|
||||
order_by = request.args.get('orderByColumn', '').strip()
|
||||
is_asc = request.args.get('isAsc', '').strip()
|
||||
|
||||
# 高级筛选参数
|
||||
advanced_filters_raw = request.args.get('advancedFilters', '[]')
|
||||
import json
|
||||
try:
|
||||
advanced_filters = json.loads(advanced_filters_raw) if advanced_filters_raw else []
|
||||
except json.JSONDecodeError:
|
||||
advanced_filters = []
|
||||
|
||||
# 状态参数处理
|
||||
statuses_str = request.args.get('statuses', '')
|
||||
statuses = statuses_str.split(',') if statuses_str else []
|
||||
|
||||
result = BuyInboundService.get_list(page, limit, keyword, statuses, category, material_type, company)
|
||||
result = BuyInboundService.get_list(page, limit, keyword, statuses, category, material_type, company,
|
||||
order_by, is_asc, advanced_filters)
|
||||
# 字段级脱敏
|
||||
user_permissions = get_current_user_permissions()
|
||||
if result.get('items'):
|
||||
|
||||
@ -237,11 +237,13 @@ class BuyInboundService:
|
||||
raise e
|
||||
|
||||
# ============================================================
|
||||
# 5. 获取列表
|
||||
# 5. 获取列表 (支持排序和高级筛选)
|
||||
# ============================================================
|
||||
@staticmethod
|
||||
def get_list(page, limit, keyword=None, statuses=None, category=None, material_type=None, company=None):
|
||||
def get_list(page, limit, keyword=None, statuses=None, category=None, material_type=None, company=None,
|
||||
order_by='', is_asc='', advanced_filters=None):
|
||||
try:
|
||||
from sqlalchemy import and_, or_
|
||||
query = db.session.query(StockBuy).outerjoin(MaterialBase, StockBuy.base_id == MaterialBase.id)
|
||||
|
||||
# 1. 通用关键词搜索
|
||||
@ -279,7 +281,109 @@ class BuyInboundService:
|
||||
else:
|
||||
query = query.filter(and_(StockBuy.status.in_(statuses), StockBuy.stock_quantity > 0))
|
||||
|
||||
pagination = query.order_by(StockBuy.in_date.desc()).paginate(page=page, per_page=limit, error_out=False)
|
||||
# 5. 高级动态筛选
|
||||
if advanced_filters:
|
||||
allowed_fields = {
|
||||
'company_name': MaterialBase.company_name,
|
||||
'material_name': MaterialBase.name,
|
||||
'material_type': MaterialBase.material_type,
|
||||
'category': MaterialBase.category,
|
||||
'spec_model': MaterialBase.spec_model,
|
||||
'unit': MaterialBase.unit,
|
||||
'sku': StockBuy.sku,
|
||||
'barcode': StockBuy.barcode,
|
||||
'batch_number': StockBuy.batch_number,
|
||||
'serial_number': StockBuy.serial_number,
|
||||
'warehouse_location': StockBuy.warehouse_location,
|
||||
'status': StockBuy.status,
|
||||
'inspection_status': StockBuy.inspection_status,
|
||||
'qty_inbound': StockBuy.in_quantity,
|
||||
'qty_stock': StockBuy.stock_quantity,
|
||||
'qty_available': StockBuy.available_quantity,
|
||||
'unit_price': StockBuy.pre_tax_unit_price,
|
||||
'total_price': StockBuy.total_price,
|
||||
'tax_rate': StockBuy.tax_rate,
|
||||
'currency': StockBuy.currency,
|
||||
'exchange_rate': StockBuy.exchange_rate,
|
||||
'supplier_name': StockBuy.supplier_name,
|
||||
'purchaser': StockBuy.buyer_name,
|
||||
'purchaser_email': StockBuy.buyer_email,
|
||||
'source_link': StockBuy.original_link,
|
||||
'detail_link': StockBuy.detail_link,
|
||||
}
|
||||
filter_conditions = []
|
||||
for condition in advanced_filters:
|
||||
field = condition.get('field')
|
||||
operator = condition.get('operator')
|
||||
value = condition.get('value')
|
||||
if not field or not operator or value is None:
|
||||
continue
|
||||
column = allowed_fields.get(field)
|
||||
if column is None:
|
||||
continue
|
||||
if operator == 'eq':
|
||||
filter_conditions.append(column == value)
|
||||
elif operator == 'ne':
|
||||
filter_conditions.append(column != value)
|
||||
elif operator == 'contains':
|
||||
filter_conditions.append(column.ilike(f'%{value}%'))
|
||||
elif operator == 'ge':
|
||||
try:
|
||||
num_val = float(value)
|
||||
filter_conditions.append(column >= num_val)
|
||||
except ValueError:
|
||||
continue
|
||||
elif operator == 'le':
|
||||
try:
|
||||
num_val = float(value)
|
||||
filter_conditions.append(column <= num_val)
|
||||
except ValueError:
|
||||
continue
|
||||
if filter_conditions:
|
||||
query = query.filter(and_(*filter_conditions))
|
||||
|
||||
# 6. 排序处理
|
||||
if order_by:
|
||||
sort_field_map = {
|
||||
'company_name': MaterialBase.company_name,
|
||||
'material_name': MaterialBase.name,
|
||||
'material_type': MaterialBase.material_type,
|
||||
'category': MaterialBase.category,
|
||||
'spec_model': MaterialBase.spec_model,
|
||||
'unit': MaterialBase.unit,
|
||||
'sku': StockBuy.sku,
|
||||
'barcode': StockBuy.barcode,
|
||||
'inbound_date': StockBuy.in_date,
|
||||
'serial_number': StockBuy.serial_number,
|
||||
'batch_number': StockBuy.batch_number,
|
||||
'status': StockBuy.status,
|
||||
'inspection_status': StockBuy.inspection_status,
|
||||
'qty_inbound': StockBuy.in_quantity,
|
||||
'qty_stock': StockBuy.stock_quantity,
|
||||
'qty_available': StockBuy.available_quantity,
|
||||
'warehouse_loc': StockBuy.warehouse_location,
|
||||
'unit_price': StockBuy.pre_tax_unit_price,
|
||||
'total_price': StockBuy.total_price,
|
||||
'tax_rate': StockBuy.tax_rate,
|
||||
'currency': StockBuy.currency,
|
||||
'exchange_rate': StockBuy.exchange_rate,
|
||||
'supplier_name': StockBuy.supplier_name,
|
||||
'purchaser': StockBuy.buyer_name,
|
||||
'purchaser_email': StockBuy.buyer_email,
|
||||
'source_link': StockBuy.original_link,
|
||||
'detail_link': StockBuy.detail_link,
|
||||
}
|
||||
column = sort_field_map.get(order_by)
|
||||
if column:
|
||||
if is_asc == 'asc':
|
||||
query = query.order_by(column.asc())
|
||||
elif is_asc == 'desc':
|
||||
query = query.order_by(column.desc())
|
||||
else:
|
||||
# 默认排序
|
||||
query = query.order_by(StockBuy.in_date.desc())
|
||||
|
||||
pagination = query.paginate(page=page, per_page=limit, error_out=False)
|
||||
items = []
|
||||
for item in pagination.items:
|
||||
items.append(item.to_dict()) # 直接使用 model 的 to_dict
|
||||
|
||||
@ -53,6 +53,33 @@
|
||||
|
||||
<el-button type="primary" plain class="search-btn" @click="fetchData">搜索</el-button>
|
||||
<el-button class="reset-btn" @click="resetQuery">重置</el-button>
|
||||
<el-popover
|
||||
v-model:visible="advancedFilterVisible"
|
||||
placement="bottom"
|
||||
title="高级筛选"
|
||||
width="600"
|
||||
trigger="manual">
|
||||
<template #reference>
|
||||
<el-button plain @click="advancedFilterVisible = !advancedFilterVisible">高级筛选</el-button>
|
||||
</template>
|
||||
<div class="advanced-filter">
|
||||
<div v-for="(condition, index) in advancedConditions" :key="index" class="condition-row" style="display: flex; align-items: center; margin-bottom: 10px;">
|
||||
<el-select v-model="condition.field" placeholder="字段" style="width: 180px">
|
||||
<el-option v-for="field in fieldOptions" :key="field.value" :label="field.label" :value="field.value" />
|
||||
</el-select>
|
||||
<el-select v-model="condition.operator" placeholder="操作符" style="width: 120px; margin-left: 8px">
|
||||
<el-option v-for="op in operatorOptions" :key="op.value" :label="op.label" :value="op.value" />
|
||||
</el-select>
|
||||
<el-input v-model="condition.value" placeholder="值" style="width: 180px; margin-left: 8px" />
|
||||
<el-button v-if="advancedConditions.length > 1" type="danger" link @click="removeCondition(index)" style="margin-left: 8px">删除</el-button>
|
||||
</div>
|
||||
<div style="margin-top: 12px">
|
||||
<el-button type="primary" link @click="addCondition">添加条件</el-button>
|
||||
<el-button @click="applyAdvancedFilter" type="primary">应用筛选</el-button>
|
||||
<el-button @click="resetAdvancedFilter">重置</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</el-popover>
|
||||
</div>
|
||||
|
||||
<div class="right-actions" style="flex-wrap: wrap;">
|
||||
@ -90,6 +117,7 @@
|
||||
class="modern-table"
|
||||
highlight-current-row
|
||||
header-cell-class-name="table-header-gray"
|
||||
@sort-change="handleSortChange"
|
||||
>
|
||||
<template v-for="col in allColumns" :key="col.prop">
|
||||
<el-table-column
|
||||
@ -98,6 +126,7 @@
|
||||
:label="col.label"
|
||||
:min-width="col.minWidth || '140'"
|
||||
show-overflow-tooltip
|
||||
:sortable="isColumnSortable(col.prop) ? 'custom' : false"
|
||||
>
|
||||
<template #default="scope" v-if="col.prop === 'material_name'">
|
||||
<span class="clickable-text" @click="handleUpdate(scope.row)">
|
||||
@ -723,7 +752,10 @@ const queryParams = reactive({
|
||||
category: '',
|
||||
material_type: '',
|
||||
company: '',
|
||||
statuses: ['在库', '借库']
|
||||
statuses: ['在库', '借库'],
|
||||
orderByColumn: '',
|
||||
isAsc: undefined as string | undefined,
|
||||
advancedFilters: [] as any[]
|
||||
})
|
||||
|
||||
const materialOptions = ref<any[]>([])
|
||||
@ -750,6 +782,44 @@ const cameraRef = ref<InstanceType<typeof WebRtcCamera> | null>(null)
|
||||
const currentCameraField = ref<'arrival_photo' | 'inspection_report'>('arrival_photo')
|
||||
const inspection_report_url = ref('')
|
||||
|
||||
const advancedFilterVisible = ref(false)
|
||||
const advancedConditions = ref([{ field: '', operator: '', value: '' }])
|
||||
const fieldOptions = ref([
|
||||
{ value: 'company_name', label: '所属公司' },
|
||||
{ value: 'material_name', label: '名称' },
|
||||
{ value: 'material_type', label: '类型' },
|
||||
{ value: 'category', label: '类别' },
|
||||
{ value: 'spec_model', label: '规格型号' },
|
||||
{ value: 'unit', label: '单位' },
|
||||
{ value: 'sku', label: 'SKU' },
|
||||
{ value: 'barcode', label: '条码' },
|
||||
{ value: 'batch_number', label: '批号' },
|
||||
{ value: 'serial_number', label: '序列号' },
|
||||
{ value: 'warehouse_location', label: '库位' },
|
||||
{ value: 'status', label: '状态' },
|
||||
{ value: 'inspection_status', label: '到检状态' },
|
||||
{ value: 'qty_inbound', label: '入库量' },
|
||||
{ value: 'qty_stock', label: '库存数' },
|
||||
{ value: 'qty_available', label: '可用数' },
|
||||
{ value: 'unit_price', label: '不含税单价' },
|
||||
{ value: 'total_price', label: '不含税总价' },
|
||||
{ value: 'tax_rate', label: '税率' },
|
||||
{ value: 'currency', label: '币种' },
|
||||
{ value: 'exchange_rate', label: '汇率' },
|
||||
{ value: 'supplier_name', label: '供应商' },
|
||||
{ value: 'purchaser', label: '采购人' },
|
||||
{ value: 'purchaser_email', label: '采购邮箱' },
|
||||
{ value: 'source_link', label: '原始链接' },
|
||||
{ value: 'detail_link', label: '详情链接' },
|
||||
])
|
||||
const operatorOptions = ref([
|
||||
{ value: 'eq', label: '等于' },
|
||||
{ value: 'ne', label: '不等于' },
|
||||
{ value: 'contains', label: '包含' },
|
||||
{ value: 'ge', label: '大于等于' },
|
||||
{ value: 'le', label: '小于等于' }
|
||||
])
|
||||
|
||||
// 基础列
|
||||
const baseColumns = [
|
||||
{prop: 'company_name', label: '所属公司'},
|
||||
@ -1123,7 +1193,10 @@ const fetchData = async () => {
|
||||
try {
|
||||
const params = {
|
||||
...queryParams,
|
||||
statuses: queryParams.statuses.join(',')
|
||||
statuses: queryParams.statuses.join(','),
|
||||
orderByColumn: queryParams.orderByColumn,
|
||||
isAsc: queryParams.isAsc,
|
||||
advancedFilters: JSON.stringify(queryParams.advancedFilters)
|
||||
}
|
||||
const res: any = await getBuyList(params)
|
||||
tableData.value = res.data.items || []
|
||||
@ -1347,6 +1420,42 @@ const handleCameraConfirm = async (file: File) => {
|
||||
}
|
||||
}
|
||||
|
||||
const addCondition = () => {
|
||||
advancedConditions.value.push({ field: '', operator: '', value: '' })
|
||||
}
|
||||
const removeCondition = (index: number) => {
|
||||
advancedConditions.value.splice(index, 1)
|
||||
}
|
||||
const applyAdvancedFilter = () => {
|
||||
const validConditions = advancedConditions.value.filter(c => c.field && c.operator && c.value !== '')
|
||||
queryParams.advancedFilters = validConditions
|
||||
advancedFilterVisible.value = false
|
||||
queryParams.page = 1
|
||||
fetchData()
|
||||
}
|
||||
const resetAdvancedFilter = () => {
|
||||
advancedConditions.value = [{ field: '', operator: '', value: '' }]
|
||||
queryParams.advancedFilters = []
|
||||
advancedFilterVisible.value = false
|
||||
queryParams.page = 1
|
||||
fetchData()
|
||||
}
|
||||
const isColumnSortable = (prop: string) => {
|
||||
const sortableColumns = ['company_name', 'material_name', 'material_type', 'category', 'spec_model', 'unit', 'sku', 'barcode', 'inbound_date', 'serial_number', 'batch_number', 'status', 'inspection_status', 'qty_inbound', 'qty_stock', 'qty_available', 'warehouse_loc', 'unit_price', 'total_price', 'tax_rate', 'currency', 'exchange_rate', 'supplier_name', 'purchaser', 'purchaser_email', 'source_link', 'detail_link']
|
||||
return sortableColumns.includes(prop)
|
||||
}
|
||||
const handleSortChange = ({ column, prop, order }: any) => {
|
||||
if (prop && isColumnSortable(prop)) {
|
||||
queryParams.orderByColumn = prop
|
||||
queryParams.isAsc = order === 'ascending' ? 'asc' : order === 'descending' ? 'desc' : undefined
|
||||
} else {
|
||||
queryParams.orderByColumn = ''
|
||||
queryParams.isAsc = undefined
|
||||
}
|
||||
queryParams.page = 1
|
||||
fetchData()
|
||||
}
|
||||
|
||||
const handleDelete = async (row: any) => { try { await deleteBuyInbound(row.id); ElMessage.success('删除成功'); fetchData() } catch (e) { ElMessage.error('删除失败') } }
|
||||
|
||||
// ------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user