其它出库适配手机端
This commit is contained in:
@@ -1,62 +1,64 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1080">
|
||||
<el-drawer
|
||||
v-model="dialogVisible"
|
||||
:title="dialogTitle"
|
||||
direction="rtl"
|
||||
size="100%"
|
||||
:close-on-press-escape="true"
|
||||
:destroy-on-close="true"
|
||||
:append-to-body="true"
|
||||
class="mobile-form-drawer"
|
||||
>
|
||||
<div class="mobile-form" v-loading="formLoading">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
label-width="100px"
|
||||
v-loading="formLoading"
|
||||
label-position="top"
|
||||
:disabled="disabled"
|
||||
>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="8">
|
||||
<!-- 基本信息 -->
|
||||
<div class="mobile-form__section">
|
||||
<div class="mobile-form__section-title">基本信息</div>
|
||||
<el-form-item label="盘点单号" prop="no">
|
||||
<el-input disabled v-model="formData.no" placeholder="保存时自动生成" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="盘点时间" prop="checkTime">
|
||||
<el-date-picker
|
||||
v-model="formData.checkTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择盘点时间"
|
||||
class="!w-1/1"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="16">
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="formData.remark"
|
||||
:rows="1"
|
||||
:rows="2"
|
||||
placeholder="请输入备注"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="附件" prop="fileUrl">
|
||||
<UploadFile :is-show-tip="false" v-model="formData.fileUrl" :limit="1" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<!-- 子表的表单 -->
|
||||
<ContentWrap>
|
||||
<el-tabs v-model="subTabsName" class="-mt-15px -mb-10px">
|
||||
<el-tab-pane label="盘点产品清单" name="item">
|
||||
</div>
|
||||
|
||||
<!-- 盘点产品清单 -->
|
||||
<div class="mobile-form__section">
|
||||
<div class="mobile-form__section-title">盘点产品清单</div>
|
||||
<StockCheckItemForm ref="itemFormRef" :items="formData.items" :disabled="disabled" />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</ContentWrap>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading" v-if="!disabled">
|
||||
确 定
|
||||
</el-button>
|
||||
</div>
|
||||
</el-form>
|
||||
|
||||
<!-- 底部操作按钮 -->
|
||||
<div class="mobile-form__footer">
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading" v-if="!disabled">确 定</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</el-drawer>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { StockCheckApi, StockCheckVO } from '@/api/erp/stock/check'
|
||||
@@ -87,7 +89,6 @@ const disabled = computed(() => formType.value === 'detail')
|
||||
const formRef = ref() // 表单 Ref
|
||||
|
||||
/** 子表的表单 */
|
||||
const subTabsName = ref('item')
|
||||
const itemFormRef = ref()
|
||||
|
||||
/** 打开弹窗 */
|
||||
@@ -95,6 +96,7 @@ const open = async (type: string, id?: number) => {
|
||||
dialogVisible.value = true
|
||||
dialogTitle.value = t('action.' + type)
|
||||
formType.value = type
|
||||
await nextTick()
|
||||
resetForm()
|
||||
// 修改时,设置数据
|
||||
if (id) {
|
||||
@@ -146,3 +148,44 @@ const resetForm = () => {
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mobile-form {
|
||||
padding: 0 4px;
|
||||
}
|
||||
.mobile-form__section {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
padding: 14px;
|
||||
margin-bottom: 12px;
|
||||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.mobile-form__section-title {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.mobile-form__footer {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
background: #fff;
|
||||
padding: 12px 16px;
|
||||
padding-bottom: calc(12px + constant(safe-area-inset-bottom));
|
||||
padding-bottom: calc(12px + env(safe-area-inset-bottom));
|
||||
border-top: 1px solid #eee;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 12px;
|
||||
z-index: 10;
|
||||
margin: 0 -4px;
|
||||
|
||||
.el-button {
|
||||
flex: 1;
|
||||
height: 40px;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -4,24 +4,41 @@
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
v-loading="formLoading"
|
||||
label-width="0px"
|
||||
label-position="top"
|
||||
:inline-message="true"
|
||||
:disabled="disabled"
|
||||
>
|
||||
<el-table :data="formData" show-summary :summary-method="getSummaries" class="-mt-10px">
|
||||
<el-table-column label="序号" type="index" align="center" width="60" />
|
||||
<el-table-column label="仓库名字" min-width="125">
|
||||
<template #default="{ row, $index }">
|
||||
<div class="mobile-item-list">
|
||||
<div
|
||||
v-for="(row, $index) in formData"
|
||||
:key="$index"
|
||||
class="mobile-item-card"
|
||||
>
|
||||
<div class="mobile-item-card__header">
|
||||
<span class="mobile-item-card__index">#{{ $index + 1 }}</span>
|
||||
<span class="mobile-item-card__name">{{ row.productName || '未选择产品' }}</span>
|
||||
<el-button
|
||||
:disabled="disabled || formData.length === 1"
|
||||
@click="handleDelete($index)"
|
||||
link
|
||||
type="danger"
|
||||
size="small"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</div>
|
||||
<div class="mobile-item-card__body">
|
||||
<el-form-item
|
||||
label="仓库"
|
||||
:prop="`${$index}.warehouseId`"
|
||||
:rules="formRules.warehouseId"
|
||||
class="mb-0px!"
|
||||
>
|
||||
<el-select
|
||||
v-model="row.warehouseId"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="请选择仓库名字"
|
||||
placeholder="请选择仓库"
|
||||
style="width: 100%"
|
||||
@change="onChangeWarehouse($event, row)"
|
||||
>
|
||||
<el-option
|
||||
@@ -32,17 +49,18 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="产品名称" min-width="180">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.productId`" :rules="formRules.productId" class="mb-0px!">
|
||||
<el-form-item
|
||||
label="产品"
|
||||
:prop="`${$index}.productId`"
|
||||
:rules="formRules.productId"
|
||||
>
|
||||
<el-select
|
||||
v-model="row.productId"
|
||||
clearable
|
||||
filterable
|
||||
@change="onChangeProduct($event, row)"
|
||||
placeholder="请选择产品"
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in productList"
|
||||
@@ -52,94 +70,73 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="账面库存" min-width="100">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.stockCount" :formatter="erpCountInputFormatter" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="条码" min-width="150">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.productBarCode" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="单位" min-width="80">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.productUnitName" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="实际库存" fixed="right" min-width="140">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item
|
||||
:prop="`${$index}.actualCount`"
|
||||
:rules="formRules.actualCount"
|
||||
class="mb-0px!"
|
||||
>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">产品名称</span>
|
||||
<span class="mobile-item-card__info-value">{{ row.productName || '-' }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">条码</span>
|
||||
<span class="mobile-item-card__info-value">{{ row.productBarCode || '-' }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">单位</span>
|
||||
<span class="mobile-item-card__info-value">{{ row.productUnitName || '-' }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">账面库存</span>
|
||||
<span class="mobile-item-card__info-value">{{ erpCountInputFormatter(null ,null, row.stockCount,null) }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__input-group">
|
||||
<el-form-item label="实际库存" :prop="`${$index}.actualCount`" :rules="formRules.actualCount">
|
||||
<el-input-number
|
||||
v-model="row.actualCount"
|
||||
controls-position="right"
|
||||
:precision="3"
|
||||
class="!w-100%"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="盈亏数量" prop="count" fixed="right" min-width="110">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.count`" :rules="formRules.count" class="mb-0px!">
|
||||
<el-form-item label="盈亏数量" :prop="`${$index}.count`">
|
||||
<el-input
|
||||
disabled
|
||||
v-model="row.count"
|
||||
:formatter="erpCountInputFormatter"
|
||||
class="!w-100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="产品单价" fixed="right" min-width="120">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.productPrice`" class="mb-0px!">
|
||||
</div>
|
||||
<el-form-item label="产品单价" :prop="`${$index}.productPrice`">
|
||||
<el-input-number
|
||||
v-model="row.productPrice"
|
||||
controls-position="right"
|
||||
:min="0.0001"
|
||||
:precision="4"
|
||||
class="!w-100%"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="合计金额" prop="totalPrice" fixed="right" min-width="100">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.totalPrice`" class="mb-0px!">
|
||||
<el-input disabled v-model="row.totalPrice" :formatter="erpPriceInputFormatter" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" min-width="150">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.remark`" class="mb-0px!">
|
||||
<div class="mobile-item-card__info-row mobile-item-card__info-row--highlight">
|
||||
<span class="mobile-item-card__info-label">合计金额</span>
|
||||
<span class="mobile-item-card__info-value mobile-item-card__info-value--bold">{{ erpPriceInputFormatter(row.totalPrice) }}</span>
|
||||
</div>
|
||||
<el-form-item label="备注" :prop="`${$index}.remark`">
|
||||
<el-input v-model="row.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" fixed="right" label="操作" width="60">
|
||||
<template #default="{ $index }">
|
||||
<el-button @click="handleDelete($index)" link>—</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 合计 -->
|
||||
<div class="mobile-item-summary" v-if="formData.length > 0">
|
||||
<div class="mobile-item-summary__row">
|
||||
<span>合计盈亏数量</span>
|
||||
<span>{{ erpCountInputFormatter(summaryData.count) }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-summary__row mobile-item-summary__row--total">
|
||||
<span>合计金额</span>
|
||||
<span>{{ erpPriceInputFormatter(summaryData.totalPrice) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-form>
|
||||
<el-row justify="center" class="mt-3" v-if="!disabled">
|
||||
<div style="text-align: center; margin-top: 12px;" v-if="!disabled">
|
||||
<el-button @click="handleAdd" round>+ 添加盘点产品</el-button>
|
||||
</el-row>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
||||
@@ -199,32 +196,21 @@ watch(
|
||||
)
|
||||
|
||||
/** 合计 */
|
||||
const getSummaries = (param: SummaryMethodProps) => {
|
||||
const { columns, data } = param
|
||||
const sums: string[] = []
|
||||
columns.forEach((column, index) => {
|
||||
if (index === 0) {
|
||||
sums[index] = '合计'
|
||||
return
|
||||
}
|
||||
if (['count', 'totalPrice'].includes(column.property)) {
|
||||
const sum = getSumValue(data.map((item) => Number(item[column.property])))
|
||||
sums[index] =
|
||||
column.property === 'count' ? erpCountInputFormatter(sum) : erpPriceInputFormatter(sum)
|
||||
} else {
|
||||
sums[index] = ''
|
||||
const summaryData = computed(() => {
|
||||
const data = formData.value
|
||||
return {
|
||||
count: getSumValue(data.map((item) => Number(item.count || 0))),
|
||||
totalPrice: getSumValue(data.map((item) => Number(item.totalPrice || 0)))
|
||||
}
|
||||
})
|
||||
|
||||
return sums
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
const row = {
|
||||
id: undefined,
|
||||
warehouseId: defaultWarehouse.value?.id,
|
||||
productId: undefined,
|
||||
productName: undefined, // 产品名称
|
||||
productUnitName: undefined, // 产品单位
|
||||
productBarCode: undefined, // 产品条码
|
||||
productPrice: undefined,
|
||||
@@ -252,6 +238,7 @@ const onChangeWarehouse = (warehouseId, row) => {
|
||||
const onChangeProduct = (productId, row) => {
|
||||
const product = productList.value.find((item) => item.id === productId)
|
||||
if (product) {
|
||||
row.productName = product.name
|
||||
row.productUnitName = product.unitName
|
||||
row.productBarCode = product.barCode
|
||||
row.productPrice = product.minPrice
|
||||
@@ -287,3 +274,94 @@ onMounted(async () => {
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mobile-item-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.mobile-item-card {
|
||||
background: #f9f9fb;
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid #ebeef5;
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
&__index {
|
||||
font-size: 12px;
|
||||
color: #909399;
|
||||
font-weight: 600;
|
||||
}
|
||||
&__name {
|
||||
flex: 1;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
&__body {
|
||||
font-size: 13px;
|
||||
}
|
||||
&__info-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 4px 0;
|
||||
&--highlight {
|
||||
margin-top: 4px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px dashed #e4e7ed;
|
||||
}
|
||||
}
|
||||
&__info-label {
|
||||
color: #909399;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
&__info-value {
|
||||
color: #606266;
|
||||
text-align: right;
|
||||
&--bold {
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
}
|
||||
}
|
||||
&__input-group {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 6px;
|
||||
:deep(.el-form-item) {
|
||||
flex: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.mobile-item-summary {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid #e6a23c;
|
||||
&__row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 4px 0;
|
||||
font-size: 13px;
|
||||
color: #606266;
|
||||
&--total {
|
||||
margin-top: 4px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
color: #303133;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,270 +1,115 @@
|
||||
<template>
|
||||
<doc-alert
|
||||
title="【库存】库存调拨、库存盘点"
|
||||
url="https://doc.iocoder.cn/erp/stock-move-check/"
|
||||
/>
|
||||
|
||||
<ContentWrap>
|
||||
<!-- 搜索工作栏 -->
|
||||
<el-form
|
||||
class="-mb-15px"
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="盘点单号" prop="no">
|
||||
<div class="mobile-stock-check">
|
||||
<!-- 顶部搜索和操作 -->
|
||||
<div class="mobile-header">
|
||||
<div class="mobile-header__search">
|
||||
<el-input
|
||||
v-model="queryParams.no"
|
||||
placeholder="请输入盘点单号"
|
||||
placeholder="搜索盘点单号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
:prefix-icon="Search"
|
||||
/>
|
||||
</el-form-item>
|
||||
</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-check: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">{{ formatDate2(item.checkTime) }}</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(null, null, item.totalCount,null) }}</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(null, null, item.totalPrice, null) }}</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-check:query']">详情</el-button>
|
||||
<el-button size="small" type="primary" @click.stop="openForm('update', item.id)" v-hasPermi="['erp:stock-check:update']" :disabled="item.status === 20 || item.hasApprovalRecords">编辑</el-button>
|
||||
<el-button size="small" type="success" @click.stop="handleSubmitApproval(item.id)" v-hasPermi="['erp:stock-check:submit-approval']" v-if="item.status === 10 && !item.hasApprovalRecords">提交审批</el-button>
|
||||
<el-button size="small" type="info" @click.stop="handleViewApproval(item.id)" v-hasPermi="['erp:stock-check:query-approval']" v-if="item.hasApprovalRecords">审批记录</el-button>
|
||||
<el-button size="small" type="primary" @click.stop="handleProcessApproval(item.id)" v-hasPermi="['erp:approval-record:process']" v-if="item.hasApprovalRecords && item.status !== 20">处理审批</el-button>
|
||||
<el-button size="small" type="primary" @click.stop="handleUpdateStatus(item.id, 20)" v-hasPermi="['erp:stock-check: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-check:update-status']" v-else>反审批</el-button>
|
||||
<el-button size="small" type="danger" @click.stop="handleDelete([item.id])" v-hasPermi="['erp:stock-check:delete']" :disabled="item.hasApprovalRecords">删除</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 分页 -->
|
||||
<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="请选择产品"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in productList"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
/>
|
||||
<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="checkTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.checkTime"
|
||||
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-date-picker v-model="queryParams.checkTime" 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="请选择仓库"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in warehouseList"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
/>
|
||||
<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="请选择创建人"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in userList"
|
||||
:key="item.id"
|
||||
:label="item.nickname"
|
||||
:value="item.id"
|
||||
/>
|
||||
<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 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-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-item label="备注" prop="remark">
|
||||
<el-input
|
||||
v-model="queryParams.remark"
|
||||
placeholder="请输入备注"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
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-check:create']"
|
||||
>
|
||||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||
</el-button>
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
@click="handleExport"
|
||||
:loading="exportLoading"
|
||||
v-hasPermi="['erp:stock-check:export']"
|
||||
>
|
||||
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||
</el-button>
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
@click="openReport"
|
||||
v-hasPermi="['erp:stock-check:query']"
|
||||
>
|
||||
<Icon icon="ep:data-analysis" class="mr-5px" /> 库存报告
|
||||
</el-button>
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
@click="handleDelete(selectionList.map((item) => item.id))"
|
||||
v-hasPermi="['erp:stock-check:delete']"
|
||||
:disabled="selectionList.length === 0"
|
||||
>
|
||||
<Icon icon="ep:delete" 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"
|
||||
@row-click="handleRowClick"
|
||||
>
|
||||
<el-table-column width="30" label="选择" type="selection" />
|
||||
<el-table-column min-width="180" label="盘点单号" align="center" prop="no" />
|
||||
<el-table-column label="产品信息" align="center" prop="productNames" min-width="200" />
|
||||
<el-table-column
|
||||
label="盘点时间"
|
||||
align="center"
|
||||
prop="checkTime"
|
||||
:formatter="dateFormatter2"
|
||||
width="120px"
|
||||
sortable
|
||||
/>
|
||||
<el-table-column label="创建人" align="center" prop="creatorName" />
|
||||
<el-table-column
|
||||
label="数量"
|
||||
align="center"
|
||||
prop="totalCount"
|
||||
:formatter="erpCountTableColumnFormatter"
|
||||
/>
|
||||
<el-table-column
|
||||
label="金额"
|
||||
align="center"
|
||||
prop="totalPrice"
|
||||
:formatter="erpPriceTableColumnFormatter"
|
||||
/>
|
||||
<el-table-column label="状态" align="center" fixed="right" width="90" prop="status">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.ERP_AUDIT_STATUS" :value="scope.row.status" />
|
||||
<template #footer>
|
||||
<el-button @click="resetQuery">重置</el-button>
|
||||
<el-button type="primary" @click="handleFilterConfirm">确认筛选</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" fixed="right" width="380">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
@click="openForm('detail', scope.row.id)"
|
||||
v-hasPermi="['erp:stock-check:query']"
|
||||
>
|
||||
详情
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="openForm('update', scope.row.id)"
|
||||
v-hasPermi="['erp:stock-check:update']"
|
||||
:disabled="scope.row.status === 20 || scope.row.hasApprovalRecords"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="success"
|
||||
@click="handleSubmitApproval(scope.row.id)"
|
||||
v-hasPermi="['erp:stock-check:submit-approval']"
|
||||
v-if="scope.row.status === 10 && !scope.row.hasApprovalRecords"
|
||||
>
|
||||
提交审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="info"
|
||||
@click="handleViewApproval(scope.row.id)"
|
||||
v-hasPermi="['erp:stock-check:query-approval']"
|
||||
v-if="scope.row.hasApprovalRecords"
|
||||
>
|
||||
审批记录
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="handleProcessApproval(scope.row.id)"
|
||||
v-hasPermi="['erp:approval-record:process']"
|
||||
v-if="scope.row.hasApprovalRecords && scope.row.status !== 20"
|
||||
>
|
||||
处理审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="handleUpdateStatus(scope.row.id, 20)"
|
||||
v-hasPermi="['erp:stock-check:update-status']"
|
||||
v-if="scope.row.status === 10"
|
||||
>
|
||||
审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleUpdateStatus(scope.row.id, 10)"
|
||||
v-hasPermi="['erp:stock-check:update-status']"
|
||||
v-else
|
||||
>
|
||||
反审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete([scope.row.id])"
|
||||
v-hasPermi="['erp:stock-check:delete']"
|
||||
:disabled="scope.row.hasApprovalRecords"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</ContentWrap>
|
||||
</el-drawer>
|
||||
|
||||
<!-- 表单弹窗:添加/修改 -->
|
||||
<!-- 表单弹窗 -->
|
||||
<StockCheckForm ref="formRef" @success="getList" />
|
||||
|
||||
<!-- 库存报告对话框 -->
|
||||
@@ -278,32 +123,34 @@
|
||||
|
||||
<!-- 处理审批对话框 -->
|
||||
<ProcessApprovalDialog ref="processApprovalDialogRef" @success="getList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, reactive, onMounted } from 'vue'
|
||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||
import { dateFormatter2 } from '@/utils/formatTime'
|
||||
import download from '@/utils/download'
|
||||
import { formatDate2 } from '@/utils/formatTime'
|
||||
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
||||
import { StockCheckApi, StockCheckVO } from '@/api/erp/stock/check'
|
||||
import StockCheckForm from './StockCheckForm.vue'
|
||||
import StockReportDialog from './StockReportDialog.vue'
|
||||
import { SubmitApprovalDialog, ApprovalRecordsDialog, ProcessApprovalDialog } from '@/components/Approval'
|
||||
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
||||
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
||||
import { ApprovalRecordApi, ApprovalRecordVO } from '@/api/erp/approval/index'
|
||||
import { ApprovalRecordApi } from '@/api/erp/approval/index'
|
||||
import { UserVO } from '@/api/system/user'
|
||||
import * as UserApi from '@/api/system/user'
|
||||
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
||||
import { useMessage } from '@/hooks/web/useMessage'
|
||||
import { Search, Plus, Filter } from '@element-plus/icons-vue'
|
||||
|
||||
/** ERP 其它盘点单列表 */
|
||||
defineOptions({ name: 'ErpStockCheck' })
|
||||
|
||||
const message = useMessage() // 消息弹窗
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
const loading = ref(true) // 列表的加载中
|
||||
const list = ref<StockCheckVO[]>([]) // 列表的数据
|
||||
const total = ref(0) // 列表的总页数
|
||||
const message = useMessage()
|
||||
const loading = ref(true)
|
||||
const list = ref<StockCheckVO[]>([])
|
||||
const total = ref(0)
|
||||
const filterVisible = ref(false)
|
||||
const queryParams = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
@@ -315,13 +162,11 @@ const queryParams = reactive({
|
||||
remark: undefined,
|
||||
creator: undefined
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
const productList = ref<ProductVO[]>([]) // 产品列表
|
||||
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
|
||||
const userList = ref<UserVO[]>([]) // 用户列表
|
||||
const queryFormRef = ref()
|
||||
const productList = ref<ProductVO[]>([])
|
||||
const warehouseList = ref<WarehouseVO[]>([])
|
||||
const userList = ref<UserVO[]>([])
|
||||
|
||||
/** 查询列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
@@ -337,7 +182,6 @@ const getList = async () => {
|
||||
hasApprovalRecords: records && records.length > 0
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('获取审批记录失败', error)
|
||||
return {
|
||||
...item,
|
||||
hasApprovalRecords: false
|
||||
@@ -353,19 +197,24 @@ const getList = async () => {
|
||||
}
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value.resetFields()
|
||||
queryFormRef.value?.resetFields()
|
||||
queryParams.checkTime = []
|
||||
queryParams.no = undefined
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 筛选确认 */
|
||||
const handleFilterConfirm = () => {
|
||||
filterVisible.value = false
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 添加/修改操作 */
|
||||
const formRef = ref()
|
||||
const openForm = (type: string, id?: number) => {
|
||||
formRef.value.open(type, id)
|
||||
@@ -395,87 +244,89 @@ const handleProcessApproval = (id: number) => {
|
||||
processApprovalDialogRef.value.open(String(id), 'erp_stock_check')
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (ids: number[]) => {
|
||||
try {
|
||||
// 删除的二次确认
|
||||
await message.delConfirm()
|
||||
// 发起删除
|
||||
await StockCheckApi.deleteStockCheck(ids)
|
||||
message.success(t('common.delSuccess'))
|
||||
// 刷新列表
|
||||
message.success('删除成功')
|
||||
await getList()
|
||||
selectionList.value = selectionList.value.filter((item) => !ids.includes(item.id))
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 审批/反审批操作 */
|
||||
const handleUpdateStatus = async (id: number, status: number) => {
|
||||
try {
|
||||
// 审批的二次确认
|
||||
await message.confirm(`确定${status === 20 ? '审批' : '反审批'}该盘点单吗?`)
|
||||
// 发起审批
|
||||
await StockCheckApi.updateStockCheckStatus(id, status)
|
||||
message.success(`${status === 20 ? '审批' : '反审批'}成功`)
|
||||
// 刷新列表
|
||||
await getList()
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = async () => {
|
||||
try {
|
||||
// 导出的二次确认
|
||||
await message.exportConfirm()
|
||||
// 发起导出
|
||||
exportLoading.value = true
|
||||
const data = await StockCheckApi.exportStockCheck(queryParams)
|
||||
download.excel(data, '其它盘点单.xls')
|
||||
} catch {
|
||||
} finally {
|
||||
exportLoading.value = false
|
||||
}
|
||||
const handleQuickFilter = (status: number | undefined) => {
|
||||
queryParams.status = status
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 选中操作 */
|
||||
const selectionList = ref<StockCheckVO[]>([])
|
||||
const handleSelectionChange = (rows: StockCheckVO[]) => {
|
||||
selectionList.value = rows
|
||||
}
|
||||
|
||||
/** 行点击操作 */
|
||||
const handleRowClick = (row: StockCheckVO, column: any, event: MouseEvent) => {
|
||||
// 检查是否点击了按钮、链接或其他交互元素
|
||||
const handleRowClick = (row: StockCheckVO, event?: MouseEvent) => {
|
||||
if (event) {
|
||||
const target = event.target as HTMLElement
|
||||
if (
|
||||
target.tagName === 'BUTTON' ||
|
||||
target.tagName === 'A' ||
|
||||
target.tagName === 'I' ||
|
||||
target.tagName === 'svg' ||
|
||||
target.closest('button') ||
|
||||
target.closest('a') ||
|
||||
target.closest('.el-button') ||
|
||||
target.closest('.el-checkbox')
|
||||
) {
|
||||
return
|
||||
if (target.closest('button') || target.closest('.el-button')) return
|
||||
}
|
||||
if (row.status === 20) openForm('detail', row.id)
|
||||
else if (row.status === 10) openForm('update', row.id)
|
||||
}
|
||||
|
||||
// 已审核打开详情页面,未审核打开编辑页面
|
||||
if (row.status === 20) {
|
||||
openForm('detail', row.id)
|
||||
} else if (row.status === 10) {
|
||||
openForm('update', row.id)
|
||||
}
|
||||
}
|
||||
|
||||
/** 初始化 **/
|
||||
onMounted(async () => {
|
||||
await getList()
|
||||
// 加载产品、仓库列表、客户
|
||||
productList.value = await ProductApi.getProductSimpleList()
|
||||
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
|
||||
userList.value = await UserApi.getSimpleUserList()
|
||||
})
|
||||
// TODO 芋艿:可优化功能:列表界面,支持导入
|
||||
// TODO 芋艿:可优化功能:详情界面,支持打印
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.mobile-stock-check {
|
||||
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>
|
||||
|
||||
@@ -1,64 +1,69 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1080">
|
||||
<el-drawer
|
||||
v-model="dialogVisible"
|
||||
:title="dialogTitle"
|
||||
direction="rtl"
|
||||
size="100%"
|
||||
:close-on-press-escape="true"
|
||||
:destroy-on-close="true"
|
||||
:append-to-body="true"
|
||||
class="mobile-form-drawer"
|
||||
>
|
||||
<div class="mobile-form" v-loading="formLoading">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
label-width="100px"
|
||||
v-loading="formLoading"
|
||||
label-position="top"
|
||||
:disabled="disabled"
|
||||
>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="8">
|
||||
<!-- 基本信息 -->
|
||||
<div class="mobile-form__section">
|
||||
<div class="mobile-form__section-title">基本信息</div>
|
||||
<el-form-item label="调度单号" prop="no">
|
||||
<el-input disabled v-model="formData.no" placeholder="保存时自动生成" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="调度时间" prop="moveTime">
|
||||
<el-date-picker
|
||||
v-model="formData.moveTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择调度时间"
|
||||
class="!w-1/1"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="16">
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="formData.remark"
|
||||
:rows="1"
|
||||
:rows="2"
|
||||
placeholder="请输入备注"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="附件" prop="fileUrl">
|
||||
<UploadFile :is-show-tip="false" v-model="formData.fileUrl" :limit="1" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<!-- 子表的表单 -->
|
||||
<ContentWrap>
|
||||
<el-tabs v-model="subTabsName" class="-mt-15px -mb-10px">
|
||||
<el-tab-pane label="调度产品清单" name="item">
|
||||
</div>
|
||||
|
||||
<!-- 调度产品清单 -->
|
||||
<div class="mobile-form__section">
|
||||
<div class="mobile-form__section-title">调度产品清单</div>
|
||||
<StockMoveItemForm ref="itemFormRef" :items="formData.items" :disabled="disabled" />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</ContentWrap>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading" v-if="!disabled">
|
||||
确 定
|
||||
</el-button>
|
||||
</div>
|
||||
</el-form>
|
||||
|
||||
<!-- 底部操作按钮 -->
|
||||
<div class="mobile-form__footer">
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading" v-if="!disabled">确 定</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</el-drawer>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, reactive, computed, nextTick } from 'vue'
|
||||
import { useI18n } from '@/hooks/web/useI18n'
|
||||
import { useMessage } from '@/hooks/web/useMessage'
|
||||
import { StockMoveApi, StockMoveVO } from '@/api/erp/stock/move'
|
||||
import StockMoveItemForm from './components/StockMoveItemForm.vue'
|
||||
|
||||
@@ -87,7 +92,6 @@ const disabled = computed(() => formType.value === 'detail')
|
||||
const formRef = ref() // 表单 Ref
|
||||
|
||||
/** 子表的表单 */
|
||||
const subTabsName = ref('item')
|
||||
const itemFormRef = ref()
|
||||
|
||||
/** 打开弹窗 */
|
||||
@@ -95,6 +99,7 @@ const open = async (type: string, id?: number) => {
|
||||
dialogVisible.value = true
|
||||
dialogTitle.value = t('action.' + type)
|
||||
formType.value = type
|
||||
await nextTick()
|
||||
resetForm()
|
||||
// 修改时,设置数据
|
||||
if (id) {
|
||||
@@ -146,3 +151,44 @@ const resetForm = () => {
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mobile-form {
|
||||
padding: 0 4px;
|
||||
}
|
||||
.mobile-form__section {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
padding: 14px;
|
||||
margin-bottom: 12px;
|
||||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
.mobile-form__section-title {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.mobile-form__footer {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
background: #fff;
|
||||
padding: 12px 16px;
|
||||
padding-bottom: calc(12px + constant(safe-area-inset-bottom));
|
||||
padding-bottom: calc(12px + env(safe-area-inset-bottom));
|
||||
border-top: 1px solid #eee;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 12px;
|
||||
z-index: 10;
|
||||
margin: 0 -4px;
|
||||
|
||||
.el-button {
|
||||
flex: 1;
|
||||
height: 40px;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -4,24 +4,41 @@
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
v-loading="formLoading"
|
||||
label-width="0px"
|
||||
label-position="top"
|
||||
:inline-message="true"
|
||||
:disabled="disabled"
|
||||
>
|
||||
<el-table :data="formData" show-summary :summary-method="getSummaries" class="-mt-10px">
|
||||
<el-table-column label="序号" type="index" align="center" width="60" />
|
||||
<el-table-column label="调出仓库" min-width="125">
|
||||
<template #default="{ row, $index }">
|
||||
<div class="mobile-item-list">
|
||||
<div
|
||||
v-for="(row, $index) in formData"
|
||||
:key="$index"
|
||||
class="mobile-item-card"
|
||||
>
|
||||
<div class="mobile-item-card__header">
|
||||
<span class="mobile-item-card__index">#{{ $index + 1 }}</span>
|
||||
<span class="mobile-item-card__name">{{ row.productName || '未选择产品' }}</span>
|
||||
<el-button
|
||||
:disabled="disabled || formData.length === 1"
|
||||
@click="handleDelete($index)"
|
||||
link
|
||||
type="danger"
|
||||
size="small"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</div>
|
||||
<div class="mobile-item-card__body">
|
||||
<el-form-item
|
||||
label="调出仓库"
|
||||
:prop="`${$index}.fromWarehouseId`"
|
||||
:rules="formRules.fromWarehouseId"
|
||||
class="mb-0px!"
|
||||
>
|
||||
<el-select
|
||||
v-model="row.fromWarehouseId"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="请选择调出仓库"
|
||||
style="width: 100%"
|
||||
@change="onChangeWarehouse($event, row)"
|
||||
>
|
||||
<el-option
|
||||
@@ -32,20 +49,17 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="调入仓库" min-width="125">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item
|
||||
label="调入仓库"
|
||||
:prop="`${$index}.toWarehouseId`"
|
||||
:rules="formRules.toWarehouseId"
|
||||
class="mb-0px!"
|
||||
>
|
||||
<el-select
|
||||
v-model="row.toWarehouseId"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="请选择调入仓库"
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in warehouseList"
|
||||
@@ -55,17 +69,18 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="产品名称" min-width="180">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.productId`" :rules="formRules.productId" class="mb-0px!">
|
||||
<el-form-item
|
||||
label="产品名称"
|
||||
:prop="`${$index}.productId`"
|
||||
:rules="formRules.productId"
|
||||
>
|
||||
<el-select
|
||||
v-model="row.productId"
|
||||
clearable
|
||||
filterable
|
||||
@change="onChangeProduct($event, row)"
|
||||
placeholder="请选择产品"
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in productList"
|
||||
@@ -75,81 +90,66 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="库存" min-width="100">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.stockCount" :formatter="erpCountInputFormatter" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="条码" min-width="150">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.productBarCode" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="单位" min-width="80">
|
||||
<template #default="{ row }">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-input disabled v-model="row.productUnitName" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="数量" prop="count" fixed="right" min-width="140">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.count`" :rules="formRules.count" class="mb-0px!">
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">条码</span>
|
||||
<span class="mobile-item-card__info-value">{{ row.productBarCode || '-' }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">单位</span>
|
||||
<span class="mobile-item-card__info-value">{{ row.productUnitName || '-' }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row">
|
||||
<span class="mobile-item-card__info-label">库存</span>
|
||||
<span class="mobile-item-card__info-value">{{ erpCountInputFormatter(row.stockCount) }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-card__input-group">
|
||||
<el-form-item label="数量" :prop="`${$index}.count`" :rules="formRules.count">
|
||||
<el-input-number
|
||||
v-model="row.count"
|
||||
controls-position="right"
|
||||
:min="0.0001"
|
||||
:precision="4"
|
||||
class="!w-100%"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="产品单价" fixed="right" min-width="120">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.productPrice`" class="mb-0px!">
|
||||
<el-form-item label="单价" :prop="`${$index}.productPrice`">
|
||||
<el-input-number
|
||||
v-model="row.productPrice"
|
||||
controls-position="right"
|
||||
:min="0.0001"
|
||||
:min="0"
|
||||
:precision="4"
|
||||
class="!w-100%"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="合计金额" prop="totalPrice" fixed="right" min-width="100">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.totalPrice`" class="mb-0px!">
|
||||
<el-input disabled v-model="row.totalPrice" :formatter="erpPriceInputFormatter" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" min-width="150">
|
||||
<template #default="{ row, $index }">
|
||||
<el-form-item :prop="`${$index}.remark`" class="mb-0px!">
|
||||
</div>
|
||||
<div class="mobile-item-card__info-row mobile-item-card__info-row--highlight">
|
||||
<span class="mobile-item-card__info-label">合计金额</span>
|
||||
<span class="mobile-item-card__info-value mobile-item-card__info-value--bold">{{ erpPriceInputFormatter(row.totalPrice) }}</span>
|
||||
</div>
|
||||
<el-form-item label="备注" :prop="`${$index}.remark`">
|
||||
<el-input v-model="row.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" fixed="right" label="操作" width="60">
|
||||
<template #default="{ $index }">
|
||||
<el-button @click="handleDelete($index)" link>—</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 合计 -->
|
||||
<div class="mobile-item-summary" v-if="formData.length > 0">
|
||||
<div class="mobile-item-summary__row">
|
||||
<span>合计数量</span>
|
||||
<span>{{ erpCountInputFormatter(summaryData.count) }}</span>
|
||||
</div>
|
||||
<div class="mobile-item-summary__row mobile-item-summary__row--total">
|
||||
<span>合计金额</span>
|
||||
<span>{{ erpPriceInputFormatter(summaryData.totalPrice) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-form>
|
||||
<el-row justify="center" class="mt-3" v-if="!disabled">
|
||||
<el-button @click="handleAdd" round>+ 添加调度产品</el-button>
|
||||
</el-row>
|
||||
<div class="mobile-item-add" v-if="!disabled">
|
||||
<el-button @click="handleAdd" round style="width: 100%">+ 添加调度产品</el-button>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, reactive, computed, watch, onMounted } from 'vue'
|
||||
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
||||
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
||||
import { StockApi } from '@/api/erp/stock/stock'
|
||||
@@ -167,7 +167,6 @@ const props = defineProps<{
|
||||
const formLoading = ref(false) // 表单的加载中
|
||||
const formData = ref([])
|
||||
const formRules = reactive({
|
||||
inId: [{ required: true, message: '调度编号不能为空', trigger: 'blur' }],
|
||||
fromWarehouseId: [{ required: true, message: '调出仓库不能为空', trigger: 'blur' }],
|
||||
toWarehouseId: [{ required: true, message: '调入仓库不能为空', trigger: 'blur' }],
|
||||
productId: [{ required: true, message: '产品不能为空', trigger: 'blur' }],
|
||||
@@ -182,9 +181,18 @@ const defaultWarehouse = ref<WarehouseVO>(undefined) // 默认仓库
|
||||
watch(
|
||||
() => props.items,
|
||||
async (val) => {
|
||||
if (!val) return
|
||||
val.forEach((item) => {
|
||||
if (item.fromWarehouseId == null) {
|
||||
item.fromWarehouseId = defaultWarehouse.value?.id
|
||||
}
|
||||
if (item.stockCount === null && item.fromWarehouseId != null) {
|
||||
setStockCount(item)
|
||||
}
|
||||
})
|
||||
formData.value = val
|
||||
},
|
||||
{ immediate: true }
|
||||
{ immediate: true, deep: true }
|
||||
)
|
||||
|
||||
/** 监听合同产品变化,计算合同产品总价 */
|
||||
@@ -203,26 +211,14 @@ watch(
|
||||
)
|
||||
|
||||
/** 合计 */
|
||||
const getSummaries = (param: SummaryMethodProps) => {
|
||||
const { columns, data } = param
|
||||
const sums: string[] = []
|
||||
columns.forEach((column, index) => {
|
||||
if (index === 0) {
|
||||
sums[index] = '合计'
|
||||
return
|
||||
}
|
||||
if (['count', 'totalPrice'].includes(column.property)) {
|
||||
const sum = getSumValue(data.map((item) => Number(item[column.property])))
|
||||
sums[index] =
|
||||
column.property === 'count' ? erpCountInputFormatter(sum) : erpPriceInputFormatter(sum)
|
||||
} else {
|
||||
sums[index] = ''
|
||||
const summaryData = computed(() => {
|
||||
const data = formData.value
|
||||
return {
|
||||
count: getSumValue(data.map((item) => Number(item.count || 0))),
|
||||
totalPrice: getSumValue(data.map((item) => Number(item.totalPrice || 0)))
|
||||
}
|
||||
})
|
||||
|
||||
return sums
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
const row = {
|
||||
@@ -230,6 +226,7 @@ const handleAdd = () => {
|
||||
fromWarehouseId: defaultWarehouse.value?.id,
|
||||
toWarehouseId: undefined,
|
||||
productId: undefined,
|
||||
productName: undefined,
|
||||
productUnitName: undefined, // 产品单位
|
||||
productBarCode: undefined, // 产品条码
|
||||
productPrice: undefined,
|
||||
@@ -242,7 +239,7 @@ const handleAdd = () => {
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = (index) => {
|
||||
const handleDelete = (index: number) => {
|
||||
formData.value.splice(index, 1)
|
||||
}
|
||||
|
||||
@@ -256,6 +253,7 @@ const onChangeWarehouse = (warehouseId, row) => {
|
||||
const onChangeProduct = (productId, row) => {
|
||||
const product = productList.value.find((item) => item.id === productId)
|
||||
if (product) {
|
||||
row.productName = product.name
|
||||
row.productUnitName = product.unitName
|
||||
row.productBarCode = product.barCode
|
||||
row.productPrice = product.minPrice
|
||||
@@ -290,3 +288,98 @@ onMounted(async () => {
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mobile-item-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.mobile-item-card {
|
||||
background: #f9f9fb;
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid #ebeef5;
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
&__index {
|
||||
font-size: 12px;
|
||||
color: #909399;
|
||||
font-weight: 600;
|
||||
}
|
||||
&__name {
|
||||
flex: 1;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
&__body {
|
||||
font-size: 13px;
|
||||
}
|
||||
&__info-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 4px 0;
|
||||
&--highlight {
|
||||
margin-top: 4px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px dashed #e4e7ed;
|
||||
}
|
||||
}
|
||||
&__info-label {
|
||||
color: #909399;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
&__info-value {
|
||||
color: #606266;
|
||||
text-align: right;
|
||||
&--bold {
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
}
|
||||
}
|
||||
&__input-group {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 6px;
|
||||
:deep(.el-form-item) {
|
||||
flex: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.mobile-item-summary {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid #e6a23c;
|
||||
&__row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 4px 0;
|
||||
font-size: 13px;
|
||||
color: #606266;
|
||||
&--total {
|
||||
margin-top: 4px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
color: #303133;
|
||||
}
|
||||
}
|
||||
}
|
||||
.mobile-item-add {
|
||||
margin-top: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,258 +1,138 @@
|
||||
<template>
|
||||
<doc-alert
|
||||
title="【库存】库存调拨、库存盘点"
|
||||
url="https://doc.iocoder.cn/erp/stock-move-check/"
|
||||
/>
|
||||
|
||||
<ContentWrap>
|
||||
<!-- 搜索工作栏 -->
|
||||
<el-form
|
||||
class="-mb-15px"
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="调度单号" prop="no">
|
||||
<div class="mobile-stock-move">
|
||||
<!-- 顶部搜索和操作 -->
|
||||
<div class="mobile-header">
|
||||
<div class="mobile-header__search">
|
||||
<el-input
|
||||
v-model="queryParams.no"
|
||||
placeholder="请输入调度单号"
|
||||
placeholder="搜索调度单号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
:prefix-icon="Search"
|
||||
/>
|
||||
</el-form-item>
|
||||
</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-move: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">{{ formatDate2(item.moveTime) }}</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(null, null, item.totalCount,null) }}</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(null, null, item.totalPrice,null) }}</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-move:query']">详情</el-button>
|
||||
<el-button size="small" type="primary" @click.stop="openForm('update', item.id)" v-hasPermi="['erp:stock-move:update']" :disabled="item.status === 20">编辑</el-button>
|
||||
<el-button size="small" type="primary" @click.stop="handleUpdateStatus(item.id, 20)" v-hasPermi="['erp:stock-move: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-move:update-status']" v-else>反审批</el-button>
|
||||
<el-button size="small" type="danger" @click.stop="handleDelete([item.id])" v-hasPermi="['erp:stock-move:delete']">删除</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 分页 -->
|
||||
<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="请选择产品"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in productList"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
/>
|
||||
<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="moveTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.moveTime"
|
||||
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-date-picker v-model="queryParams.moveTime" 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="fromWarehouseId">
|
||||
<el-select
|
||||
v-model="queryParams.fromWarehouseId"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="请选择仓库"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in warehouseList"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
/>
|
||||
<el-select v-model="queryParams.fromWarehouseId" 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="请选择创建人"
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in userList"
|
||||
:key="item.id"
|
||||
:label="item.nickname"
|
||||
:value="item.id"
|
||||
/>
|
||||
<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 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-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-item label="备注" prop="remark">
|
||||
<el-input
|
||||
v-model="queryParams.remark"
|
||||
placeholder="请输入备注"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
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-move:create']"
|
||||
>
|
||||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||
</el-button>
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
@click="handleExport"
|
||||
:loading="exportLoading"
|
||||
v-hasPermi="['erp:stock-move:export']"
|
||||
>
|
||||
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||
</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" /> 删除
|
||||
</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"
|
||||
@row-click="handleRowClick"
|
||||
>
|
||||
<el-table-column width="30" label="选择" type="selection" />
|
||||
<el-table-column min-width="180" label="调度单号" align="center" prop="no" />
|
||||
<el-table-column label="产品信息" align="center" prop="productNames" min-width="200" />
|
||||
<el-table-column
|
||||
label="调度时间"
|
||||
align="center"
|
||||
prop="moveTime"
|
||||
:formatter="dateFormatter2"
|
||||
width="120px"
|
||||
sortable
|
||||
/>
|
||||
<el-table-column label="创建人" align="center" prop="creatorName" />
|
||||
<el-table-column
|
||||
label="数量"
|
||||
align="center"
|
||||
prop="totalCount"
|
||||
:formatter="erpCountTableColumnFormatter"
|
||||
/>
|
||||
<el-table-column
|
||||
label="金额"
|
||||
align="center"
|
||||
prop="totalPrice"
|
||||
:formatter="erpPriceTableColumnFormatter"
|
||||
/>
|
||||
<el-table-column label="状态" align="center" fixed="right" width="90" prop="status">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.ERP_AUDIT_STATUS" :value="scope.row.status" />
|
||||
<template #footer>
|
||||
<el-button @click="resetQuery">重置</el-button>
|
||||
<el-button type="primary" @click="handleFilterConfirm">确认筛选</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" fixed="right" width="220">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
@click="openForm('detail', scope.row.id)"
|
||||
v-hasPermi="['erp:stock-move:query']"
|
||||
>
|
||||
详情
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="openForm('update', scope.row.id)"
|
||||
v-hasPermi="['erp:stock-move:update']"
|
||||
:disabled="scope.row.status === 20"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="handleUpdateStatus(scope.row.id, 20)"
|
||||
v-hasPermi="['erp:stock-move:update-status']"
|
||||
v-if="scope.row.status === 10"
|
||||
>
|
||||
审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleUpdateStatus(scope.row.id, 10)"
|
||||
v-hasPermi="['erp:stock-move:update-status']"
|
||||
v-else
|
||||
>
|
||||
反审批
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete([scope.row.id])"
|
||||
v-hasPermi="['erp:stock-move:delete']"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</ContentWrap>
|
||||
</el-drawer>
|
||||
|
||||
<!-- 表单弹窗:添加/修改 -->
|
||||
<!-- 表单弹窗 -->
|
||||
<StockMoveForm ref="formRef" @success="getList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, reactive, onMounted } from 'vue'
|
||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||
import { dateFormatter2 } from '@/utils/formatTime'
|
||||
import download from '@/utils/download'
|
||||
import { dateFormatter2,formatDate2 } from '@/utils/formatTime'
|
||||
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
||||
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 { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
|
||||
import { useMessage } from '@/hooks/web/useMessage'
|
||||
import { Search, Plus, Filter } from '@element-plus/icons-vue'
|
||||
|
||||
/** ERP 库存调度单列表 */
|
||||
defineOptions({ name: 'ErpStockMove' })
|
||||
|
||||
const message = useMessage() // 消息弹窗
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
const loading = ref(true) // 列表的加载中
|
||||
const list = ref<StockMoveVO[]>([]) // 列表的数据
|
||||
const total = ref(0) // 列表的总页数
|
||||
const message = useMessage()
|
||||
const loading = ref(true)
|
||||
const list = ref<StockMoveVO[]>([])
|
||||
const total = ref(0)
|
||||
const filterVisible = ref(false)
|
||||
const queryParams = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
@@ -264,13 +144,11 @@ const queryParams = reactive({
|
||||
remark: undefined,
|
||||
creator: undefined
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
const productList = ref<ProductVO[]>([]) // 产品列表
|
||||
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
|
||||
const userList = ref<UserVO[]>([]) // 用户列表
|
||||
const queryFormRef = ref()
|
||||
const productList = ref<ProductVO[]>([])
|
||||
const warehouseList = ref<WarehouseVO[]>([])
|
||||
const userList = ref<UserVO[]>([])
|
||||
|
||||
/** 查询列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
@@ -282,105 +160,112 @@ const getList = async () => {
|
||||
}
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value.resetFields()
|
||||
queryFormRef.value?.resetFields()
|
||||
queryParams.moveTime = []
|
||||
queryParams.no = undefined
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 筛选确认 */
|
||||
const handleFilterConfirm = () => {
|
||||
filterVisible.value = false
|
||||
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'))
|
||||
// 刷新列表
|
||||
message.success('删除成功')
|
||||
await getList()
|
||||
selectionList.value = selectionList.value.filter((item) => !ids.includes(item.id))
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 审批/反审批操作 */
|
||||
const handleUpdateStatus = async (id: number, status: number) => {
|
||||
try {
|
||||
// 审批的二次确认
|
||||
await message.confirm(`确定${status === 20 ? '审批' : '反审批'}该调度单吗?`)
|
||||
// 发起审批
|
||||
await StockMoveApi.updateStockMoveStatus(id, status)
|
||||
message.success(`${status === 20 ? '审批' : '反审批'}成功`)
|
||||
// 刷新列表
|
||||
await getList()
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = async () => {
|
||||
try {
|
||||
// 导出的二次确认
|
||||
await message.exportConfirm()
|
||||
// 发起导出
|
||||
exportLoading.value = true
|
||||
const data = await StockMoveApi.exportStockMove(queryParams)
|
||||
download.excel(data, '库存调度单.xls')
|
||||
} catch {
|
||||
} finally {
|
||||
exportLoading.value = false
|
||||
}
|
||||
const handleQuickFilter = (status: number | undefined) => {
|
||||
queryParams.status = status
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 选中操作 */
|
||||
const selectionList = ref<StockMoveVO[]>([])
|
||||
const handleSelectionChange = (rows: StockMoveVO[]) => {
|
||||
selectionList.value = rows
|
||||
}
|
||||
|
||||
/** 行点击操作 */
|
||||
const handleRowClick = (row: StockMoveVO, column: any, event: MouseEvent) => {
|
||||
// 检查是否点击了按钮、链接或其他交互元素
|
||||
const handleRowClick = (row: StockMoveVO, event?: MouseEvent) => {
|
||||
if (event) {
|
||||
const target = event.target as HTMLElement
|
||||
if (
|
||||
target.tagName === 'BUTTON' ||
|
||||
target.tagName === 'A' ||
|
||||
target.tagName === 'I' ||
|
||||
target.tagName === 'svg' ||
|
||||
target.closest('button') ||
|
||||
target.closest('a') ||
|
||||
target.closest('.el-button') ||
|
||||
target.closest('.el-checkbox')
|
||||
) {
|
||||
return
|
||||
if (target.closest('button') || target.closest('.el-button')) return
|
||||
}
|
||||
if (row.status === 20) openForm('detail', row.id)
|
||||
else if (row.status === 10) openForm('update', row.id)
|
||||
}
|
||||
|
||||
// 已审核打开详情页面,未审核打开编辑页面
|
||||
if (row.status === 20) {
|
||||
openForm('detail', row.id)
|
||||
} else if (row.status === 10) {
|
||||
openForm('update', row.id)
|
||||
}
|
||||
}
|
||||
|
||||
/** 初始化 **/
|
||||
onMounted(async () => {
|
||||
await getList()
|
||||
// 加载产品、仓库列表、客户
|
||||
productList.value = await ProductApi.getProductSimpleList()
|
||||
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
|
||||
userList.value = await UserApi.getSimpleUserList()
|
||||
})
|
||||
// TODO 芋艿:可优化功能:列表界面,支持导入
|
||||
// TODO 芋艿:可优化功能:详情界面,支持打印
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.mobile-stock-move {
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user