You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
besure_web/src/views/erp/stock/in/index.vue

679 lines
22 KiB
Vue

<template>
<div class="dv-repair-page">
<template v-if="!formVisible">
<ContentWrap>
<!-- 搜索工作栏 -->
<div class="stock-in__header">
<div v-for="card in statusCards" :key="card.key" class="stock-in__stat"
:class="{ 'is-active': currentStatusKey === card.key }" @click="changeStatus(card.key, card.statusList)">
<div class="stock-in__stat-title">{{ card.label }}</div>
<div class="stock-in__stat-value">{{ card.value }}</div>
</div>
</div>
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="auto"
>
<el-form-item :label="t('ErpStock.In.no')" prop="no">
<el-input
v-model="queryParams.no"
:placeholder="t('ErpStock.In.placeholderNo')"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item :label="t('ErpStock.In.product')" prop="productId">
<el-select
v-model="queryParams.productId"
clearable
filterable
:placeholder="t('ErpStock.In.placeholderProduct')"
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="t('ErpStock.In.inTime')" prop="inTime">
<el-date-picker
v-model="queryParams.inTime"
value-format="YYYY-MM-DD HH:mm:ss"
type="daterange"
:start-placeholder="t('common.startTimeText')"
:end-placeholder="t('common.endTimeText')"
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
class="!w-220px"
/>
</el-form-item>
<el-form-item :label="t('ErpStock.In.warehouse')" prop="warehouseId" v-show="showAllFilters">
<el-select
v-model="queryParams.warehouseId"
clearable
filterable
:placeholder="t('ErpStock.In.placeholderWarehouse')"
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="t('ErpStock.In.creator')" prop="creator" v-show="showAllFilters">
<el-select
v-model="queryParams.creator"
clearable
filterable
:placeholder="t('ErpStock.In.placeholderCreator')"
class="!w-240px"
>
<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="t('ErpStock.In.status')" prop="statusList" v-show="showAllFilters">
<el-select
v-model="queryParams.statusList"
:placeholder="t('ErpStock.In.placeholderStatus')"
clearable
multiple
collapse-tags
collapse-tags-tooltip
class="!w-240px"
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.WAREHOUSE_RECEIVING_STATUS)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item :label="t('ErpStock.In.remark')" prop="remark" v-show="showAllFilters">
<el-input
v-model="queryParams.remark"
:placeholder="t('ErpStock.In.placeholderRemark')"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item v-if="filterCount > 3">
<el-button type="text" class="text-primary" @click="toggleFilters">
<Icon :icon="showAllFilters ? 'ep:arrow-up' : 'ep:arrow-down'" class="mr-5px" />
{{ showAllFilters ? t('FactoryModeling.FactoryStructure.collapseText') :
t('FactoryModeling.FactoryStructure.expandText') }}
</el-button>
</el-form-item>
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> {{ t('common.query') }}</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> {{ t('common.reset') }}</el-button>
<el-button
type="primary"
plain
@click="openForm('create')"
v-hasPermi="['erp:stock-in:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> {{ t('action.add') }}
</el-button>
<el-button
type="success"
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['erp:stock-in:export']"
>
<Icon icon="ep:download" class="mr-5px" /> {{ t('action.export') }}
</el-button>
<el-button
type="danger"
plain
@click="handleDelete(selectionList.map((item) => item.id))"
v-hasPermi="['erp:stock-in:delete']"
:disabled="selectionList.length === 0"
>
<Icon icon="ep:delete" class="mr-5px" /> {{ t('action.del') }}
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-tabs v-model="activeName" @tab-click="handleTabClick">
<el-tab-pane
v-for="dict in stockInTypeOptions"
:key="dict.value"
:label="dict.label"
:name="dict.value"
/>
</el-tabs>
<el-table
ref="tableRef"
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
:max-height="planTableMaxHeight"
@selection-change="handleSelectionChange"
>
<el-table-column width="30" :label="t('common.select')" type="selection" />
<el-table-column
min-width="180"
:label="t('ErpStock.In.no')"
align="center"
prop="no"
sortable />
<el-table-column
:label="t(`ErpStock.In.${inTypeToInfoKey(queryParams.inType)}`)"
align="left"
sortable
prop="productNames"
min-width="200"
/>
<el-table-column
:label="t('ErpStock.In.inTime')"
align="center"
prop="inTime"
:formatter="dateFormatter2"
width="120px"
sortable />
<el-table-column :label="t('ErpStock.In.creator')" align="center" prop="creatorName" sortable />
<el-table-column
:label="t('ErpStock.In.count')"
align="right"
sortable
prop="totalCount"
:formatter="erpCountTableColumnFormatter"
/>
<el-table-column
:label="t('ErpStock.In.status')"
align="center"
fixed="right"
width="100"
prop="status"
sortable>
<template #default="scope">
<dict-tag :type="DICT_TYPE.WAREHOUSE_RECEIVING_STATUS" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column
:label="t('ErpStock.In.auditUser')"
align="right"
sortable
prop="auditUserName"
/>
<el-table-column :label="t('common.operate')" align="center" fixed="right" width="300">
<template #default="scope">
<el-button
link
@click="openForm('detail', scope.row.id)"
v-hasPermi="['erp:stock-in:query']"
>
{{ t('action.detail') }}
</el-button>
<el-button
link
type="primary"
@click="openForm('update', scope.row.id)"
v-hasPermi="['erp:stock-in:update']"
:disabled="scope.row.status === 20"
>
{{ t('action.edit') }}
</el-button>
<el-button
v-if="(isAuditDisabled ? [0, 1, 10] : [0, 1]).includes(Number(scope.row.status))"
link
type="primary"
@click="openSubmitDialog(scope.row)"
v-hasPermi="['erp:stock-in:update-status']"
>
{{ submitActionText }}
</el-button>
<el-button
v-if="!isAuditDisabled && Number(scope.row.status) === 10"
link
type="primary"
@click="openAuditDialog(scope.row, 20)"
v-hasPermi="['erp:stock-in:update-status']"
>
{{ t('ErpStock.In.auditApprove') }}
</el-button>
<el-button
v-if="!isAuditDisabled && Number(scope.row.status) === 10"
link
type="danger"
@click="openAuditDialog(scope.row, 1)"
v-hasPermi="['erp:stock-in:update-status']"
>
{{ t('ErpStock.In.auditReject') }}
</el-button>
<el-button
link
type="danger"
@click="handleDelete([scope.row.id])"
v-hasPermi="['erp:stock-in:delete']"
>
{{ t('action.del') }}
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
</template>
<!-- 表单面板:添加/修改 -->
<StockInForm v-else ref="formRef" @success="getList" @closed="formVisible = false" />
<Dialog :title="submitActionText" v-model="submitDialogVisible" width="520px">
<el-form :model="submitFormData" label-width="90px">
<el-form-item :label="t('ErpStock.In.remark')" prop="remark">
<el-input
v-model="submitFormData.remark"
type="textarea"
:rows="3"
:placeholder="t('ErpStock.In.placeholderSubmitRemark')"
/>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="submitDialogVisible = false">{{ t('common.cancel') }}</el-button>
<el-button type="primary" :loading="actionLoading" @click="handleSubmitStockIn">{{ t('common.ok') }}</el-button>
</template>
</Dialog>
<Dialog :title="auditDialogTitle" v-model="auditDialogVisible" width="520px">
<el-form ref="auditFormRef" :model="auditFormData" label-width="90px">
<el-form-item :label="t('ErpStock.In.remark')" prop="remark">
<el-input
v-model="auditFormData.remark"
type="textarea"
:rows="3"
:placeholder="auditRemarkPlaceholder"
/>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="auditDialogVisible = false">{{ t('common.cancel') }}</el-button>
<el-button type="primary" :loading="actionLoading" @click="handleAuditStockIn">{{ t('common.ok') }}</el-button>
</template>
</Dialog>
</div>
</template>
<script setup lang="ts">
import { getIntDictOptions, getStrDictOptions, DICT_TYPE } from '@/utils/dict'
import { dateFormatter2 } from '@/utils/formatTime'
import download from '@/utils/download'
import { StockInApi, StockInVO } from '@/api/erp/stock/in'
import StockInForm from './StockInForm.vue'
import { ProductApi, ProductVO } from '@/api/erp/product/product'
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
import { SupplierApi, SupplierVO } from '@/api/erp/purchase/supplier'
import { UserVO } from '@/api/system/user'
import * as UserApi from '@/api/system/user'
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
import * as ConfigApi from '@/api/infra/config'
/** ERP 其它入库单列表 */
defineOptions({ name: 'ErpStockIn' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const loading = ref(true) // 列表的加载中
const list = ref<StockInVO[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const tableRef = ref()
const planTableMaxHeight = ref(520)
const planPaginationRef = ref<HTMLElement>()
const updatePlanTableMaxHeight = async () => {
await nextTick()
const tableTop = tableRef.value?.$el?.getBoundingClientRect().top ?? 0
const paginationHeight = planPaginationRef.value?.getBoundingClientRect().height ?? 72
const pageBottomGap = 56
const availableHeight = window.innerHeight - tableTop - paginationHeight - pageBottomGap
planTableMaxHeight.value = Math.min(window.innerHeight, Math.max(240, Math.floor(availableHeight)))
}
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
no: undefined,
productId: undefined,
supplierId: undefined,
inTime: [],
statusList: [],
remark: undefined,
inType: undefined,
creator: undefined
})
const stockInTypeOptions = computed(() => getStrDictOptions(DICT_TYPE.WAREHOUSE_DOCUMENT_TYPES))
const inTypeToInfoKey = (inType: string) => {
const map: Record<string, string> = {
'产品入库': 'productInfo',
'物料入库': 'materialInfo',
'备件入库': 'sparePartInfo'
}
return map[inType] || 'productInfo'
}
const activeName = ref('')
const queryFormRef = ref() // 搜索的表单
const currentStatusKey = ref('all')
const counters = reactive({
allCount: 0,
waitInCount: 0,
rejectedCount: 0,
auditingCount: 0,
inStockCount: 0
})
const statusCards = computed(() => [
{ key: 'all', label: t('ErpStock.In.all'), value: counters.allCount, statusList: [] },
{ key: 'waitIn', label: t('ErpStock.In.waitIn'), value: counters.waitInCount, statusList: [0] },
{ key: 'rejected', label: t('ErpStock.In.rejected'), value: counters.rejectedCount, statusList: [1] },
{ key: 'auditing', label: t('ErpStock.In.auditing'), value: counters.auditingCount, statusList: [10] },
{ key: 'inStock', label: t('ErpStock.In.inStock'), value: counters.inStockCount, statusList: [20] }
])
const changeStatus = (key: string, statusList: number[]) => {
currentStatusKey.value = key
queryParams.statusList = statusList
handleQuery()
}
const exportLoading = ref(false) // 导出的加载中
const showAllFilters = ref(false)
const DEFAULT_STATUS_LIST = [0, 1, 10]
const useInitialStatusFilter = ref(true)
const filterCount = 7
const toggleFilters = () => {
showAllFilters.value = !showAllFilters.value
updatePlanTableMaxHeight()
}
const productList = ref<ProductVO[]>([]) // 产品列表
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
const supplierList = ref<SupplierVO[]>([]) // 供应商列表
const userList = ref<UserVO[]>([]) // 用户列表
const formVisible = ref(false) // 表单是否可见
const actionLoading = ref(false)
const isAuditDisabled = ref(false)
const submitActionText = computed(() => isAuditDisabled.value ? '入库' : t('ErpStock.In.submitAudit'))
const submitDialogVisible = ref(false)
const submitFormData = reactive({
id: '',
status: '',
remark: ''
})
const auditDialogVisible = ref(false)
const auditFormRef = ref()
const auditFormData = reactive({
id: '',
status: '',
remark: ''
})
const auditDialogTitle = computed(() => auditFormData.status === '20' ? t('ErpStock.In.auditApprove') : t('ErpStock.In.auditReject'))
const auditRemarkPlaceholder = computed(() => auditFormData.status === '20' ? t('ErpStock.In.placeholderAuditApproveRemark') : t('ErpStock.In.placeholderAuditRejectRemark'))
const loadAuditConfig = async () => {
try {
const data = await ConfigApi.getConfigPage({ pageNo: 1, pageSize: 10, key: 'isAudit' } as PageParam & { key: string })
const auditConfig = data?.list?.find((item) => item?.key === 'isAudit')
isAuditDisabled.value = auditConfig?.value === '0'
} catch {
isAuditDisabled.value = false
}
}
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
await loadAuditConfig()
const data = await StockInApi.getStockInPage(buildQueryParams())
list.value = data.list
total.value = data.total
counters.allCount = Number(data?.allCount ?? data?.total ?? 0)
counters.waitInCount = Number(data?.waitInCount ?? 0)
counters.rejectedCount = Number(data?.rejectedCount ?? 0)
counters.auditingCount = Number(data?.auditingCount ?? 0)
counters.inStockCount = Number(data?.inStockCount ?? 0)
} finally {
loading.value = false
updatePlanTableMaxHeight()
}
}
const buildQueryParams = () => ({
...queryParams,
statusList: queryParams.statusList?.length
? queryParams.statusList
: useInitialStatusFilter.value
? DEFAULT_STATUS_LIST
: []
})
/** 搜索按钮操作 */
const handleQuery = () => {
useInitialStatusFilter.value = false
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
useInitialStatusFilter.value = false
currentStatusKey.value = 'all'
queryFormRef.value.resetFields()
queryParams.statusList = []
queryParams.inType = activeName.value || stockInTypeOptions.value[0]?.value
handleQuery()
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = (type: string, id?: number) => {
formVisible.value = true
nextTick(() => {
formRef.value.open(type, id)
})
}
/** 删除按钮操作 */
const handleDelete = async (ids: number[]) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await StockInApi.deleteStockIn(ids)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
selectionList.value = selectionList.value.filter((item) => !ids.includes(item.id))
} catch {}
}
const openSubmitDialog = (row: StockInVO) => {
submitFormData.id = String(row.id)
submitFormData.status = String(row.status)
submitFormData.remark = ''
submitDialogVisible.value = true
}
const handleSubmitStockIn = async () => {
actionLoading.value = true
try {
if (isAuditDisabled.value) {
await StockInApi.auditStockIn({
id: submitFormData.id,
status: '20',
remark: submitFormData.remark
})
message.success(t('ErpStock.In.auditApproveSuccess'))
} else {
await StockInApi.submitStockIn({
id: submitFormData.id,
remark: submitFormData.remark
})
message.success(t('ErpStock.In.submitSuccess'))
}
submitDialogVisible.value = false
await getList()
} finally {
actionLoading.value = false
}
}
const openAuditDialog = (row: StockInVO, status: 20 | 1) => {
auditFormData.id = String(row.id)
auditFormData.status = String(status)
auditFormData.remark = status === 20 ? t('ErpStock.In.auditApprove') : ''
auditDialogVisible.value = true
}
const handleAuditStockIn = async () => {
actionLoading.value = true
try {
await StockInApi.auditStockIn({
id: auditFormData.id,
status: auditFormData.status,
remark: auditFormData.remark
})
message.success(auditFormData.status === '20' ? t('ErpStock.In.auditApproveSuccess') : t('ErpStock.In.auditRejectSuccess'))
auditDialogVisible.value = false
await getList()
} finally {
actionLoading.value = false
}
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const ids = selectionList.value.map((item) => item.id).filter((v) => v != null)
const params = {
...buildQueryParams(),
ids: ids.length ? ids.join(',') : undefined
}
const data = await StockInApi.exportStockIn(params)
download.excel(data, t('ErpStock.In.exportName'))
} catch {
} finally {
exportLoading.value = false
}
}
/** 选中操作 */
const selectionList = ref<StockInVO[]>([])
const handleSelectionChange = (rows: StockInVO[]) => {
selectionList.value = rows
}
const syncDefaultInType = () => {
if (queryParams.inType) {
activeName.value = queryParams.inType
return
}
const defaultInType = stockInTypeOptions.value[0]?.value
if (defaultInType) {
queryParams.inType = defaultInType
activeName.value = defaultInType
}
}
watch(stockInTypeOptions, (options) => {
if (!queryParams.inType && options.length) {
syncDefaultInType()
queryParams.pageNo = 1
getList()
}
})
/** 初始化 **/
onMounted(async () => {
syncDefaultInType()
await getList()
updatePlanTableMaxHeight()
window.addEventListener('resize', updatePlanTableMaxHeight)
// 加载产品、仓库列表、供应商
productList.value = await ProductApi.getProductSimpleList()
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
supplierList.value = await SupplierApi.getSupplierSimpleList()
userList.value = await UserApi.getSimpleUserList()
})
onBeforeUnmount(() => {
window.removeEventListener('resize', updatePlanTableMaxHeight)
})
const handleTabClick = (tab: TabsPaneContext) => {
queryParams.inType = String(tab.paneName || '')
activeName.value = queryParams.inType
handleQuery()
}
</script>
<style scoped lang="scss">
.stock-in__header {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 12px;
width: 100%;
margin-bottom: 16px;
}
.stock-in__stat {
padding: 16px 18px;
border: 1px solid var(--el-border-color-light);
border-radius: 12px;
cursor: pointer;
transition: box-shadow 0.2s ease;
background: #fff;
&:hover {
box-shadow: 0 10px 24px rgba(64, 158, 255, 0.12);
}
&.is-active {
border-color: var(--el-color-primary);
box-shadow: 0 10px 24px rgba(64, 158, 255, 0.12);
}
}
.stock-in__stat-title {
color: var(--el-text-color-regular);
font-size: 14px;
}
.stock-in__stat-value {
margin-top: 8px;
color: var(--el-text-color-primary);
font-size: 28px;
font-weight: 700;
line-height: 1;
}
</style>