295 lines
9.3 KiB
Vue
295 lines
9.3 KiB
Vue
<template>
|
|
<el-form
|
|
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}.fromWarehouseId`"
|
|
:rules="formRules.fromWarehouseId"
|
|
class="mb-0px!"
|
|
>
|
|
<el-select
|
|
v-model="row.fromWarehouseId"
|
|
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="125">
|
|
<template #default="{ row, $index }">
|
|
<el-form-item
|
|
:prop="`${$index}.toWarehouseId`"
|
|
:rules="formRules.toWarehouseId"
|
|
class="mb-0px!"
|
|
>
|
|
<el-select v-model="row.toWarehouseId" filterable placeholder="请选择调入仓库">
|
|
<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"
|
|
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.001"
|
|
:precision="3"
|
|
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`"
|
|
:rules="formRules.productPrice"
|
|
class="mb-0px!"
|
|
>
|
|
<el-input-number
|
|
v-model="row.productPrice"
|
|
controls-position="right"
|
|
:min="0.01"
|
|
:precision="2"
|
|
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`"
|
|
:rules="formRules.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`" :rules="formRules.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 justify="center" class="mt-3" v-if="!disabled">
|
|
<el-button @click="handleAdd" round>+ 添加调度产品</el-button>
|
|
</el-row>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ProductApi, ProductVO } from '@/api/erp/product/product'
|
|
import { WarehouseApi, WarehouseVO } from '@/api/erp/stock/warehouse'
|
|
import { StockApi } from '@/api/erp/stock/stock'
|
|
import {
|
|
erpCountInputFormatter,
|
|
erpPriceInputFormatter,
|
|
erpPriceMultiply,
|
|
getSumValue
|
|
} from '@/utils'
|
|
|
|
const props = defineProps<{
|
|
items: undefined
|
|
disabled: false
|
|
}>()
|
|
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' }],
|
|
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) => {
|
|
formData.value = val
|
|
},
|
|
{ immediate: true }
|
|
)
|
|
|
|
/** 监听合同产品变化,计算合同产品总价 */
|
|
watch(
|
|
() => formData.value,
|
|
(val) => {
|
|
if (!val || val.length === 0) {
|
|
return
|
|
}
|
|
// 循环处理
|
|
val.forEach((item) => {
|
|
item.totalPrice = erpPriceMultiply(item.productPrice, item.count)
|
|
})
|
|
},
|
|
{ deep: true }
|
|
)
|
|
|
|
/** 合计 */
|
|
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
|
|
}
|
|
|
|
/** 新增按钮操作 */
|
|
const handleAdd = () => {
|
|
const row = {
|
|
id: undefined,
|
|
fromWarehouseId: defaultWarehouse.value?.id,
|
|
toWarehouseId: undefined,
|
|
productId: undefined,
|
|
productUnitName: undefined, // 产品单位
|
|
productBarCode: undefined, // 产品条码
|
|
productPrice: undefined,
|
|
stockCount: undefined,
|
|
count: 1,
|
|
totalPrice: undefined,
|
|
remark: undefined
|
|
}
|
|
formData.value.push(row)
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = (index) => {
|
|
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) {
|
|
row.productUnitName = product.unitName
|
|
row.productBarCode = product.barCode
|
|
row.productPrice = product.minPrice
|
|
}
|
|
// 加载库存
|
|
setStockCount(row)
|
|
}
|
|
|
|
/** 加载库存 */
|
|
const setStockCount = async (row) => {
|
|
if (!row.productId || !row.fromWarehouseId) {
|
|
return
|
|
}
|
|
const stock = await StockApi.getStock2(row.productId, row.fromWarehouseId)
|
|
row.stockCount = stock ? stock.count : 0
|
|
}
|
|
|
|
/** 表单校验 */
|
|
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>
|