first commit

This commit is contained in:
2026-03-05 16:52:12 +08:00
commit 8ca2e6d52f
1899 changed files with 321565 additions and 0 deletions

View File

@@ -0,0 +1,343 @@
<!-- ERP 产品库存明细列表 -->
<template>
<doc-alert title="【库存】产品库存、库存明细" url="https://doc.iocoder.cn/erp/stock/" />
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="68px"
>
<el-form-item label="产品" prop="productId">
<el-select
v-model="queryParams.productId"
clearable
filterable
placeholder="请选择产品"
class="!w-240px"
>
<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="categoryId">
<el-select
v-model="queryParams.categoryId"
clearable
filterable
placeholder="请选择产品分类"
class="!w-240px"
>
<el-option
v-for="item in categoryList"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="仓库" prop="warehouseId">
<el-select
v-model="queryParams.warehouseId"
clearable
filterable
placeholder="请选择仓库"
class="!w-240px"
>
<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="bizType">
<el-select
v-model="queryParams.bizType"
placeholder="请选择操作类型"
clearable
class="!w-240px"
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.ERP_STOCK_RECORD_BIZ_TYPE)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="业务单号" prop="bizNo">
<el-input
v-model="queryParams.bizNo"
placeholder="请输入业务单号"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item label="创建时间" prop="createTime">
<el-date-picker
v-model="queryParams.createTime"
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')]"
class="!w-240px"
/>
</el-form-item>
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
<el-button
type="primary"
plain
@click="openForm('create')"
v-hasPermi="['erp:stock-record:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
<el-button
type="success"
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['erp:stock-record:export']"
>
<Icon icon="ep:download" class="mr-5px" /> 导出
</el-button>
<el-button
type="success"
plain
@click="handleExportProduct"
:loading="exportBatchLoading"
v-hasPermi="['erp:stock-record:export-product']"
>
<Icon icon="ep:download" class="mr-5px" /> 导出批次
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="产品名称" align="center" prop="productName" />
<el-table-column label="产品分类" align="center" prop="categoryName" />
<el-table-column label="产品单位" align="center" prop="unitName" />
<el-table-column label="仓库编号" align="center" prop="warehouseName" />
<el-table-column label="操作类型" align="center" prop="bizType" min-width="100">
<template #default="scope">
<dict-tag :type="DICT_TYPE.ERP_STOCK_RECORD_BIZ_TYPE" :value="scope.row.bizType" />
</template>
</el-table-column>
<el-table-column label="出入库单号" align="center" prop="bizNo" width="200" />
<el-table-column
label="出入库日期"
align="center"
prop="createTime"
:formatter="dateFormatter"
width="180px"
sortable
/>
<el-table-column
label="出入库数量"
align="center"
prop="count"
:formatter="erpCountTableColumnFormatter"
/>
<el-table-column
label="库存量"
align="center"
prop="totalCount"
:formatter="erpCountTableColumnFormatter"
/>
<el-table-column label="单价" align="center" prop="unitPrice" v-hasPermi="['erp:stock:goods-value']">
<template #default="scope">
{{ scope.row.unitPrice != null ? scope.row.unitPrice.toFixed(4) : '-' }}
</template>
</el-table-column>
<el-table-column label="货值" align="center" prop="stockValue" v-hasPermi="['erp:stock:goods-value']">
<template #default="scope">
{{ scope.row.stockValue != null ? scope.row.stockValue.toFixed(4) : '-' }}
</template>
</el-table-column>
<el-table-column label="操作人" align="center" prop="creatorName" />
<el-table-column label="操作" align="center" width="150">
<template #default="scope">
<el-button
link
type="primary"
@click="handleDetail(scope.row.bizId, scope.row)"
v-hasPermi="['erp:stock-record:review']"
:disabled="scope.row.bizType !== 90"
>
<Icon icon="ep:view" /> 查询
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 质检详情弹窗 -->
<QualityDetailDialog v-model:visible="dialogVisible" :quality-id="selectedQualityId" />
</template>
<script setup lang="ts">
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { StockRecordApi, StockRecordVO } from '@/api/erp/stock/record'
import { ProductApi, ProductVO } from '@/api/erp/product/product'
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
import { ProductCategoryApi } from '@/api/erp/product/category'
import { erpCountTableColumnFormatter } from '@/utils'
import QualityDetailDialog from './QualityDetailDialog.vue'
/** ERP 产品库存明细列表 */
defineOptions({ name: 'ErpStockRecord' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const loading = ref(true) // 列表的加载中
const list = ref<StockRecordVO[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
productId: undefined,
categoryId: undefined,
warehouseId: undefined,
bizType: undefined,
bizNo: undefined,
createTime: []
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
const exportBatchLoading = ref(false) // 导出批次的加载中
const productList = ref<ProductVO[]>([]) // 产品列表
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
const categoryList = ref<any[]>([]) // 产品分类列表
const isFinishedProduct = ref(false) // 是否是成品分类
const multipleSelection = ref<StockRecordVO[]>([]) // 选中的行
// 质检详情弹窗
const dialogVisible = ref(false)
const selectedQualityId = ref<number | undefined>(undefined)
/** 处理表格选择变化 */
const handleSelectionChange = (selection: StockRecordVO[]) => {
multipleSelection.value = selection
}
/** 查看详情 */
const handleDetail = (bizId: number, row: StockRecordVO) => {
// 传递行的ID而不是bizId
selectedQualityId.value = row.id
dialogVisible.value = true
}
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
const data = await StockRecordApi.getStockRecordPage(queryParams)
list.value = data.list
total.value = data.total
} finally {
loading.value = false
}
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields()
handleQuery()
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await StockRecordApi.exportStockRecord(queryParams)
download.excel(data, '产品库存明细.xls')
} catch (error) {
console.error(error)
} finally {
exportLoading.value = false
}
}
/** 导出批次按钮操作 */
const handleExportProduct = async () => {
try {
// 检查是否有选中的行
if (multipleSelection.value.length === 0) {
message.warning('请至少选择一条记录')
return
}
// 导出的二次确认
await message.exportConfirm()
// 获取选中行的ID
const ids = multipleSelection.value.map(item => item.id)
// 发起导出
exportBatchLoading.value = true
const data = await StockRecordApi.exportStockRecordWithQuality(ids)
download.excel(data, '产品批次质检明细.xls')
} catch (error) {
console.error(error)
} finally {
exportBatchLoading.value = false
}
}
/** 初始化 **/
onMounted(async () => {
// 产品列表
const res = await ProductApi.getProductSimpleList()
productList.value = res
// 获取分类列表
const categoryRes = await ProductCategoryApi.getProductCategorySimpleList()
categoryList.value = categoryRes
// 仓库列表
const warehouseRes = await WarehouseApi.getWarehouseSimpleList()
warehouseList.value = warehouseRes
// 加载列表
await getList()
})
</script>