|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="p-2">
|
|
|
|
|
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
|
|
|
<div v-show="showSearch" class="mb-[10px]">
|
|
|
|
|
|
<el-card shadow="hover">
|
|
|
|
|
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="100px">
|
|
|
|
|
|
<el-form-item label="物料编码" prop="productCode">
|
|
|
|
|
|
<el-input v-model="queryParams.productCode" placeholder="请输入物料编码" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="物料名称" prop="productName">
|
|
|
|
|
|
<el-input v-model="queryParams.productName" placeholder="请输入物料编码" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="批次号" prop="batchNumber">
|
|
|
|
|
|
<el-input v-model="queryParams.batchNumber" placeholder="请输入批次号" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="调出仓库" prop="transferOutStoreId">
|
|
|
|
|
|
<el-select v-model="queryParams.transferOutStoreId" placeholder="请选择调出仓库" clearable @keyup.enter="handleQuery">
|
|
|
|
|
|
<el-option v-for="item in warehouseInfoList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="调入仓库" prop="transferInStoreId">
|
|
|
|
|
|
<el-select v-model="queryParams.transferInStoreId" placeholder="请选择调入仓库" clearable @keyup.enter="handleQuery">
|
|
|
|
|
|
<el-option v-for="item in warehouseInfoList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</transition>
|
|
|
|
|
|
|
|
|
|
|
|
<el-card shadow="never">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['wms:materialTransferRecord:add']">新增 </el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<!--<el-col :span="1.5">-->
|
|
|
|
|
|
<!-- <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['wms:materialTransferRecord:edit']"-->
|
|
|
|
|
|
<!-- >修改-->
|
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
|
<!--<el-col :span="1.5">-->
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- type="danger"-->
|
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
|
<!-- icon="Delete"-->
|
|
|
|
|
|
<!-- :disabled="multiple"-->
|
|
|
|
|
|
<!-- @click="handleDelete()"-->
|
|
|
|
|
|
<!-- v-hasPermi="['wms:materialTransferRecord:remove']"-->
|
|
|
|
|
|
<!-- >删除-->
|
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['wms:materialTransferRecord:export']">导出 </el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" border :data="materialTransferRecordList" @selection-change="handleSelectionChange">
|
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
|
<el-table-column label="调拨记录ID" align="center" prop="transferRecordId" v-if="columns[0].visible" />
|
|
|
|
|
|
<el-table-column label="物料编码" align="center" prop="productCode" v-if="columns[1].visible" />
|
|
|
|
|
|
<el-table-column label="物料名称" align="center" prop="productName" v-if="columns[1].visible" />
|
|
|
|
|
|
<el-table-column label="物料说明" align="center" prop="productSpe" v-if="columns[1].visible" />
|
|
|
|
|
|
<el-table-column label="批次号" align="center" prop="batchNumber" v-if="columns[2].visible" />
|
|
|
|
|
|
<el-table-column label="调拨数量" align="center" prop="transferQty" v-if="columns[3].visible" />
|
|
|
|
|
|
<el-table-column label="单位" align="center" prop="unitName" v-if="columns[4].visible" />
|
|
|
|
|
|
<el-table-column label="调出仓库" align="center" prop="transferOutStoreId" v-if="columns[5].visible">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
{{ getWarehouseName(scope.row.transferOutStoreId) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="调入仓库" align="center" prop="transferInStoreId" v-if="columns[6].visible">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
{{ getWarehouseName(scope.row.transferInStoreId) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="库存id" align="center" prop="inventoryDetailsId" v-if="columns[7].visible" />
|
|
|
|
|
|
<el-table-column label="租户编号" align="center" prop="tenantId" v-if="columns[8].visible" />
|
|
|
|
|
|
<el-table-column label="删除标志" align="center" prop="delFlag" v-if="columns[9].visible" />
|
|
|
|
|
|
<el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[10].visible" />
|
|
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[11].visible" />
|
|
|
|
|
|
<el-table-column label="调拨时间" align="center" prop="createTime" width="180" v-if="columns[12].visible">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[13].visible" />
|
|
|
|
|
|
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[14].visible">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<!-- <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<el-tooltip content="修改" placement="top">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
link
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
icon="Edit"
|
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
|
v-hasPermi="['wms:materialTransferRecord:edit']"
|
|
|
|
|
|
></el-button>
|
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
<el-tooltip content="删除" placement="top">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
link
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
icon="Delete"
|
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
|
v-hasPermi="['wms:materialTransferRecord:remove']"
|
|
|
|
|
|
></el-button>
|
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>-->
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
<!-- 添加或修改物料调拨对话框 -->
|
|
|
|
|
|
<el-dialog :title="dialog.title" v-model="dialog.visible" width="1000px" append-to-body>
|
|
|
|
|
|
<el-form ref="materialTransferRecordFormRef" :model="form" :rules="rules" label-width="120px">
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="调出仓库" prop="transferOutStoreId">
|
|
|
|
|
|
<el-select v-model="form.transferOutStoreId" placeholder="请选择调出仓库">
|
|
|
|
|
|
<el-option v-for="item in warehouseInfoList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="调入仓库" prop="transferInStoreId">
|
|
|
|
|
|
<el-select v-model="form.transferInStoreId" placeholder="请选择调入仓库">
|
|
|
|
|
|
<el-option v-for="item in warehouseInfoList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<el-card>
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<div>添加出库物料</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<el-button type="primary" @click="openInventorySelect">选择物料</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
<div v-if="selectInventorys.length > 0" style="margin-top: 20px">
|
|
|
|
|
|
<h4>已选择的物料:</h4>
|
|
|
|
|
|
<el-table border :data="selectInventorys">
|
|
|
|
|
|
<el-table-column label="批次号" align="center" prop="batchNumber" />
|
|
|
|
|
|
<el-table-column label="物料编码" align="center" prop="productCode" />
|
|
|
|
|
|
<el-table-column label="物料名称" align="center" prop="productName" />
|
|
|
|
|
|
<el-table-column label="单价" align="center" prop="unitPrice" width="80" />
|
|
|
|
|
|
<el-table-column label="当前库存" align="center" prop="inventoryAmount" width="90" />
|
|
|
|
|
|
<el-table-column label="调拨数量" align="center" prop="transferQty" width="140">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model="scope.row.transferQty"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
:precision="2"
|
|
|
|
|
|
:step="1"
|
|
|
|
|
|
:max="scope.row.inventoryAmount"
|
|
|
|
|
|
controls-position="right"
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
placeholder="请输入出库数量"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="单位" align="center" prop="unitName" width="80" />
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width" width="60">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<el-button link type="danger" icon="Delete" @click="removeOutDetail(scope.$index)"></el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
<wms-inventory-select
|
|
|
|
|
|
ref="inventorySelectRef"
|
|
|
|
|
|
:multiple="true"
|
|
|
|
|
|
:warehouse-id="form.transferOutStoreId"
|
|
|
|
|
|
@confirmCallBack="handleInventorySelect"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup name="MaterialTransferRecord" lang="ts">
|
|
|
|
|
|
import {
|
|
|
|
|
|
addMaterialTransferRecord,
|
|
|
|
|
|
delMaterialTransferRecord,
|
|
|
|
|
|
getMaterialTransferRecord,
|
|
|
|
|
|
listMaterialTransferRecord,
|
|
|
|
|
|
updateMaterialTransferRecord
|
|
|
|
|
|
} from '@/api/wms/materialTransferRecord';
|
|
|
|
|
|
import { MaterialTransferRecordForm, MaterialTransferRecordQuery, MaterialTransferRecordVO } from '@/api/wms/materialTransferRecord/types';
|
|
|
|
|
|
import { getWmsWarehouseInfoList } from '@/api/wms/warehouseInfo';
|
|
|
|
|
|
import WmsInventorySelect from '@/components/WmsInventorySelect/index.vue';
|
|
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
|
|
|
|
|
|
|
const materialTransferRecordList = ref<MaterialTransferRecordVO[]>([]);
|
|
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
|
const ids = ref<Array<string | number>>([]);
|
|
|
|
|
|
const single = ref(true);
|
|
|
|
|
|
const multiple = ref(true);
|
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
|
|
|
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
const materialTransferRecordFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
// 仓库列表
|
|
|
|
|
|
const warehouseInfoList = ref([]);
|
|
|
|
|
|
// 库存选择器
|
|
|
|
|
|
const inventorySelectRef = ref();
|
|
|
|
|
|
// 选中的库存列表
|
|
|
|
|
|
const selectInventorys = ref([]);
|
|
|
|
|
|
|
|
|
|
|
|
/** 根据仓库ID获取仓库名称 */
|
|
|
|
|
|
const getWarehouseName = (warehouseId) => {
|
|
|
|
|
|
const warehouse = warehouseInfoList.value.find((item) => item.warehouseId === warehouseId);
|
|
|
|
|
|
return warehouse ? warehouse.warehouseName : warehouseId;
|
|
|
|
|
|
};
|
|
|
|
|
|
/** 打开库存选择器 */
|
|
|
|
|
|
const openInventorySelect = () => {
|
|
|
|
|
|
if (!form.value.transferOutStoreId) {
|
|
|
|
|
|
ElMessage.warning('请先选择仓库');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
// inventorySelectRef.value.warehouseId = form.value.transferOutStoreId;
|
|
|
|
|
|
inventorySelectRef.value.open();
|
|
|
|
|
|
};
|
|
|
|
|
|
/** 处理库存选择器确认选择 */
|
|
|
|
|
|
const handleInventorySelect = (selectedInventorys) => {
|
|
|
|
|
|
selectInventorys.value = selectedInventorys;
|
|
|
|
|
|
console.log(selectedInventorys);
|
|
|
|
|
|
};
|
|
|
|
|
|
/** 删除选中的出库明细 */
|
|
|
|
|
|
const removeOutDetail = (index) => {
|
|
|
|
|
|
selectInventorys.value.splice(index, 1);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
|
|
|
|
visible: false,
|
|
|
|
|
|
title: ''
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/** 获取仓库列表 */
|
|
|
|
|
|
const getWarehouseInfoList = async () => {
|
|
|
|
|
|
const res = await getWmsWarehouseInfoList();
|
|
|
|
|
|
warehouseInfoList.value = res.data || [];
|
|
|
|
|
|
};
|
|
|
|
|
|
// 列显隐信息
|
|
|
|
|
|
const columns = ref<FieldOption[]>([
|
|
|
|
|
|
{ key: 0, label: `调拨记录ID`, visible: false },
|
|
|
|
|
|
{ key: 1, label: `物料ID`, visible: true },
|
|
|
|
|
|
{ key: 2, label: `批次号`, visible: true },
|
|
|
|
|
|
{ key: 3, label: `调拨数量`, visible: true },
|
|
|
|
|
|
{ key: 4, label: `单位`, visible: true },
|
|
|
|
|
|
{ key: 5, label: `调出仓库`, visible: true },
|
|
|
|
|
|
{ key: 6, label: `调入仓库`, visible: true },
|
|
|
|
|
|
{ key: 7, label: `库存id`, visible: false },
|
|
|
|
|
|
{ key: 8, label: `租户编号`, visible: false },
|
|
|
|
|
|
{ key: 9, label: `删除标志`, visible: false },
|
|
|
|
|
|
{ key: 10, label: `创建部门`, visible: false },
|
|
|
|
|
|
{ key: 11, label: `创建人`, visible: false },
|
|
|
|
|
|
{ key: 12, label: `调拨时间`, visible: true },
|
|
|
|
|
|
{ key: 13, label: `更新人`, visible: false },
|
|
|
|
|
|
{ key: 14, label: `更新时间`, visible: false }
|
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
const initFormData: MaterialTransferRecordForm = {
|
|
|
|
|
|
materielId: undefined,
|
|
|
|
|
|
batchNumber: undefined,
|
|
|
|
|
|
transferQty: undefined,
|
|
|
|
|
|
unitName: undefined,
|
|
|
|
|
|
transferOutStoreId: undefined,
|
|
|
|
|
|
transferInStoreId: undefined,
|
|
|
|
|
|
inventoryDetailsId: undefined
|
|
|
|
|
|
};
|
|
|
|
|
|
const data = reactive<PageData<MaterialTransferRecordForm, MaterialTransferRecordQuery>>({
|
|
|
|
|
|
form: { ...initFormData },
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
productCode: undefined,
|
|
|
|
|
|
productName: undefined,
|
|
|
|
|
|
batchNumber: undefined,
|
|
|
|
|
|
transferOutStoreId: undefined,
|
|
|
|
|
|
transferInStoreId: undefined,
|
|
|
|
|
|
orderByColumn: 'createTime',
|
|
|
|
|
|
isAsc: 'desc',
|
|
|
|
|
|
params: {}
|
|
|
|
|
|
},
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
transferOutStoreId: [{ required: true, message: '调出仓库不能为空', trigger: 'blur' }],
|
|
|
|
|
|
transferInStoreId: [{ required: true, message: '调入仓库不能为空', trigger: 'blur' }]
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
|
|
|
|
/** 查询物料调拨列表 */
|
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
|
loading.value = true;
|
|
|
|
|
|
const res = await listMaterialTransferRecord(queryParams.value);
|
|
|
|
|
|
materialTransferRecordList.value = res.rows;
|
|
|
|
|
|
total.value = res.total;
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 取消按钮 */
|
|
|
|
|
|
const cancel = () => {
|
|
|
|
|
|
reset();
|
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
|
const reset = () => {
|
|
|
|
|
|
form.value = { ...initFormData };
|
|
|
|
|
|
materialTransferRecordFormRef.value?.resetFields();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
const resetQuery = () => {
|
|
|
|
|
|
queryFormRef.value?.resetFields();
|
|
|
|
|
|
handleQuery();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 多选框选中数据 */
|
|
|
|
|
|
const handleSelectionChange = (selection: MaterialTransferRecordVO[]) => {
|
|
|
|
|
|
ids.value = selection.map((item) => item.transferRecordId);
|
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
|
reset();
|
|
|
|
|
|
dialog.visible = true;
|
|
|
|
|
|
dialog.title = '添加物料调拨';
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
const handleUpdate = async (row?: MaterialTransferRecordVO) => {
|
|
|
|
|
|
reset();
|
|
|
|
|
|
const _transferRecordId = row?.transferRecordId || ids.value[0];
|
|
|
|
|
|
const res = await getMaterialTransferRecord(_transferRecordId);
|
|
|
|
|
|
Object.assign(form.value, res.data);
|
|
|
|
|
|
dialog.visible = true;
|
|
|
|
|
|
dialog.title = '修改物料调拨';
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
|
const submitForm = () => {
|
|
|
|
|
|
materialTransferRecordFormRef.value?.validate(async (valid: boolean) => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
buttonLoading.value = true;
|
|
|
|
|
|
if (form.value.transferRecordId) {
|
|
|
|
|
|
await updateMaterialTransferRecord(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const transferAdd: MaterialTransferRecordForm[] = selectInventorys.value.map((item) => ({
|
|
|
|
|
|
materielId: item.materielId,
|
|
|
|
|
|
batchNumber: item.batchNumber,
|
|
|
|
|
|
transferQty: item.transferQty,
|
|
|
|
|
|
unitName: item.unitName,
|
|
|
|
|
|
transferOutStoreId: form.value.transferOutStoreId,
|
|
|
|
|
|
transferInStoreId: form.value.transferInStoreId,
|
|
|
|
|
|
inventoryDetailsId: item.inventoryDetailsId
|
|
|
|
|
|
}));
|
|
|
|
|
|
await addMaterialTransferRecord(transferAdd).finally(() => (buttonLoading.value = false));
|
|
|
|
|
|
}
|
|
|
|
|
|
proxy?.$modal.msgSuccess('操作成功');
|
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
|
await getList();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
|
const handleDelete = async (row?: MaterialTransferRecordVO) => {
|
|
|
|
|
|
const _transferRecordIds = row?.transferRecordId || ids.value;
|
|
|
|
|
|
await proxy?.$modal.confirm('是否确认删除物料调拨编号为"' + _transferRecordIds + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
|
|
await delMaterialTransferRecord(_transferRecordIds);
|
|
|
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
|
|
await getList();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
const handleExport = () => {
|
|
|
|
|
|
proxy?.download(
|
|
|
|
|
|
'wms/materialTransferRecord/export',
|
|
|
|
|
|
{
|
|
|
|
|
|
...queryParams.value
|
|
|
|
|
|
},
|
|
|
|
|
|
`materialTransferRecord_${new Date().getTime()}.xlsx`
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
getList();
|
|
|
|
|
|
getWarehouseInfoList();
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|