<script lang="ts" setup>
|
import type { ErpProductApi } from '#/api/erp/product/product';
|
import type { ErpStockCheckApi } from '#/api/erp/stock/check';
|
|
import { computed, nextTick, onMounted, ref, watch } from 'vue';
|
|
import {
|
erpCountInputFormatter,
|
erpPriceInputFormatter,
|
erpPriceMultiply,
|
} from '@vben/utils';
|
|
import { Input, InputNumber, Select } from 'ant-design-vue';
|
|
import { TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { getProductSimpleList } from '#/api/erp/product/product';
|
import { getStockCount } from '#/api/erp/stock/stock';
|
import { getWarehouseSimpleList } from '#/api/erp/stock/warehouse';
|
|
import { useFormItemColumns } from '../data';
|
|
interface Props {
|
items?: ErpStockCheckApi.StockCheckItem[];
|
disabled?: boolean;
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
items: () => [],
|
disabled: false,
|
});
|
|
const emit = defineEmits(['update:items']);
|
|
const tableData = ref<ErpStockCheckApi.StockCheckItem[]>([]); // 表格数据
|
const productOptions = ref<ErpProductApi.Product[]>([]); // 产品下拉选项
|
const warehouseOptions = ref<any[]>([]); // 仓库下拉选项
|
|
/** 获取表格合计数据 */
|
const summaries = computed(() => {
|
return {
|
count: tableData.value.reduce((sum, item) => sum + (item.count || 0), 0),
|
totalPrice: tableData.value.reduce(
|
(sum, item) => sum + (item.totalPrice || 0),
|
0,
|
),
|
};
|
});
|
|
/** 表格配置 */
|
const [Grid, gridApi] = useVbenVxeGrid({
|
gridOptions: {
|
columns: useFormItemColumns(props.disabled),
|
data: tableData.value,
|
minHeight: 250,
|
autoResize: true,
|
border: true,
|
rowConfig: {
|
keyField: 'seq',
|
isHover: true,
|
},
|
pagerConfig: {
|
enabled: false,
|
},
|
toolbarConfig: {
|
enabled: false,
|
},
|
},
|
});
|
|
/** 监听外部传入的列数据 */
|
watch(
|
() => props.items,
|
async (items) => {
|
if (!items) {
|
return;
|
}
|
items.forEach((item) => initRow(item));
|
tableData.value = [...items];
|
await nextTick(); // 特殊:保证 gridApi 已经初始化
|
await gridApi.grid.reloadData(tableData.value);
|
},
|
{
|
immediate: true,
|
},
|
);
|
|
/** 处理新增 */
|
function handleAdd() {
|
const newRow = {
|
id: undefined,
|
warehouseId: undefined,
|
productId: undefined,
|
productUnitName: undefined, // 产品单位
|
productBarCode: undefined, // 产品条码
|
productPrice: undefined,
|
stockCount: undefined,
|
actualCount: undefined,
|
count: undefined,
|
totalPrice: undefined,
|
remark: undefined,
|
};
|
tableData.value.push(newRow);
|
// 通知父组件更新
|
emit('update:items', [...tableData.value]);
|
}
|
|
/** 处理删除 */
|
function handleDelete(row: ErpStockCheckApi.StockCheckItem) {
|
// TODO 芋艿
|
const index = tableData.value.findIndex((item) => item.seq === row.seq);
|
if (index !== -1) {
|
tableData.value.splice(index, 1);
|
}
|
// 通知父组件更新
|
emit('update:items', [...tableData.value]);
|
}
|
|
/** 处理仓库变更 */
|
async function handleWarehouseChange(warehouseId: any, row: any) {
|
const warehouse = warehouseOptions.value.find((w) => w.id === warehouseId);
|
if (!warehouse) {
|
return;
|
}
|
row.warehouseId = warehouseId;
|
|
// 如果已选择产品,重新获取库存
|
if (row.productId) {
|
row.stockCount = (await getStockCount(row.productId, warehouseId)) || 0;
|
}
|
|
handleRowChange(row);
|
}
|
|
/** 处理产品变更 */
|
async function handleProductChange(productId: any, row: any) {
|
const product = productOptions.value.find((p) => p.id === productId);
|
if (!product) {
|
return;
|
}
|
row.productId = productId;
|
row.productUnitId = product.unitId;
|
row.productBarCode = product.barCode;
|
row.productUnitName = product.unitName;
|
row.productName = product.name;
|
row.stockCount = row.warehouseId
|
? (await getStockCount(productId, row.warehouseId)) || 0
|
: (await getStockCount(productId)) || 0;
|
row.actualCount = row.stockCount || 0;
|
row.productPrice = product.purchasePrice || 0;
|
row.count = row.actualCount - row.stockCount || 0;
|
handleRowChange(row);
|
}
|
|
/** 处理实际库存变更 */
|
function handleActualCountChange(actualCount: any, row: any) {
|
row.actualCount = actualCount;
|
if (row.stockCount !== undefined && row.actualCount !== undefined) {
|
row.count = row.actualCount - row.stockCount;
|
if (row.productPrice && row.count) {
|
row.totalPrice = erpPriceMultiply(row.productPrice, row.count) ?? 0;
|
}
|
}
|
handleRowChange(row);
|
}
|
|
/** 处理行数据变更 */
|
function handleRowChange(row: any) {
|
const index = tableData.value.findIndex((item) => item.seq === row.seq);
|
if (index === -1) {
|
tableData.value.push(row);
|
} else {
|
tableData.value[index] = row;
|
}
|
emit('update:items', [...tableData.value]);
|
}
|
|
/** 初始化行数据 */
|
function initRow(row: ErpStockCheckApi.StockCheckItem) {
|
if (row.productPrice && row.count) {
|
row.totalPrice = erpPriceMultiply(row.productPrice, row.count) ?? 0;
|
}
|
}
|
|
/** 表单校验 */
|
function validate() {
|
for (let i = 0; i < tableData.value.length; i++) {
|
const item = tableData.value[i];
|
if (item) {
|
if (!item.warehouseId) {
|
throw new Error(`第 ${i + 1} 行:仓库不能为空`);
|
}
|
if (!item.productId) {
|
throw new Error(`第 ${i + 1} 行:产品不能为空`);
|
}
|
if (!item.actualCount || item.actualCount <= 0) {
|
throw new Error(`第 ${i + 1} 行:实际库存不能为空`);
|
}
|
}
|
}
|
}
|
|
defineExpose({
|
validate,
|
});
|
|
/** 初始化 */
|
onMounted(async () => {
|
productOptions.value = await getProductSimpleList();
|
warehouseOptions.value = await getWarehouseSimpleList();
|
// 目的:新增时,默认添加一行
|
if (tableData.value.length === 0) {
|
handleAdd();
|
}
|
});
|
</script>
|
|
<template>
|
<Grid class="w-full">
|
<template #warehouseId="{ row }">
|
<Select
|
v-model:value="row.warehouseId"
|
:options="warehouseOptions"
|
:field-names="{ label: 'name', value: 'id' }"
|
class="w-full"
|
placeholder="请选择仓库"
|
show-search
|
:disabled="disabled"
|
@change="handleWarehouseChange($event, row)"
|
/>
|
</template>
|
<template #productId="{ row }">
|
<Select
|
v-model:value="row.productId"
|
:options="productOptions"
|
:field-names="{ label: 'name', value: 'id' }"
|
class="w-full"
|
placeholder="请选择产品"
|
show-search
|
:disabled="disabled"
|
@change="handleProductChange($event, row)"
|
/>
|
</template>
|
<template #actualCount="{ row }">
|
<InputNumber
|
v-if="!disabled"
|
v-model:value="row.actualCount"
|
:min="0"
|
:precision="3"
|
@change="handleActualCountChange($event, row)"
|
/>
|
<span v-else>{{ erpCountInputFormatter(row.actualCount) || '-' }}</span>
|
</template>
|
<template #productPrice="{ row }">
|
<InputNumber
|
v-if="!disabled"
|
v-model:value="row.productPrice"
|
:min="0"
|
:precision="2"
|
@change="handleRowChange(row)"
|
/>
|
<span v-else>{{ erpPriceInputFormatter(row.productPrice) || '-' }}</span>
|
</template>
|
<template #remark="{ row }">
|
<Input v-if="!disabled" v-model:value="row.remark" class="w-full" />
|
<span v-else>{{ row.remark || '-' }}</span>
|
</template>
|
<template #actions="{ row }">
|
<TableAction
|
:actions="[
|
{
|
label: '删除',
|
type: 'link',
|
danger: true,
|
popConfirm: {
|
title: '确认删除该产品吗?',
|
confirm: handleDelete.bind(null, row),
|
},
|
},
|
]"
|
/>
|
</template>
|
|
<template #bottom>
|
<div class="mt-2 rounded border border-border bg-muted p-2">
|
<div class="flex justify-between text-sm text-muted-foreground">
|
<span class="font-medium text-foreground">合计:</span>
|
<div class="flex space-x-4">
|
<span>数量:{{ erpCountInputFormatter(summaries.count) }}</span>
|
<span>
|
金额:{{ erpPriceInputFormatter(summaries.totalPrice) }}
|
</span>
|
</div>
|
</div>
|
</div>
|
<TableAction
|
v-if="!disabled"
|
class="mt-2 flex justify-center"
|
:actions="[
|
{
|
label: '添加盘点产品',
|
type: 'default',
|
onClick: handleAdd,
|
},
|
]"
|
/>
|
</template>
|
</Grid>
|
</template>
|