2026-03-05 16:52:12 +08:00
|
|
|
<template>
|
2026-03-14 10:22:48 +08:00
|
|
|
<!-- 移动端布局 -->
|
|
|
|
|
<el-form v-if="isMobile" ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-position="top" :inline-message="true" :disabled="disabled">
|
2026-03-09 17:42:12 +08:00
|
|
|
<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">
|
2026-03-05 16:52:12 +08:00
|
|
|
<el-form-item
|
2026-03-09 17:42:12 +08:00
|
|
|
label="仓库"
|
2026-03-05 16:52:12 +08:00
|
|
|
:prop="`${$index}.warehouseId`"
|
|
|
|
|
:rules="formRules.warehouseId"
|
|
|
|
|
>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="row.warehouseId"
|
|
|
|
|
clearable
|
|
|
|
|
filterable
|
|
|
|
|
placeholder="请选择仓库"
|
2026-03-09 17:42:12 +08:00
|
|
|
style="width: 100%"
|
2026-03-05 16:52:12 +08:00
|
|
|
@change="onChangeWarehouse($event, row)"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in warehouseList"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2026-03-09 17:42:12 +08:00
|
|
|
<el-form-item
|
|
|
|
|
label="产品名称"
|
|
|
|
|
:prop="`${$index}.productId`"
|
|
|
|
|
:rules="formRules.productId"
|
|
|
|
|
>
|
2026-03-05 16:52:12 +08:00
|
|
|
<el-select
|
|
|
|
|
v-model="row.productId"
|
|
|
|
|
clearable
|
|
|
|
|
filterable
|
|
|
|
|
@change="onChangeProduct($event, row)"
|
|
|
|
|
placeholder="请选择产品"
|
2026-03-09 17:42:12 +08:00
|
|
|
style="width: 100%"
|
2026-03-05 16:52:12 +08:00
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in productList"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2026-03-09 17:42:12 +08:00
|
|
|
<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"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="单价" :prop="`${$index}.productPrice`">
|
|
|
|
|
<el-input-number
|
|
|
|
|
v-model="row.productPrice"
|
|
|
|
|
controls-position="right"
|
|
|
|
|
:min="0"
|
|
|
|
|
:precision="4"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</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`">
|
2026-03-05 16:52:12 +08:00
|
|
|
<el-input v-model="row.remark" placeholder="请输入备注" />
|
|
|
|
|
</el-form-item>
|
2026-03-09 17:42:12 +08:00
|
|
|
</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>
|
2026-03-05 16:52:12 +08:00
|
|
|
</el-form>
|
2026-03-14 10:22:48 +08:00
|
|
|
<div class="mobile-item-add" v-if="isMobile && !disabled">
|
2026-03-09 17:42:12 +08:00
|
|
|
<el-button @click="handleAdd" round style="width: 100%">+ 添加出库产品</el-button>
|
|
|
|
|
</div>
|
2026-03-14 10:22:48 +08:00
|
|
|
|
|
|
|
|
<!-- PC端布局 -->
|
|
|
|
|
<el-form v-if="!isMobile" ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="0px" :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 }"><el-form-item :prop="`${$index}.warehouseId`" :rules="formRules.warehouseId" class="mb-0px!"><el-select v-model="row.warehouseId" clearable filterable placeholder="请选择仓库" @change="onChangeWarehouse($event, row)"><el-option v-for="item in warehouseList" :key="item.id" :label="item.name" :value="item.id" /></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-select v-model="row.productId" clearable filterable @change="onChangeProduct($event, row)" placeholder="请选择产品"><el-option v-for="item in productList" :key="item.id" :label="item.name" :value="item.id" /></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!"><el-input-number v-model="row.count" controls-position="right" :min="0.0001" :precision="4" 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!"><el-input-number v-model="row.productPrice" controls-position="right" :min="0.0001" :precision="4" class="!w-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!"><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>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-row v-if="!isMobile && !disabled" justify="center" class="mt-3"><el-button @click="handleAdd" round>+ 添加出库产品</el-button></el-row>
|
2026-03-05 16:52:12 +08:00
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
2026-03-09 17:42:12 +08:00
|
|
|
import { ref, reactive, computed, watch, onMounted } from 'vue'
|
2026-03-05 16:52:12 +08:00
|
|
|
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
|
|
|
|
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
|
|
|
|
import { StockApi } from '@/api/erp/stock/stock'
|
2026-03-14 10:22:48 +08:00
|
|
|
import { erpCountInputFormatter, erpPriceInputFormatter, erpPriceMultiply, getSumValue } from '@/utils'
|
|
|
|
|
import { useWindowSize } from '@vueuse/core'
|
|
|
|
|
|
|
|
|
|
const { width } = useWindowSize()
|
|
|
|
|
const isMobile = computed(() => width.value < 768)
|
2026-03-05 16:52:12 +08:00
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
items: undefined
|
|
|
|
|
disabled: false
|
|
|
|
|
}>()
|
|
|
|
|
const formLoading = ref(false) // 表单的加载中
|
|
|
|
|
const formData = ref([])
|
|
|
|
|
const formRules = reactive({
|
|
|
|
|
warehouseId: [{ required: true, message: '仓库不能为空', trigger: 'blur' }],
|
|
|
|
|
productId: [{ required: true, message: '产品不能为空', trigger: 'blur' }],
|
|
|
|
|
count: [{ required: true, message: '产品数量不能为空', trigger: 'blur' }]
|
|
|
|
|
})
|
|
|
|
|
const formRef = ref([]) // 表单 Ref
|
|
|
|
|
const productList = ref<ProductVO[]>([]) // 产品列表
|
|
|
|
|
const warehouseList = ref<WarehouseVO[]>([]) // 仓库列表
|
|
|
|
|
const defaultWarehouse = ref<WarehouseVO>(undefined) // 默认仓库
|
|
|
|
|
|
|
|
|
|
/** 初始化设置出库项 */
|
|
|
|
|
watch(
|
|
|
|
|
() => props.items,
|
|
|
|
|
async (val) => {
|
2026-03-09 17:42:12 +08:00
|
|
|
if (!val) return
|
|
|
|
|
val.forEach((item) => {
|
|
|
|
|
if (item.warehouseId == null) {
|
|
|
|
|
item.warehouseId = defaultWarehouse.value?.id
|
|
|
|
|
}
|
|
|
|
|
if (item.stockCount === null && item.warehouseId != null) {
|
|
|
|
|
setStockCount(item)
|
|
|
|
|
}
|
|
|
|
|
})
|
2026-03-05 16:52:12 +08:00
|
|
|
formData.value = val
|
|
|
|
|
},
|
2026-03-09 17:42:12 +08:00
|
|
|
{ immediate: true, deep: true }
|
2026-03-05 16:52:12 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
/** 监听合同产品变化,计算合同产品总价 */
|
|
|
|
|
watch(
|
|
|
|
|
() => formData.value,
|
|
|
|
|
(val) => {
|
|
|
|
|
if (!val || val.length === 0) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 循环处理
|
|
|
|
|
val.forEach((item) => {
|
|
|
|
|
item.totalPrice = erpPriceMultiply(item.productPrice, item.count)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
{ deep: true }
|
|
|
|
|
)
|
|
|
|
|
|
2026-03-14 10:22:48 +08:00
|
|
|
/** 合计 - 移动端 */
|
2026-03-09 17:42:12 +08:00
|
|
|
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)))
|
|
|
|
|
}
|
|
|
|
|
})
|
2026-03-05 16:52:12 +08:00
|
|
|
|
2026-03-14 10:22:48 +08:00
|
|
|
/** 合计 - PC端 */
|
|
|
|
|
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] = '' }
|
|
|
|
|
})
|
|
|
|
|
return sums
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 16:52:12 +08:00
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
const row = {
|
|
|
|
|
id: undefined,
|
|
|
|
|
warehouseId: defaultWarehouse.value?.id,
|
|
|
|
|
productId: undefined,
|
2026-03-09 17:42:12 +08:00
|
|
|
productName: undefined,
|
2026-03-05 16:52:12 +08:00
|
|
|
productUnitName: undefined, // 产品单位
|
|
|
|
|
productBarCode: undefined, // 产品条码
|
|
|
|
|
productPrice: undefined,
|
|
|
|
|
stockCount: undefined,
|
|
|
|
|
count: 1,
|
|
|
|
|
totalPrice: undefined,
|
|
|
|
|
remark: undefined
|
|
|
|
|
}
|
|
|
|
|
formData.value.push(row)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
2026-03-09 17:42:12 +08:00
|
|
|
const handleDelete = (index: number) => {
|
2026-03-05 16:52:12 +08:00
|
|
|
formData.value.splice(index, 1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 处理仓库变更 */
|
|
|
|
|
const onChangeWarehouse = (warehouseId, row) => {
|
|
|
|
|
// 加载库存
|
|
|
|
|
setStockCount(row)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 处理产品变更 */
|
|
|
|
|
const onChangeProduct = (productId, row) => {
|
|
|
|
|
const product = productList.value.find((item) => item.id === productId)
|
|
|
|
|
if (product) {
|
2026-03-09 17:42:12 +08:00
|
|
|
row.productName = product.name
|
2026-03-05 16:52:12 +08:00
|
|
|
row.productUnitName = product.unitName
|
|
|
|
|
row.productBarCode = product.barCode
|
|
|
|
|
row.productPrice = product.minPrice
|
|
|
|
|
}
|
|
|
|
|
// 加载库存
|
|
|
|
|
setStockCount(row)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 加载库存 */
|
|
|
|
|
const setStockCount = async (row) => {
|
|
|
|
|
if (!row.productId || !row.warehouseId) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const stock = await StockApi.getStock2(row.productId, row.warehouseId)
|
|
|
|
|
row.stockCount = stock ? stock.count : 0
|
|
|
|
|
if (stock && stock.unitPrice) {
|
|
|
|
|
row.productPrice = stock.unitPrice
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 表单校验 */
|
|
|
|
|
const validate = () => {
|
|
|
|
|
return formRef.value.validate()
|
|
|
|
|
}
|
|
|
|
|
defineExpose({ validate })
|
|
|
|
|
|
|
|
|
|
/** 初始化 */
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
productList.value = await ProductApi.getProductSimpleList()
|
|
|
|
|
warehouseList.value = await WarehouseApi.getWarehouseSimpleList()
|
|
|
|
|
defaultWarehouse.value = warehouseList.value.find((item) => item.defaultStatus)
|
|
|
|
|
// 默认添加一个
|
|
|
|
|
if (formData.value.length === 0) {
|
|
|
|
|
handleAdd()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2026-03-09 17:42:12 +08:00
|
|
|
|
|
|
|
|
<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>
|