|
|
|
@ -1,7 +1,14 @@
|
|
|
|
|
<template>
|
|
|
|
|
<!-- 组线、批准人隐藏、出库单号? -->
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
|
|
|
|
<el-form
|
|
|
|
|
:model="queryParams"
|
|
|
|
|
ref="queryForm"
|
|
|
|
|
size="small"
|
|
|
|
|
:inline="true"
|
|
|
|
|
v-show="showSearch"
|
|
|
|
|
label-width="98px"
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-form-item label="出库单号" prop="applyCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.applyCode"
|
|
|
|
@ -84,12 +91,21 @@
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
:picker-options="pickerOptions">
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleQuery"
|
|
|
|
|
>搜索</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
|
|
>重置</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
@ -102,11 +118,11 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:add']"
|
|
|
|
|
>新增</el-button>
|
|
|
|
|
>新增</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
v-if="false"
|
|
|
|
|
type="success"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@ -114,7 +130,8 @@
|
|
|
|
|
:disabled="single"
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
>修改</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
@ -125,7 +142,8 @@
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:remove']"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
@ -135,47 +153,100 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
>导出</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
<right-toolbar
|
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
@queryTable="getList"
|
|
|
|
|
></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="sparePartsApplicationRecordList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="sparePartsApplicationRecordList"
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<!-- 序号 -->
|
|
|
|
|
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"/>
|
|
|
|
|
<el-table-column label="出库单号" align="center" prop="applyCode" width="200"/>
|
|
|
|
|
<el-table-column label="备品备件编码" align="center" prop="spareCode" width="200"/>
|
|
|
|
|
<el-table-column label="备品备件名称" align="center" prop="spareName" width="200"/>
|
|
|
|
|
<el-table-column label="规格型号" align="center" prop="spareModel" width="150"/>
|
|
|
|
|
<el-table-column label="使用设备" align="center" prop="spareUseEquipment" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="index"
|
|
|
|
|
width="90"
|
|
|
|
|
align="center"
|
|
|
|
|
:index="indexMethod"
|
|
|
|
|
label="序号"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="备品备件编码"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="spareCode"
|
|
|
|
|
width="120"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="备品备件名称"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="spareName"
|
|
|
|
|
width="120"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="使用设备"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="spareUseEquipment"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="出库单号" align="center" prop="applyCode" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="规格型号"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="spareModel"
|
|
|
|
|
width="150"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="领用数量" align="center" prop="spareQuantity" />
|
|
|
|
|
<!-- <el-table-column label="使用组线" align="center" prop="spareGroupLine" /> -->
|
|
|
|
|
<el-table-column label="领用时间" align="center" prop="applyTime" width="180">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="领用时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="applyTime"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.applyTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="申领人" align="center" prop="applyPeople" width="80"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="申领人"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="applyPeople"
|
|
|
|
|
width="80"
|
|
|
|
|
/>
|
|
|
|
|
<!-- <el-table-column label="批准人" align="center" prop="applyApprovePeople" width="80"/> -->
|
|
|
|
|
<el-table-column v-if="false" label="工厂号" align="center" prop="factoryCode" />
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="false"
|
|
|
|
|
label="工厂号"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="factoryCode"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="操作"
|
|
|
|
|
align="center"
|
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
v-if="false"
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
>修改</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['device:sparePartsApplicationRecord:remove']"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -195,62 +266,99 @@
|
|
|
|
|
<el-input v-model="form.applyCode" placeholder="请输入出库单号" style="width: 280px"/>
|
|
|
|
|
</el-form-item> -->
|
|
|
|
|
<el-form-item label="使用设备" prop="spareUseEquipment">
|
|
|
|
|
<el-input v-model="form.spareUseEquipment" placeholder="请输选择使用设备" style="width: 280px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.spareUseEquipment"
|
|
|
|
|
placeholder="请输选择使用设备"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
slot="append"
|
|
|
|
|
@click="handleSelectEquipment"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
></el-button>
|
|
|
|
|
</el-input>
|
|
|
|
|
<ItemSelectEquipment ref="itemSelectEquipment" @onSelected="onItemSelectedEquipment">
|
|
|
|
|
<ItemSelectEquipment
|
|
|
|
|
ref="itemSelectEquipment"
|
|
|
|
|
@onSelected="onItemSelectedEquipment"
|
|
|
|
|
>
|
|
|
|
|
</ItemSelectEquipment>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备品备件编码" prop="spareCode">
|
|
|
|
|
<el-input v-model="form.spareCode" placeholder="请选择备品备件编码" style="width: 280px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.spareCode"
|
|
|
|
|
placeholder="请选择备品备件编码"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
slot="append"
|
|
|
|
|
@click="handleSelectSparePartsLedger"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
></el-button>
|
|
|
|
|
</el-input>
|
|
|
|
|
<ItemSelectSparePartsLedger ref="itemSelectSparePartsLedger" @onSelected="onItemSelectedSparePartsLedger">
|
|
|
|
|
<ItemSelectSparePartsLedger
|
|
|
|
|
ref="itemSelectSparePartsLedger"
|
|
|
|
|
@onSelected="onItemSelectedSparePartsLedger"
|
|
|
|
|
>
|
|
|
|
|
</ItemSelectSparePartsLedger>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备品备件名称" prop="spareName">
|
|
|
|
|
<el-input v-model="form.spareName" placeholder="请选择备品备件名称" style="width: 280px"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.spareName"
|
|
|
|
|
placeholder="请选择备品备件名称"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="规格型号" prop="spareModel">
|
|
|
|
|
<el-input v-model="form.spareModel" placeholder="请选择规格型号" style="width: 280px"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.spareModel"
|
|
|
|
|
placeholder="请选择规格型号"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="库存总数量" prop="amount">
|
|
|
|
|
<el-input v-model="form.amount" style="width: 280px" disabled />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="冻结数量" prop="storageAmount">
|
|
|
|
|
<el-input v-model="form.storageAmount" style="width: 280px" disabled/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.storageAmount"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
disabled
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="库存可用数量" prop="availableQuantity">
|
|
|
|
|
<el-input v-model="form.availableQuantity" style="width: 280px" disabled/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.availableQuantity"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
disabled
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="数量" prop="spareQuantity">
|
|
|
|
|
<el-input v-model="form.spareQuantity" placeholder="请输入数量" style="width: 280px"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="关联单号" prop="workCode">
|
|
|
|
|
<el-input v-model="form.workCode" placeholder="请输入关联单号" style="width: 280px"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.spareQuantity"
|
|
|
|
|
placeholder="请输入数量"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="使用组线" prop="spareGroupLine">
|
|
|
|
|
<el-input v-model="form.spareGroupLine" placeholder="请选择使用组线" style="width: 280px"/>
|
|
|
|
|
</el-form-item> -->
|
|
|
|
|
<el-form-item label="领用时间" prop="applyTime">
|
|
|
|
|
<el-date-picker clearable
|
|
|
|
|
<el-date-picker
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.applyTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
placeholder="请选择领用时间">
|
|
|
|
|
placeholder="请选择领用时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="申领人" prop="applyPeople">
|
|
|
|
|
<el-input v-model="form.applyPeople" placeholder="请选择申领人" style="width: 280px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.applyPeople"
|
|
|
|
|
placeholder="请选择申领人"
|
|
|
|
|
style="width: 280px"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
slot="append"
|
|
|
|
|
@click="handleSelectPerson"
|
|
|
|
@ -276,14 +384,24 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listSparePartsApplicationRecord, getSparePartsApplicationRecord, delSparePartsApplicationRecord, addSparePartsApplicationRecord, updateSparePartsApplicationRecord } from "@/api/device/sparePartsApplicationRecord";
|
|
|
|
|
import {
|
|
|
|
|
listSparePartsApplicationRecord,
|
|
|
|
|
getSparePartsApplicationRecord,
|
|
|
|
|
delSparePartsApplicationRecord,
|
|
|
|
|
addSparePartsApplicationRecord,
|
|
|
|
|
updateSparePartsApplicationRecord,
|
|
|
|
|
} from "@/api/device/sparePartsApplicationRecord";
|
|
|
|
|
import ItemSelectPerson from "./selectSinglePerson.vue";
|
|
|
|
|
import ItemSelectEquipment from "./selectSingleEquipment.vue";
|
|
|
|
|
import ItemSelectSparePartsLedger from "./selectSparePartsLedger.vue";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "SparePartsApplicationRecord",
|
|
|
|
|
components: { ItemSelectPerson ,ItemSelectEquipment,ItemSelectSparePartsLedger},
|
|
|
|
|
components: {
|
|
|
|
|
ItemSelectPerson,
|
|
|
|
|
ItemSelectEquipment,
|
|
|
|
|
ItemSelectSparePartsLedger,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
@ -322,59 +440,63 @@ export default {
|
|
|
|
|
attr2: null,
|
|
|
|
|
attr3: null,
|
|
|
|
|
factoryCode: null,
|
|
|
|
|
applyTimeArray: []
|
|
|
|
|
applyTimeArray: [],
|
|
|
|
|
},
|
|
|
|
|
// 日期范围选择快捷
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [{
|
|
|
|
|
text: '最近一周',
|
|
|
|
|
shortcuts: [
|
|
|
|
|
{
|
|
|
|
|
text: "最近一周",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近一个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近一个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近三个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近三个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
spareCode: [
|
|
|
|
|
{ required: true, message: "备品备件编码不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "备品备件编码不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
spareName: [
|
|
|
|
|
{ required: true, message: "备品备件名称不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "备品备件名称不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
spareModel: [
|
|
|
|
|
{ required: true, message: "规格型号不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "规格型号不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
spareQuantity: [
|
|
|
|
|
{ required: true, message: "数量不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "数量不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
applyTime: [
|
|
|
|
|
{ required: true, message: "领用时间不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "领用时间不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
applyPeople: [
|
|
|
|
|
{ required: true, message: "申领人不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "申领人不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
@ -417,7 +539,7 @@ export default {
|
|
|
|
|
/** 查询申领记录列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listSparePartsApplicationRecord(this.queryParams).then(response => {
|
|
|
|
|
listSparePartsApplicationRecord(this.queryParams).then((response) => {
|
|
|
|
|
this.sparePartsApplicationRecordList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -450,7 +572,7 @@ export default {
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
factoryCode: null
|
|
|
|
|
factoryCode: null,
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
@ -467,9 +589,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.ids = selection.map(item => item.applyId)
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
this.ids = selection.map((item) => item.applyId);
|
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
@ -480,8 +602,8 @@ export default {
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
const applyId = row.applyId || this.ids
|
|
|
|
|
getSparePartsApplicationRecord(applyId).then(response => {
|
|
|
|
|
const applyId = row.applyId || this.ids;
|
|
|
|
|
getSparePartsApplicationRecord(applyId).then((response) => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改申领记录";
|
|
|
|
@ -489,22 +611,25 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.applyId != null) {
|
|
|
|
|
updateSparePartsApplicationRecord(this.form).then(response => {
|
|
|
|
|
updateSparePartsApplicationRecord(this.form).then((response) => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
if(this.form.amount - this.form.storageAmount < this.form.spareQuantity){
|
|
|
|
|
if (
|
|
|
|
|
this.form.amount - this.form.storageAmount <
|
|
|
|
|
this.form.spareQuantity
|
|
|
|
|
) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: "您填入的领用数量大于库存可用数量!",
|
|
|
|
|
type: "warning",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addSparePartsApplicationRecord(this.form).then(response => {
|
|
|
|
|
addSparePartsApplicationRecord(this.form).then((response) => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|