123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <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="200">
- <template #default="{ row }">
- <el-form-item class="mb-0px!">
- <el-input disabled v-model="row.bizNo" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="应付金额" prop="totalPrice" fixed="right" min-width="100">
- <template #default="{ row }">
- <el-form-item class="mb-0px!">
- <el-input disabled v-model="row.totalPrice" :formatter="erpPriceInputFormatter" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="已付金额" prop="paidPrice" fixed="right" min-width="100">
- <template #default="{ row }">
- <el-form-item class="mb-0px!">
- <el-input disabled v-model="row.paidPrice" :formatter="erpPriceInputFormatter" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="本次付款" prop="paymentPrice" fixed="right" min-width="115">
- <template #default="{ row, $index }">
- <el-form-item :prop="`${$index}.paymentPrice`" class="mb-0px!">
- <el-input-number
- v-model="row.paymentPrice"
- controls-position="right"
- :min="0"
- :precision="2"
- class="!w-100%"
- />
- </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-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({
- paymentPrice: [{ required: true, message: '本次付款不能为空', trigger: 'blur' }]
- })
- const formRef = ref([]) // 表单 Ref
- const productList = ref<ProductVO[]>([]) // 产品列表
- /** 初始化设置入库项 */
- watch(
- () => props.items,
- async (val) => {
- formData.value = val
- },
- { immediate: true }
- )
- /** 合计 */
- const getSummaries = (param: SummaryMethodProps) => {
- const { columns, data } = param
- const sums: string[] = []
- columns.forEach((column, index: number) => {
- if (index === 0) {
- sums[index] = '合计'
- return
- }
- if (['totalPrice', 'paidPrice', 'paymentPrice'].includes(column.property)) {
- const sum = getSumValue(data.map((item) => Number(item[column.property])))
- sums[index] = erpPriceInputFormatter(sum)
- } else {
- sums[index] = ''
- }
- })
- return sums
- }
- /** 新增按钮操作 */
- const handleAdd = () => {
- const row = {
- id: undefined,
- totalPrice: undefined,
- paidPrice: undefined,
- paymentPrice: undefined,
- totalPrice: undefined,
- remark: undefined
- }
- formData.value.push(row)
- }
- /** 删除按钮操作 */
- const handleDelete = (index: number) => {
- formData.value.splice(index, 1)
- }
- /** 表单校验 */
- const validate = () => {
- return formRef.value.validate()
- }
- defineExpose({ validate })
- </script>
|