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.
594 lines
19 KiB
Vue
594 lines
19 KiB
Vue
<template>
|
|
|
|
<ContentWrap>
|
|
<!-- 统计卡片 -->
|
|
<div class="stock-move__header">
|
|
<div v-for="card in statusCards" :key="card.key" class="stock-move__stat"
|
|
:class="{ 'is-active': currentStatusKey === card.key }" @click="changeStatus(card.key, card.statusValue)">
|
|
<div class="stock-move__stat-title">{{ card.label }}</div>
|
|
<div class="stock-move__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.Move.no')" prop="no">
|
|
<el-input
|
|
v-model="queryParams.no"
|
|
:placeholder="t('ErpStock.Move.placeholderNo')"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('ErpStock.Move.product')" prop="productId">
|
|
<el-select
|
|
v-model="queryParams.productId"
|
|
clearable
|
|
filterable
|
|
:placeholder="t('ErpStock.Move.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.Move.moveTime')" prop="moveTime" v-show="showAllFilters">
|
|
<el-date-picker
|
|
v-model="queryParams.moveTime"
|
|
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-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('ErpStock.Move.fromWarehouse')" prop="fromWarehouseId" v-show="showAllFilters">
|
|
<el-select
|
|
v-model="queryParams.fromWarehouseId"
|
|
clearable
|
|
filterable
|
|
:placeholder="t('ErpStock.Move.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.Move.creator')" prop="creator" v-show="showAllFilters">
|
|
<el-select
|
|
v-model="queryParams.creator"
|
|
clearable
|
|
filterable
|
|
:placeholder="t('ErpStock.Move.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.Move.status')" prop="status" v-show="showAllFilters">
|
|
<el-select v-model="queryParams.status" :placeholder="t('ErpStock.Move.placeholderStatus')" clearable class="!w-240px">
|
|
<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-item :label="t('ErpStock.Move.remark')" prop="remark">
|
|
<el-input
|
|
v-model="queryParams.remark"
|
|
:placeholder="t('ErpStock.Move.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-move:create']"
|
|
>
|
|
<Icon icon="ep:plus" class="mr-5px" /> {{ t('action.add') }}
|
|
</el-button>
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
@click="handleDelete(selectionList.map((item) => item.id))"
|
|
v-hasPermi="['erp:stock-move:delete']"
|
|
:disabled="selectionList.length === 0"
|
|
>
|
|
<Icon icon="ep:delete" class="mr-5px" /> {{ t('action.batchDelete') }}
|
|
</el-button>
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
@click="handleExport"
|
|
:loading="exportLoading"
|
|
v-hasPermi="['erp:stock-move:export']"
|
|
>
|
|
<Icon icon="ep:download" class="mr-5px" /> {{ t('action.export') }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-table
|
|
ref="tableRef"
|
|
v-loading="loading"
|
|
:data="list"
|
|
:stripe="true"
|
|
:show-overflow-tooltip="true"
|
|
:max-height="planTableMaxHeight"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column :label="t('action.select')" type="selection" />
|
|
<el-table-column :label="t('ErpStock.Move.no')" align="center" prop="no" sortable />
|
|
<el-table-column :label="t('ErpStock.Move.productNames')" align="left" prop="productNames" sortable />
|
|
<el-table-column
|
|
:label="t('ErpStock.Move.moveTime')"
|
|
align="center"
|
|
prop="moveTime"
|
|
sortable
|
|
:formatter="dateFormatter2"
|
|
/>
|
|
<el-table-column :label="t('ErpStock.Move.creator')" align="center" prop="creatorName" sortable />
|
|
<el-table-column
|
|
:label="t('ErpStock.Move.count')"
|
|
align="right"
|
|
sortable
|
|
prop="totalCount"
|
|
:formatter="erpCountTableColumnFormatter"
|
|
/>
|
|
<!-- <el-table-column
|
|
:label="t('ErpStock.Move.price')"
|
|
align="right"
|
|
sortable
|
|
prop="totalPrice"
|
|
:formatter="erpPriceTableColumnFormatter"
|
|
/> -->
|
|
<el-table-column :label="t('ErpStock.Move.status')" align="center" fixed="right" prop="status" sortable>
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.ERP_AUDIT_STATUS" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="t('common.operate')" align="center" fixed="right" width="320">
|
|
<template #default="scope">
|
|
<el-button
|
|
link
|
|
@click="openForm('detail', scope.row.id)"
|
|
v-hasPermi="['erp:stock-move:query']"
|
|
>
|
|
{{ t('action.detail') }}
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openForm('update', scope.row.id)"
|
|
v-hasPermi="['erp:stock-move:update']"
|
|
:disabled="Number(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-move:update-status']"
|
|
>
|
|
{{ t('ErpStock.Move.submit') }}
|
|
</el-button>
|
|
<el-button
|
|
v-if="!isAuditDisabled && Number(scope.row.status) === 10"
|
|
link
|
|
type="primary"
|
|
@click="openAuditDialog(scope.row, 20)"
|
|
v-hasPermi="['erp:stock-move:update-status']"
|
|
>
|
|
{{ t('ErpStock.Move.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-move:update-status']"
|
|
>
|
|
{{ t('ErpStock.Move.auditReject') }}
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="danger"
|
|
@click="handleDelete([scope.row.id])"
|
|
v-hasPermi="['erp:stock-move:delete']"
|
|
:disabled="Number(scope.row.status) === 20"
|
|
>
|
|
{{ 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>
|
|
|
|
|
|
<Dialog :title="t('ErpStock.Move.submit')" v-model="submitDialogVisible" width="500">
|
|
<el-form :model="submitForm" label-width="auto">
|
|
<el-form-item :label="t('ErpStock.Move.submitRemark')" prop="remark">
|
|
<el-input
|
|
v-model="submitForm.remark"
|
|
type="textarea"
|
|
:rows="3"
|
|
:placeholder="t('ErpStock.Move.placeholderSubmitRemark')"
|
|
/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<el-button type="primary" :disabled="submitLoading" @click="handleSubmit">
|
|
{{ t('common.ok') }}
|
|
</el-button>
|
|
<el-button @click="submitDialogVisible = false">{{ t('common.cancel') }}</el-button>
|
|
</template>
|
|
</Dialog>
|
|
|
|
<Dialog :title="auditDialogTitle" v-model="auditDialogVisible" width="500">
|
|
<el-form :model="auditForm" label-width="auto">
|
|
<el-form-item :label="t('ErpStock.Move.auditRemark')" prop="remark">
|
|
<el-input
|
|
v-model="auditForm.remark"
|
|
type="textarea"
|
|
:rows="3"
|
|
:placeholder="t('ErpStock.Move.placeholderAuditRemark')"
|
|
/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<el-button type="primary" :disabled="auditLoading" @click="handleAudit">
|
|
{{ t('common.ok') }}
|
|
</el-button>
|
|
<el-button @click="auditDialogVisible = false">{{ t('common.cancel') }}</el-button>
|
|
</template>
|
|
</Dialog>
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<StockMoveForm ref="formRef" @success="getList" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
|
import { dateFormatter2 } from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { StockMoveApi, StockMoveVO } from '@/api/erp/stock/move'
|
|
import StockMoveForm from './StockMoveForm.vue'
|
|
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
|
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
|
import { UserVO } from '@/api/system/user'
|
|
import * as UserApi from '@/api/system/user'
|
|
import * as ConfigApi from '@/api/infra/config'
|
|
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
|
|
|
/** ERP 库存调度单列表 */
|
|
defineOptions({ name: 'ErpStockMove' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<StockMoveVO[]>([]) // 列表的数据
|
|
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,
|
|
fromWarehouseId: undefined,
|
|
moveTime: [],
|
|
status: undefined,
|
|
remark: undefined,
|
|
creator: undefined
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const currentStatusKey = ref('all')
|
|
const counters = reactive({
|
|
allCount: 0,
|
|
waitSubmitCount: 0,
|
|
rejectedCount: 0,
|
|
auditingCount: 0,
|
|
approvedCount: 0
|
|
})
|
|
const statusCards = computed(() => [
|
|
{ key: 'all', label: t('ErpStock.Move.all'), value: counters.allCount, statusValue: undefined },
|
|
{ key: 'waitSubmit', label: t('ErpStock.Move.waitSubmit'), value: counters.waitSubmitCount, statusValue: 0 },
|
|
{ key: 'rejected', label: t('ErpStock.Move.rejected'), value: counters.rejectedCount, statusValue: 1 },
|
|
{ key: 'auditing', label: t('ErpStock.Move.auditing'), value: counters.auditingCount, statusValue: 10 },
|
|
{ key: 'approved', label: t('ErpStock.Move.approved'), value: counters.approvedCount, statusValue: 20 }
|
|
])
|
|
const changeStatus = (key: string, statusValue: number | undefined) => {
|
|
currentStatusKey.value = key
|
|
queryParams.status = statusValue
|
|
handleQuery()
|
|
}
|
|
const showAllFilters = ref(false)
|
|
const filterCount = 6
|
|
const toggleFilters = () => {
|
|
showAllFilters.value = !showAllFilters.value
|
|
updatePlanTableMaxHeight()
|
|
}
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const productList = ref<ProductVO[]>([]) // 产品列表
|
|
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
|
|
const userList = ref<UserVO[]>([]) // 用户列表
|
|
const submitDialogVisible = ref(false)
|
|
const submitLoading = ref(false)
|
|
const isAuditDisabled = ref(false)
|
|
const submitForm = reactive({
|
|
id: undefined as number | undefined,
|
|
remark: undefined as string | undefined
|
|
})
|
|
const auditDialogVisible = ref(false)
|
|
const auditLoading = ref(false)
|
|
const auditForm = reactive({
|
|
id: undefined as number | undefined,
|
|
status: undefined as number | undefined,
|
|
remark: undefined as string | undefined
|
|
})
|
|
const auditDialogTitle = computed(() =>
|
|
auditForm.status === 20 ? t('ErpStock.Move.auditApprove') : t('ErpStock.Move.auditReject')
|
|
)
|
|
const loadAuditConfig = async () => {
|
|
try {
|
|
const data = await ConfigApi.getConfigPage({ pageNo: 1, pageSize: 10, key: 'transferAduit' } as PageParam & { key: string })
|
|
const auditConfig = data?.list?.find((item) => item?.key === 'transferAduit')
|
|
isAuditDisabled.value = auditConfig?.value === '0'
|
|
} catch {
|
|
isAuditDisabled.value = false
|
|
}
|
|
}
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
await loadAuditConfig()
|
|
const data = await StockMoveApi.getStockMovePage(queryParams)
|
|
list.value = data.list
|
|
total.value = data.total
|
|
counters.allCount = Number(data?.allCount ?? data?.total ?? 0)
|
|
counters.waitSubmitCount = Number(data?.waitSubmitCount ?? 0)
|
|
counters.rejectedCount = Number(data?.rejectedCount ?? 0)
|
|
counters.auditingCount = Number(data?.auditingCount ?? 0)
|
|
counters.approvedCount = Number(data?.approvedCount ?? 0)
|
|
} finally {
|
|
loading.value = false
|
|
updatePlanTableMaxHeight()
|
|
}
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.pageNo = 1
|
|
getList()
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
currentStatusKey.value = 'all'
|
|
queryFormRef.value.resetFields()
|
|
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 StockMoveApi.deleteStockMove(ids)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
selectionList.value = selectionList.value.filter((item) => !ids.includes(item.id))
|
|
} catch {}
|
|
}
|
|
|
|
const openSubmitDialog = (row: StockMoveVO) => {
|
|
submitForm.id = row.id
|
|
submitForm.remark = undefined
|
|
submitDialogVisible.value = true
|
|
}
|
|
|
|
const handleSubmit = async () => {
|
|
if (!submitForm.id) return
|
|
submitLoading.value = true
|
|
try {
|
|
if (isAuditDisabled.value) {
|
|
await StockMoveApi.auditStockMove({
|
|
id: submitForm.id,
|
|
status: 20,
|
|
remark: submitForm.remark
|
|
})
|
|
message.success(t('ErpStock.Move.auditApproveSuccess'))
|
|
} else {
|
|
await StockMoveApi.submitStockMove({
|
|
id: submitForm.id,
|
|
remark: submitForm.remark
|
|
})
|
|
message.success(t('ErpStock.Move.submitSuccess'))
|
|
}
|
|
submitDialogVisible.value = false
|
|
await getList()
|
|
} finally {
|
|
submitLoading.value = false
|
|
}
|
|
}
|
|
|
|
const openAuditDialog = (row: StockMoveVO, status: number) => {
|
|
auditForm.id = row.id
|
|
auditForm.status = status
|
|
auditForm.remark = undefined
|
|
auditDialogVisible.value = true
|
|
}
|
|
|
|
const handleAudit = async () => {
|
|
if (!auditForm.id || !auditForm.status) return
|
|
auditLoading.value = true
|
|
try {
|
|
await StockMoveApi.auditStockMove({
|
|
id: auditForm.id,
|
|
status: auditForm.status,
|
|
remark: auditForm.remark
|
|
})
|
|
message.success(
|
|
auditForm.status === 20
|
|
? t('ErpStock.Move.auditApproveSuccess')
|
|
: t('ErpStock.Move.auditRejectSuccess')
|
|
)
|
|
auditDialogVisible.value = false
|
|
await getList()
|
|
} finally {
|
|
auditLoading.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 = {
|
|
...queryParams,
|
|
ids: ids.length ? ids.join(',') : undefined
|
|
}
|
|
const data = await StockMoveApi.exportStockMove(params)
|
|
download.excel(data, t('ErpStock.Move.exportName'))
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 选中操作 */
|
|
const selectionList = ref<StockMoveVO[]>([])
|
|
const handleSelectionChange = (rows: StockMoveVO[]) => {
|
|
selectionList.value = rows
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
await getList()
|
|
updatePlanTableMaxHeight()
|
|
window.addEventListener('resize', updatePlanTableMaxHeight)
|
|
// 加载产品、仓库列表、客户
|
|
productList.value = await ProductApi.getProductSimpleList()
|
|
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
|
|
userList.value = await UserApi.getSimpleUserList()
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
window.removeEventListener('resize', updatePlanTableMaxHeight)
|
|
})
|
|
// TODO 芋艿:可优化功能:列表界面,支持导入
|
|
// TODO 芋艿:可优化功能:详情界面,支持打印
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.stock-move__header {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
gap: 12px;
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.stock-move__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-move__stat-title {
|
|
color: var(--el-text-color-regular);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.stock-move__stat-value {
|
|
margin-top: 8px;
|
|
color: var(--el-text-color-primary);
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
</style>
|