2026-03-05 16:52:12 +08:00
|
|
|
<template>
|
2026-03-09 17:42:12 +08:00
|
|
|
<div class="mobile-stock-out">
|
|
|
|
|
<!-- 顶部搜索和操作 -->
|
|
|
|
|
<div class="mobile-header">
|
|
|
|
|
<div class="mobile-header__search">
|
2026-03-05 16:52:12 +08:00
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.no"
|
2026-03-09 17:42:12 +08:00
|
|
|
placeholder="搜索出库单号"
|
2026-03-05 16:52:12 +08:00
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
2026-03-09 17:42:12 +08:00
|
|
|
:prefix-icon="Search"
|
2026-03-05 16:52:12 +08:00
|
|
|
/>
|
2026-03-09 17:42:12 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="mobile-header__actions">
|
|
|
|
|
<el-button :icon="Filter" circle @click="filterVisible = true" />
|
|
|
|
|
<el-button type="primary" :icon="Plus" circle @click="openForm('create')" v-hasPermi="['erp:stock-out:create']" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 快捷筛选 -->
|
|
|
|
|
<div class="mobile-header__quick-filter">
|
|
|
|
|
<div class="quick-filter-item" :class="{ active: queryParams.status === undefined }" @click="handleQuickFilter(undefined)">全部</div>
|
|
|
|
|
<div class="quick-filter-item" :class="{ active: queryParams.status === 10 }" @click="handleQuickFilter(10)">待审核</div>
|
|
|
|
|
<div class="quick-filter-item" :class="{ active: queryParams.status === 20 }" @click="handleQuickFilter(20)">已审核</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 列表卡片 -->
|
|
|
|
|
<div class="mobile-list" v-loading="loading">
|
|
|
|
|
<div v-if="list.length === 0 && !loading" class="mobile-empty">
|
|
|
|
|
<el-empty description="暂无出库记录" />
|
|
|
|
|
</div>
|
|
|
|
|
<div v-for="item in list" :key="item.id" class="mobile-card" @click="handleRowClick(item, $event)">
|
|
|
|
|
<div class="mobile-card__header">
|
|
|
|
|
<span class="mobile-card__no">{{ item.no }}</span>
|
|
|
|
|
<dict-tag :type="DICT_TYPE.ERP_AUDIT_STATUS" :value="item.status" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__body">
|
|
|
|
|
<div class="mobile-card__row">
|
|
|
|
|
<span class="mobile-card__label">产品</span>
|
|
|
|
|
<span class="mobile-card__value mobile-card__value--ellipsis">{{ item.productNames || '-' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__row">
|
|
|
|
|
<span class="mobile-card__label">客户</span>
|
|
|
|
|
<span class="mobile-card__value">{{ item.customerName || '-' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__row">
|
|
|
|
|
<span class="mobile-card__label">出库时间</span>
|
|
|
|
|
<span class="mobile-card__value">{{ formatDate2(item.outTime) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__row">
|
|
|
|
|
<span class="mobile-card__label">创建人</span>
|
|
|
|
|
<span class="mobile-card__value">{{ item.creatorName || '-' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__nums">
|
|
|
|
|
<div class="mobile-card__num-item">
|
|
|
|
|
<div class="mobile-card__num-val">{{ erpCountTableColumnFormatter(item.totalCount) }}</div>
|
|
|
|
|
<div class="mobile-card__num-label">数量</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__num-item">
|
|
|
|
|
<div class="mobile-card__num-val mobile-card__num-val--price">{{ erpPriceTableColumnFormatter(item.totalPrice) }}</div>
|
|
|
|
|
<div class="mobile-card__num-label">金额</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mobile-card__footer">
|
|
|
|
|
<el-button size="small" @click.stop="openForm('detail', item.id)" v-hasPermi="['erp:stock-out:query']">详情</el-button>
|
|
|
|
|
<el-button size="small" type="primary" @click.stop="openForm('update', item.id)" v-hasPermi="['erp:stock-out:update']" :disabled="item.status === 20">编辑</el-button>
|
|
|
|
|
<el-button size="small" type="primary" @click.stop="handleUpdateStatus(item.id, 20)" v-hasPermi="['erp:stock-out:update-status']" v-if="item.status === 10">审批</el-button>
|
|
|
|
|
<el-button size="small" type="danger" @click.stop="handleUpdateStatus(item.id, 10)" v-hasPermi="['erp:stock-out:update-status']" v-else>反审批</el-button>
|
|
|
|
|
<el-button size="small" type="danger" @click.stop="handleDelete([item.id])" v-hasPermi="['erp:stock-out:delete']">删除</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-03-05 16:52:12 +08:00
|
|
|
|
|
|
|
|
<!-- 分页 -->
|
2026-03-09 17:42:12 +08:00
|
|
|
<div class="mobile-pagination" v-if="total > 0">
|
|
|
|
|
<Pagination :total="total" v-model:page="queryParams.pageNo" v-model:limit="queryParams.pageSize" :page-sizes="[10, 20]" layout="total, prev, pager, next" :pager-count="5" @pagination="getList" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 筛选抽屉 -->
|
|
|
|
|
<el-drawer v-model="filterVisible" title="筛选条件" direction="btt" size="70%">
|
|
|
|
|
<el-form :model="queryParams" ref="queryFormRef" label-position="top">
|
|
|
|
|
<el-form-item label="产品" prop="productId">
|
|
|
|
|
<el-select v-model="queryParams.productId" clearable filterable placeholder="请选择产品" style="width:100%">
|
|
|
|
|
<el-option v-for="item in productList" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="客户" prop="customerId">
|
|
|
|
|
<el-select v-model="queryParams.customerId" clearable filterable placeholder="请选择客户" style="width:100%">
|
|
|
|
|
<el-option v-for="item in customerList" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="出库时间" prop="outTime">
|
|
|
|
|
<el-date-picker v-model="queryParams.outTime" value-format="YYYY-MM-DD HH:mm:ss" type="daterange" start-placeholder="开始" end-placeholder="结束" :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]" style="width:100%" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="仓库" prop="warehouseId">
|
|
|
|
|
<el-select v-model="queryParams.warehouseId" clearable filterable placeholder="请选择仓库" style="width:100%">
|
|
|
|
|
<el-option v-for="item in warehouseList" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="创建人" prop="creator">
|
|
|
|
|
<el-select v-model="queryParams.creator" clearable filterable placeholder="请选择创建人" style="width:100%">
|
|
|
|
|
<el-option v-for="item in userList" :key="item.id" :label="item.nickname" :value="item.id" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="审核状态" prop="status">
|
|
|
|
|
<el-select v-model="queryParams.status" placeholder="请选择" clearable style="width:100%">
|
|
|
|
|
<el-option v-for="dict in getIntDictOptions(DICT_TYPE.ERP_AUDIT_STATUS)" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<el-button @click="resetQuery">重置</el-button>
|
|
|
|
|
<el-button type="primary" @click="handleFilterConfirm">确认筛选</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-drawer>
|
2026-03-05 16:52:12 +08:00
|
|
|
|
2026-03-09 17:42:12 +08:00
|
|
|
<!-- 表单弹窗 -->
|
|
|
|
|
<StockOutForm ref="formRef" @success="getList" />
|
|
|
|
|
</div>
|
2026-03-05 16:52:12 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-03-09 17:42:12 +08:00
|
|
|
import { ref, reactive, onMounted } from 'vue'
|
2026-03-05 16:52:12 +08:00
|
|
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
2026-03-09 17:42:12 +08:00
|
|
|
import { dateFormatter2,formatDate2 } from '@/utils/formatTime'
|
|
|
|
|
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
2026-03-05 16:52:12 +08:00
|
|
|
import { StockOutApi, StockOutVO } from '@/api/erp/stock/out'
|
|
|
|
|
import StockOutForm from './StockOutForm.vue'
|
|
|
|
|
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
|
|
|
|
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
2026-03-09 17:42:12 +08:00
|
|
|
import { CustomerApi, CustomerVO } from '@/api/erp/sale/customer'
|
2026-03-05 16:52:12 +08:00
|
|
|
import { UserVO } from '@/api/system/user'
|
|
|
|
|
import * as UserApi from '@/api/system/user'
|
2026-03-09 17:42:12 +08:00
|
|
|
import { useMessage } from '@/hooks/web/useMessage'
|
|
|
|
|
import { Search, Plus, Filter } from '@element-plus/icons-vue'
|
2026-03-05 16:52:12 +08:00
|
|
|
|
|
|
|
|
/** ERP 其它出库单列表 */
|
|
|
|
|
defineOptions({ name: 'ErpStockOut' })
|
|
|
|
|
|
2026-03-09 17:42:12 +08:00
|
|
|
const message = useMessage()
|
|
|
|
|
const loading = ref(true)
|
|
|
|
|
const list = ref<StockOutVO[]>([])
|
|
|
|
|
const total = ref(0)
|
|
|
|
|
const filterVisible = ref(false)
|
2026-03-05 16:52:12 +08:00
|
|
|
const queryParams = reactive({
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
no: undefined,
|
|
|
|
|
productId: undefined,
|
|
|
|
|
customerId: undefined,
|
|
|
|
|
warehouseId: undefined,
|
|
|
|
|
outTime: [],
|
|
|
|
|
status: undefined,
|
|
|
|
|
remark: undefined,
|
|
|
|
|
creator: undefined
|
|
|
|
|
})
|
2026-03-09 17:42:12 +08:00
|
|
|
const queryFormRef = ref()
|
|
|
|
|
const productList = ref<ProductVO[]>([])
|
|
|
|
|
const warehouseList = ref<WarehouseVO[]>([])
|
|
|
|
|
const customerList = ref<CustomerVO[]>([])
|
|
|
|
|
const userList = ref<UserVO[]>([])
|
2026-03-05 16:52:12 +08:00
|
|
|
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = await StockOutApi.getStockOutPage(queryParams)
|
|
|
|
|
list.value = data.list
|
|
|
|
|
total.value = data.total
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const resetQuery = () => {
|
2026-03-09 17:42:12 +08:00
|
|
|
queryFormRef.value?.resetFields()
|
|
|
|
|
queryParams.outTime = []
|
|
|
|
|
queryParams.no = undefined
|
|
|
|
|
handleQuery()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 筛选确认 */
|
|
|
|
|
const handleFilterConfirm = () => {
|
|
|
|
|
filterVisible.value = false
|
2026-03-05 16:52:12 +08:00
|
|
|
handleQuery()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const formRef = ref()
|
|
|
|
|
const openForm = (type: string, id?: number) => {
|
|
|
|
|
formRef.value.open(type, id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleDelete = async (ids: number[]) => {
|
|
|
|
|
try {
|
|
|
|
|
await message.delConfirm()
|
|
|
|
|
await StockOutApi.deleteStockOut(ids)
|
2026-03-09 17:42:12 +08:00
|
|
|
message.success('删除成功')
|
2026-03-05 16:52:12 +08:00
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleUpdateStatus = async (id: number, status: number) => {
|
|
|
|
|
try {
|
|
|
|
|
await message.confirm(`确定${status === 20 ? '审批' : '反审批'}该出库单吗?`)
|
|
|
|
|
await StockOutApi.updateStockOutStatus(id, status)
|
|
|
|
|
message.success(`${status === 20 ? '审批' : '反审批'}成功`)
|
|
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 17:42:12 +08:00
|
|
|
const handleQuickFilter = (status: number | undefined) => {
|
|
|
|
|
queryParams.status = status
|
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
|
getList()
|
2026-03-05 16:52:12 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-09 17:42:12 +08:00
|
|
|
const handleRowClick = (row: StockOutVO, event?: MouseEvent) => {
|
|
|
|
|
if (event) {
|
|
|
|
|
const target = event.target as HTMLElement
|
|
|
|
|
if (target.closest('button') || target.closest('.el-button')) return
|
2026-03-05 16:52:12 +08:00
|
|
|
}
|
2026-03-09 17:42:12 +08:00
|
|
|
if (row.status === 20) openForm('detail', row.id)
|
|
|
|
|
else if (row.status === 10) openForm('update', row.id)
|
2026-03-05 16:52:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await getList()
|
|
|
|
|
productList.value = await ProductApi.getProductSimpleList()
|
|
|
|
|
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
|
|
|
|
|
customerList.value = await CustomerApi.getCustomerSimpleList()
|
|
|
|
|
userList.value = await UserApi.getSimpleUserList()
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2026-03-09 17:42:12 +08:00
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.mobile-stock-out {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
.mobile-header { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
|
|
|
|
|
.mobile-header__search { flex: 1; }
|
|
|
|
|
.mobile-header__actions { display: flex; gap: 4px; flex-shrink: 0; }
|
|
|
|
|
|
|
|
|
|
.mobile-header__quick-filter { display: flex; gap: 12px; margin: 8px 0; }
|
|
|
|
|
.quick-filter-item { padding: 4px 12px; font-size: 14px; border-radius: 20px; cursor: pointer; color: #909399; background: transparent; transition: all 0.2s; }
|
|
|
|
|
.quick-filter-item.active { color: #fff; background: #409eff; }
|
|
|
|
|
|
|
|
|
|
.mobile-list { display: flex; flex-direction: column; gap: 10px; }
|
|
|
|
|
.mobile-empty { padding: 40px 0; }
|
|
|
|
|
|
|
|
|
|
.mobile-card {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 14px;
|
|
|
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.06);
|
|
|
|
|
}
|
|
|
|
|
.mobile-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
|
|
|
|
|
.mobile-card__no { font-weight: 600; font-size: 15px; color: #303133; }
|
|
|
|
|
.mobile-card__body { font-size: 13px; }
|
|
|
|
|
.mobile-card__row { display: flex; justify-content: space-between; padding: 3px 0; }
|
|
|
|
|
.mobile-card__label { color: #909399; flex-shrink: 0; margin-right: 12px; }
|
|
|
|
|
.mobile-card__value { color: #606266; text-align: right; }
|
|
|
|
|
.mobile-card__value--ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
|
|
|
|
|
|
|
|
|
|
.mobile-card__nums { display: flex; justify-content: space-around; margin-top: 10px; padding: 10px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
|
|
|
|
|
.mobile-card__num-item { text-align: center; }
|
|
|
|
|
.mobile-card__num-val { font-size: 15px; font-weight: 600; color: #303133; }
|
|
|
|
|
.mobile-card__num-val--price { color: #e6a23c; }
|
|
|
|
|
.mobile-card__num-label { font-size: 11px; color: #909399; margin-top: 2px; }
|
|
|
|
|
|
|
|
|
|
.mobile-card__footer { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
|
|
|
|
|
.mobile-pagination {
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
:deep(.el-pagination) { flex-wrap: wrap; justify-content: center; }
|
|
|
|
|
}
|
|
|
|
|
</style>
|