123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <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="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`" 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="totalProductPrice" fixed="right" min-width="100">
- <template #default="{ row, $index }">
- <el-form-item :prop="`${$index}.totalProductPrice`" class="mb-0px!">
- <el-input
- disabled
- v-model="row.totalProductPrice"
- :formatter="erpPriceInputFormatter"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="税率(%)" fixed="right" min-width="115">
- <template #default="{ row, $index }">
- <el-form-item :prop="`${$index}.taxPercent`" class="mb-0px!">
- <el-input-number
- v-model="row.taxPercent"
- controls-position="right"
- :min="0.01"
- :precision="2"
- class="!w-100%"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="税额" prop="taxPrice" fixed="right" min-width="120">
- <template #default="{ row, $index }">
- <el-form-item :prop="`${$index}.taxPrice`" class="mb-0px!">
- <el-form-item :prop="`${$index}.taxPrice`" class="mb-0px!">
- <el-input disabled v-model="row.taxPrice" :formatter="erpPriceInputFormatter" />
- </el-form-item>
- </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 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 { 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' }],
- 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[]>([]) // 产品列表
- /** 初始化设置出库项 */
- watch(
- () => props.items,
- async (val) => {
- formData.value = val
- },
- { immediate: true }
- )
- /** 监听合同产品变化,计算合同产品总价 */
- watch(
- () => formData.value,
- (val) => {
- if (!val || val.length === 0) {
- return
- }
- // 循环处理
- val.forEach((item) => {
- item.totalProductPrice = erpPriceMultiply(item.productPrice, item.count)
- item.taxPrice = erpPriceMultiply(item.totalProductPrice, item.taxPercent / 100.0)
- if (item.totalProductPrice != null) {
- item.totalPrice = item.totalProductPrice + (item.taxPrice || 0)
- } else {
- item.totalPrice = undefined
- }
- })
- },
- { deep: true }
- )
- /** 合计 */
- const getSummaries = (param: SummaryMethodProps) => {
- const { columns, data } = param
- const sums: string[] = []
- columns.forEach((column, index: number) => {
- if (index === 0) {
- sums[index] = '合计'
- return
- }
- if (['count', 'totalProductPrice', 'taxPrice', '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,
- productId: undefined,
- productUnitName: undefined, // 产品单位
- productBarCode: undefined, // 产品条码
- productPrice: undefined,
- stockCount: undefined,
- count: 1,
- totalProductPrice: undefined,
- taxPercent: undefined,
- taxPrice: undefined,
- totalPrice: undefined,
- remark: undefined
- }
- formData.value.push(row)
- }
- /** 删除按钮操作 */
- const handleDelete = (index: number) => {
- formData.value.splice(index, 1)
- }
- /** 处理产品变更 */
- 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.salePrice
- }
- // 加载库存
- setStockCount(row)
- }
- /** 加载库存 */
- const setStockCount = async (row: any) => {
- if (!row.productId) {
- return
- }
- const count = await StockApi.getStockCount(row.productId)
- row.stockCount = count || 0
- }
- /** 表单校验 */
- const validate = () => {
- return formRef.value.validate()
- }
- defineExpose({ validate })
- /** 初始化 */
- onMounted(async () => {
- productList.value = await ProductApi.getProductSimpleList()
- // 默认添加一个
- if (formData.value.length === 0) {
- handleAdd()
- }
- })
- </script>
|