Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/views/device/sparePartsApplicationRecord/index.vue
yangwl
wws 1 year ago
commit 9a7160e015

@ -92,3 +92,12 @@ export function downWorkorder(workorderId) {
method: 'post'
});
}
// 提交修改工单接口
export function subChangeWorkOrderM(data){
return request({
url:'/plan/pro/workorder/subChangeWorkOrderM',
method:'post',
data:data
})
}

@ -1,8 +1,9 @@
<template>
<el-dialog title="人员选择"
<el-dialog
title="人员选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="800px"
center
:before-close="cancelEquipmentForm"
@ -10,7 +11,14 @@
<el-row :gutter="20">
<!--人员数据-->
<el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -30,18 +38,64 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable">
<el-table-column width="50" align="center" type="selection"></el-table-column>
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" ></el-table-column>
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column label="部门编码" align="center" prop="postCode" v-if="columns[2].visible" ></el-table-column>
<el-table-column label="部门名称" align="center" prop="postName" v-if="columns[3].visible" ></el-table-column>
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
></el-table-column>
<el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="部门编码"
align="center"
prop="postCode"
v-if="columns[2].visible"
></el-table-column>
<el-table-column
label="部门名称"
align="center"
prop="postName"
v-if="columns[3].visible"
></el-table-column>
</el-table>
<pagination
@ -62,7 +116,7 @@
<script>
import { getMaintenancePersonList } from "@/api/device/repairOrder";
import { Message } from 'element-ui'
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -88,7 +142,7 @@ export default {
pageNum: 1,
pageSize: 10,
itemName: undefined,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
},
//
@ -97,7 +151,7 @@ export default {
{ key: 1, label: `人员名称`, visible: true },
{ key: 2, label: `部门编码`, visible: true },
{ key: 3, label: `部门名称`, visible: true },
]
],
};
},
created() {
@ -128,17 +182,16 @@ export default {
/** 查询设备编码列表*/
getList() {
this.loading = true;
getMaintenancePersonList(this.queryParams).then(response => {
getMaintenancePersonList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
//
handleNodeClick(data) {
console.log('id',data.id);
console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode);
this.handleQuery();
@ -159,7 +212,7 @@ export default {
//
handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.nickName);
this.ids = selection.map((item) => item.nickName);
this.single = selection.length !== 1;
this.multiple = !selection.length;
console.log("多选框", this.ids);
@ -172,11 +225,11 @@ export default {
this.queryParams.itemCodeGet = nickName;
}
this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows);
this.$emit("onSelected", this.selectedRows);
this.getList();
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
}
},
},
};
</script>

@ -659,7 +659,12 @@
form.orderDesc
}}</el-descriptions-item>
</el-descriptions>
<el-descriptions :column="1" border :contentStyle="CS" :label-style="LSP2">
<el-descriptions
:column="1"
border
:contentStyle="CS"
:label-style="LSP2"
>
<el-descriptions-item
label="故障图片"
:contentStyle="CS"

@ -287,7 +287,12 @@
/>
<!-- 添加委外工单对话框 -->
<el-dialog :title="title" :visible.sync="openAdd" width="500px" append-to-body>
<el-dialog
:title="title"
:visible.sync="openAdd"
width="500px"
append-to-body
>
<el-form ref="form" :model="form" :rules="rules" label-width="130px">
<el-form-item label="设备编码" prop="equipmentCode">
<el-input
@ -388,14 +393,15 @@
</el-dialog>
<!-- 修改委外工单对话框 -->
<el-dialog :title="title" :visible.sync="openUpdate" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="130px">
<el-form-item label="设备编码" prop="equipmentCode" v-if>
<el-input
v-model="form.equipmentCode"
style="width: 270px"
disabled
<el-dialog
:title="title"
:visible.sync="openUpdate"
width="500px"
append-to-body
>
<el-form ref="form" :model="form" :rules="rules" label-width="130px">
<el-form-item label="设备编码" prop="equipmentCode">
<el-input v-model="form.equipmentCode" style="width: 270px" disabled>
<el-button
slot="append"
@click="handleSelectEquipment"
@ -422,11 +428,7 @@
</el-select>
</el-form-item>
<el-form-item label="委外维修人员" prop="workPerson">
<el-input
v-model="form.workPerson"
disabled
style="width: 270px"
/>
<el-input v-model="form.workPerson" disabled style="width: 270px" />
</el-form-item>
<el-form-item label="委外单位" prop="workOutsourcingUnit">
<el-input
@ -487,7 +489,6 @@
<el-button @click="cancelUpdate"> </el-button>
</div>
</el-dialog>
</div>
</template>

@ -1,8 +1,9 @@
<template>
<el-dialog title="设备选择"
<el-dialog
title="设备选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="1100px"
center
:before-close="cancelEquipmentForm"
@ -29,7 +30,14 @@
<!--设备数据-->
<el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable">
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> -->
</el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" >
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" >
<el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table>
<pagination
@ -85,8 +131,11 @@
</template>
<script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport";
import { Message } from 'element-ui'
import {
getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -119,7 +168,7 @@ export default {
itemName: undefined,
equipmentTypeCode: undefined,
itemTypeId: 0,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
equipmentCode: null,
equipmentName: null,
@ -129,7 +178,7 @@ export default {
{ key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true },
]
],
};
},
created() {
@ -149,7 +198,7 @@ export default {
},
handleEquipmentSelectionChange(val) {
this.itemList = val
this.itemList = val;
},
//
@ -162,17 +211,16 @@ export default {
this.loading = true;
this.queryParams.equipmentCode = this.queryParams.itemCode;
this.queryParams.equipmentName = this.queryParams.itemName;
getEquipmentList(this.queryParams).then(response => {
getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
/** 查询分类下拉树结构 */
getEquipmentType() {
getEquipmentTypeList().then(response => {
getEquipmentTypeList().then((response) => {
console.log(response.rows);
this.treeData1 = response.rows;
console.log(this.treeData1);
@ -188,7 +236,7 @@ export default {
//
handleNodeClick(data) {
console.log('id',data.id);
console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode);
this.handleQuery();
@ -207,10 +255,9 @@ export default {
this.handleQuery();
},
//
handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode);
this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length !== 1;
this.multiple = !selection.length;
console.log("多选框", this.ids);
@ -225,13 +272,14 @@ export default {
if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode;
} else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode;
this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
}
this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows);
this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
@ -240,10 +288,9 @@ export default {
cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
}
}
},
},
};
</script>

@ -1,8 +1,9 @@
<template>
<el-dialog title="设备选择"
<el-dialog
title="设备选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="1100px"
center
:before-close="cancelEquipmentForm"
@ -29,7 +30,14 @@
<!--设备数据-->
<el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable">
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> -->
</el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" >
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" >
<el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table>
<pagination
@ -85,9 +131,12 @@
</template>
<script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport";
import {
getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { treeselect } from "@/api/wms/equipment";
import { Message } from 'element-ui'
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -120,7 +169,7 @@ export default {
itemName: undefined,
equipmentTypeCode: undefined,
itemTypeId: 0,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
equipmentCode: null,
equipmentName: null,
@ -130,7 +179,7 @@ export default {
{ key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true },
]
],
};
},
created() {
@ -150,7 +199,7 @@ export default {
},
handleEquipmentSelectionChange(val) {
this.itemList = val
this.itemList = val;
},
//
@ -163,17 +212,16 @@ export default {
this.loading = true;
this.queryParams.equipmentCode = this.queryParams.itemCode;
this.queryParams.equipmentName = this.queryParams.itemName;
getEquipmentList(this.queryParams).then(response => {
getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
/** 查询分类下拉树结构 */
getEquipmentType() {
getEquipmentTypeList().then(response => {
getEquipmentTypeList().then((response) => {
console.log(response.rows);
this.treeData1 = response.rows;
console.log(this.treeData1);
@ -189,7 +237,7 @@ export default {
//
handleNodeClick(data) {
console.log('id',data.id);
console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode);
this.handleQuery();
@ -208,10 +256,9 @@ export default {
this.handleQuery();
},
//
handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode);
this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length !== 1;
this.multiple = !selection.length;
console.log("多选框", this.ids);
@ -226,13 +273,14 @@ export default {
if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode;
} else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode;
this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
}
this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows);
this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
@ -241,10 +289,9 @@ export default {
cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
}
}
},
},
};
</script>

@ -1,8 +1,9 @@
<template>
<el-dialog title="人员选择"
<el-dialog
title="人员选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="800px"
center
:before-close="cancel"
@ -10,7 +11,14 @@
<el-row :gutter="20">
<!--人员数据-->
<el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -30,17 +38,53 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleSelectionChange" ref="multipleTable">
<el-table-column width="50" align="center" type="selection"></el-table-column>
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleSelectionChange"
ref="multipleTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" >
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
>
</el-table-column>
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table>
<pagination
@ -53,7 +97,9 @@
</el-col>
</el-row>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="multiple"> </el-button>
<el-button type="primary" @click="submitForm" :disabled="multiple"
> </el-button
>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
@ -61,7 +107,7 @@
<script>
import { getRepairPersonList } from "@/api/device/faultReport";
import { Message } from 'element-ui'
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -87,7 +133,7 @@ export default {
pageNum: 1,
pageSize: 10,
itemName: undefined,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
nickName: null,
userName: null,
@ -96,7 +142,7 @@ export default {
columns: [
{ key: 0, label: `人员编码`, visible: true },
{ key: 1, label: `人员名称`, visible: true },
]
],
};
},
created() {
@ -129,12 +175,11 @@ export default {
this.loading = true;
this.queryParams.userName = this.queryParams.itemCode;
this.queryParams.nickName = this.queryParams.itemName;
getRepairPersonList(this.queryParams).then(response => {
getRepairPersonList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
/** 搜索按钮操作 */
@ -152,8 +197,8 @@ export default {
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.userId);
this.userCodes = selection.map(item => item.userName);
this.ids = selection.map((item) => item.userId);
this.userCodes = selection.map((item) => item.userName);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
@ -163,11 +208,11 @@ export default {
Message.warning("只能选择一个维修人,请勿选择多个!");
} else {
console.log(this.$refs.multipleTable.selection);
this.$emit('onSelected', this.$refs.multipleTable.selection);
this.$emit("onSelected", this.$refs.multipleTable.selection);
this.showFlag = false;
this.getList();
}
}
}
},
},
};
</script>

@ -9,8 +9,12 @@
size="mini"
@click="handleSelectSparePartsLedger"
v-hasPermi="['device:sparePartsApplicationRecord:add']"
>新增</el-button>
<ItemSelectSparePartsLedger ref="itemSelectSparePartsLedger" @onSelected="selectSparePartsLedger"></ItemSelectSparePartsLedger>
>新增</el-button
>
<ItemSelectSparePartsLedger
ref="itemSelectSparePartsLedger"
@onSelected="selectSparePartsLedger"
></ItemSelectSparePartsLedger>
</el-col>
<el-col :span="1.5">
<el-button
@ -21,28 +25,83 @@
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['device:sparePartsApplicationRecord:remove']"
>删除</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="序号" fixed/>
<el-table-column label="维修单号" align="center" prop="workCode" width="200" fixed/>
<el-table-column label="使用设备" align="center" prop="spareUseEquipment" />
<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="spareModel" width="150"/>
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
fixed
/>
<el-table-column
label="维修单号"
align="center"
prop="workCode"
width="200"
fixed
/>
<el-table-column
label="使用设备"
align="center"
prop="spareUseEquipment"
/>
<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="spareModel"
width="150"
/>
<el-table-column label="数量" align="center" prop="spareQuantity" />
<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="applyApprovePeople" width="80"/>
<el-table-column
label="申领人"
align="center"
prop="applyPeople"
width="80"
/>
<el-table-column
label="批准人"
align="center"
prop="applyApprovePeople"
width="80"
/>
</el-table>
<pagination
@ -54,7 +113,12 @@
/>
<!-- 添加或修改申领记录对话框 -->
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
<el-dialog
:title="title"
:visible.sync="open"
width="1000px"
append-to-body
>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
</el-form>
<div slot="footer" class="dialog-footer">
@ -66,7 +130,14 @@
</template>
<script>
import { listSparePartsApplicationRecord, getSparePartsApplicationRecord, delSparePartsApplicationRecord, addSparePartsApplicationRecord, updateSparePartsApplicationRecord , listRepairSparePartsRecord } from "@/api/device/sparePartsApplicationRecord";
import {
listSparePartsApplicationRecord,
getSparePartsApplicationRecord,
delSparePartsApplicationRecord,
addSparePartsApplicationRecord,
updateSparePartsApplicationRecord,
listRepairSparePartsRecord,
} from "@/api/device/sparePartsApplicationRecord";
import ItemSelectSparePartsLedger from "./selectSparePartsLedger.vue";
export default {
@ -112,14 +183,13 @@ export default {
attr1: null,
attr2: null,
attr3: null,
factoryCode: null
factoryCode: null,
},
//
form: {},
//
rules: {
},
componentKey:0
rules: {},
componentKey: 0,
};
},
props: {
@ -143,7 +213,7 @@ export default {
/** 查询申领记录列表 */
getList() {
this.loading = true;
listRepairSparePartsRecord(this.queryParams).then(response => {
listRepairSparePartsRecord(this.queryParams).then((response) => {
this.sparePartsApplicationRecordList = response.rows;
this.total = response.total;
this.loading = false;
@ -180,7 +250,7 @@ export default {
updateBy: null,
updateTime: null,
factoryCode: null,
spareApplyLists : []
spareApplyLists: [],
};
this.resetForm("form");
},
@ -196,9 +266,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() {
@ -209,8 +279,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 = "修改申领记录";
@ -218,16 +288,16 @@ 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 {
addSparePartsApplicationRecord(this.form).then(response => {
addSparePartsApplicationRecord(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
@ -241,7 +311,7 @@ export default {
console.log("接收参数", obj);
//使
var spareApplyLists = [];
obj.forEach(item => {
obj.forEach((item) => {
var spareApplyList = {};
spareApplyList.spareCode = item.materialCode;
spareApplyList.spareName = item.materialDesc;
@ -254,7 +324,7 @@ export default {
spareApplyLists.push(spareApplyList);
});
this.form.spareApplyLists = spareApplyLists;
addSparePartsApplicationRecord(this.form).then(response => {
addSparePartsApplicationRecord(this.form).then((response) => {
this.open = false;
this.getList();
});
@ -262,19 +332,27 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const applyIds = row.applyId || this.ids;
this.$modal.confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?').then(function() {
this.$modal
.confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?')
.then(function () {
return delSparePartsApplicationRecord(applyIds);
}).then(() => {
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('device/sparePartsApplicationRecord/export', {
...this.queryParams
}, `sparePartsApplicationRecord_${new Date().getTime()}.xlsx`)
}
}
this.download(
"device/sparePartsApplicationRecord/export",
{
...this.queryParams,
},
`sparePartsApplicationRecord_${new Date().getTime()}.xlsx`
);
},
},
};
</script>

@ -1,13 +1,21 @@
<template>
<el-dialog title="备品备件选择"
<el-dialog
title="备品备件选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="1100px"
center
:before-close="cancel"
>
<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="materialCode">
<el-input
v-model="queryParams.materialCode"
@ -18,38 +26,98 @@
/>
</el-form-item>
<el-form-item label="备件类型" prop="spareType">
<el-select v-model="queryParams.spareType" placeholder="请选择备件类型" @keyup.enter.native="handleQuery" @change="$forceUpdate()" clearable style="width:150px">
<el-option v-for="item in options" :key="item.spareType" :label="item.label" :value="item.spareType"></el-option>
<el-select
v-model="queryParams.spareType"
placeholder="请选择备件类型"
@keyup.enter.native="handleQuery"
@change="$forceUpdate()"
clearable
style="width: 150px"
>
<el-option
v-for="item in options"
:key="item.spareType"
:label="item.label"
:value="item.spareType"
></el-option>
</el-select>
</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-row :gutter="10" class="mb8">
<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="sparePartsLedgerList" @selection-change="handleSelectionChange" ref="multipleTable" >
<el-table
v-loading="loading"
:data="sparePartsLedgerList"
@selection-change="handleSelectionChange"
ref="multipleTable"
>
<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="materialCode" width="120"/>
<el-table-column label="备品备件描述" align="center" prop="materialDesc" width="120"/>
<el-table-column label="备品备件类型" align="center" prop="spareType" width="120"/>
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
/>
<el-table-column
label="备品备件号"
align="center"
prop="materialCode"
width="120"
/>
<el-table-column
label="备品备件描述"
align="center"
prop="materialDesc"
width="120"
/>
<el-table-column
label="备品备件类型"
align="center"
prop="spareType"
width="120"
/>
<el-table-column label="规格型号" align="center" prop="spareMode" />
<el-table-column label="库存总数量" align="center" prop="amount" />
<el-table-column label="库存冻结数量" align="center" prop="storageAmount" />
<el-table-column label="库存可用数量" align="center" prop="availableQuantity" >
<el-table-column
label="库存冻结数量"
align="center"
prop="storageAmount"
/>
<el-table-column
label="库存可用数量"
align="center"
prop="availableQuantity"
>
<template slot-scope="scope">
<span>{{ scope.row.amount - scope.row.storageAmount }}</span>
</template>
</el-table-column>
<el-table-column label="领用数量" align="center" prop="spareQuantity">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.spareQuantity" @change="handleEdit(scope.$index,scope.row)"></el-input>
<el-input
size="small"
v-model="scope.row.spareQuantity"
@change="handleEdit(scope.$index, scope.row)"
></el-input>
</template>
</el-table-column>
</el-table>
@ -63,14 +131,22 @@
/>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="multiple"> </el-button>
<el-button type="primary" @click="submitForm" :disabled="multiple"
> </el-button
>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</template>
<script>
import { listSparePartsLedger, getSparePartsLedger, delSparePartsLedger, addSparePartsLedger, updateSparePartsLedger } from "@/api/device/sparePartsLedger";
import {
listSparePartsLedger,
getSparePartsLedger,
delSparePartsLedger,
addSparePartsLedger,
updateSparePartsLedger,
} from "@/api/device/sparePartsLedger";
import { Message } from "element-ui";
export default {
@ -143,23 +219,26 @@ export default {
spareConversionUnit: null,
spareConversionRatio: null,
spareInventoryFloor: null,
spareInventoryUpper: null
spareInventoryUpper: null,
},
options: [{
options: [
{
spareType: "专用",
label: '专用'
}, {
label: "专用",
},
{
spareType: "通用",
label: '通用'
}],
label: "通用",
},
],
//
form: {},
//
rules: {
storageId: [
{ required: true, message: "唯一序列不能为空", trigger: "blur" }
{ required: true, message: "唯一序列不能为空", trigger: "blur" },
],
}
},
};
},
created() {
@ -167,7 +246,7 @@ export default {
},
methods: {
handleEdit(index, row) {
console.log('row:',index, row);
console.log("row:", index, row);
},
//
indexMethod(index) {
@ -176,7 +255,7 @@ export default {
/** 查询备品备件台账管理列表 */
getList() {
this.loading = true;
listSparePartsLedger(this.queryParams).then(response => {
listSparePartsLedger(this.queryParams).then((response) => {
this.sparePartsLedgerList = response.rows;
this.total = response.total;
this.loading = false;
@ -235,7 +314,7 @@ export default {
spareConversionUnit: null,
spareConversionRatio: null,
spareInventoryFloor: null,
spareInventoryUpper: null
spareInventoryUpper: null,
};
this.resetForm("form");
},
@ -251,25 +330,29 @@ export default {
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.storageId);
this.codes = selection.map(item => item.materialCode);
this.single = selection.length!==1
this.multiple = !selection.length
this.ids = selection.map((item) => item.storageId);
this.codes = selection.map((item) => item.materialCode);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 提交按钮 */
submitForm() {
console.log('data:',this.sparePartsLedgerList);
console.log("data:", this.sparePartsLedgerList);
console.log("选择的数据", this.$refs.multipleTable.selection);
this.$refs.multipleTable.selection.forEach(item => {
if(item.spareQuantity >(item.amount - item.storageAmount)){
Message.warning('备件编码"' + item.materialCode + '"的申领数量大于可用数量,请重新填写!');
this.$refs.multipleTable.selection.forEach((item) => {
if (item.spareQuantity > item.amount - item.storageAmount) {
Message.warning(
'备件编码"' +
item.materialCode +
'"的申领数量大于可用数量,请重新填写!'
);
this.$refs.multipleTable.clearSelection();
}
});
this.$emit('onSelected',this.$refs.multipleTable.selection);
this.$emit("onSelected", this.$refs.multipleTable.selection);
this.showFlag = false;
this.getList();
},
}
},
};
</script>

@ -203,11 +203,9 @@
fixed
>
<template slot-scope="scope">
<el-button
type="text"
@click="handleView(scope.row)"
>{{ scope.row.workCode }}</el-button
>
<el-button type="text" @click="handleView(scope.row)">{{
scope.row.workCode
}}</el-button>
</template>
</el-table-column>
<el-table-column

@ -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();

@ -1,8 +1,9 @@
<template>
<el-dialog title="设备选择"
<el-dialog
title="设备选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="1100px"
center
:before-close="cancelEquipmentForm"
@ -29,7 +30,14 @@
<!--设备数据-->
<el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable">
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> -->
</el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" >
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" >
<el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table>
<pagination
@ -85,9 +131,12 @@
</template>
<script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport";
import {
getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { treeselect } from "@/api/wms/equipment";
import { Message } from 'element-ui'
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -120,7 +169,7 @@ export default {
itemName: undefined,
equipmentTypeCode: undefined,
itemTypeId: 0,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
},
//
@ -128,7 +177,7 @@ export default {
{ key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true },
]
],
};
},
created() {
@ -148,7 +197,7 @@ export default {
},
handleEquipmentSelectionChange(val) {
this.itemList = val
this.itemList = val;
},
//
@ -159,17 +208,16 @@ export default {
/** 查询设备编码列表*/
getList() {
this.loading = true;
getEquipmentList(this.queryParams).then(response => {
getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
/** 查询分类下拉树结构 */
getEquipmentType() {
getEquipmentTypeList().then(response => {
getEquipmentTypeList().then((response) => {
console.log(response.rows);
this.treeData1 = response.rows;
console.log(this.treeData1);
@ -185,7 +233,7 @@ export default {
//
handleNodeClick(data) {
console.log('id',data.id);
console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode);
this.handleQuery();
@ -204,10 +252,9 @@ export default {
this.handleQuery();
},
//
handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode);
this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length !== 1;
this.multiple = !selection.length;
console.log("多选框", this.ids);
@ -222,13 +269,14 @@ export default {
if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode;
} else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode;
this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
}
this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows);
this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
@ -237,10 +285,9 @@ export default {
cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
}
}
},
},
};
</script>

@ -1,8 +1,9 @@
<template>
<el-dialog title="人员选择"
<el-dialog
title="人员选择"
v-if="showFlag"
:visible.sync="showFlag"
:modal= false
:modal="false"
width="800px"
center
:before-close="cancelEquipmentForm"
@ -10,7 +11,14 @@
<el-row :gutter="20">
<!--人员数据-->
<el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode">
<el-input
v-model="queryParams.itemCode"
@ -30,18 +38,64 @@
/>
</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>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable">
<el-table-column width="50" align="center" type="selection"></el-table-column>
<el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" ></el-table-column>
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
<el-table-column label="部门编码" align="center" prop="postCode" v-if="columns[2].visible" ></el-table-column>
<el-table-column label="部门名称" align="center" prop="postName" v-if="columns[3].visible" ></el-table-column>
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
></el-table-column>
<el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="部门编码"
align="center"
prop="postCode"
v-if="columns[2].visible"
></el-table-column>
<el-table-column
label="部门名称"
align="center"
prop="postName"
v-if="columns[3].visible"
></el-table-column>
</el-table>
<pagination
@ -62,7 +116,7 @@
<script>
import { getMaintenancePersonList } from "@/api/device/repairOrder";
import { Message } from 'element-ui'
import { Message } from "element-ui";
export default {
name: "MdItemSingle",
@ -88,7 +142,7 @@ export default {
pageNum: 1,
pageSize: 10,
itemName: undefined,
itemCodeGet: '',
itemCodeGet: "",
itemCode: undefined,
},
//
@ -97,7 +151,7 @@ export default {
{ key: 1, label: `人员名称`, visible: true },
{ key: 2, label: `部门编码`, visible: true },
{ key: 3, label: `部门名称`, visible: true },
]
],
};
},
created() {
@ -128,17 +182,16 @@ export default {
/** 查询设备编码列表*/
getList() {
this.loading = true;
getMaintenancePersonList(this.queryParams).then(response => {
getMaintenancePersonList(this.queryParams).then((response) => {
this.itemList = response.rows;
this.total = response.total;
this.loading = false;
}
);
});
},
//
handleNodeClick(data) {
console.log('id',data.id);
console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode);
this.handleQuery();
@ -159,7 +212,7 @@ export default {
//
handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.nickName);
this.ids = selection.map((item) => item.nickName);
this.single = selection.length !== 1;
this.multiple = !selection.length;
console.log("多选框", this.ids);
@ -175,12 +228,12 @@ export default {
this.queryParams.itemCodeGet = nickName;
}
this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows);
this.$emit("onSelected", this.selectedRows);
this.getList();
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
}
}
},
},
};
</script>

@ -1,6 +1,13 @@
<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="materialCode">
<el-input
v-model="queryParams.materialCode"
@ -20,13 +27,33 @@
/>
</el-form-item>
<el-form-item label="备件类型" prop="spareType">
<el-select v-model="queryParams.spareType" placeholder="请选择备件类型" @keyup.enter.native="handleQuery" @change="$forceUpdate()" clearable style="width:150px">
<el-option v-for="item in options" :key="item.spareType" :label="item.label" :value="item.spareType"></el-option>
<el-select
v-model="queryParams.spareType"
placeholder="请选择备件类型"
@keyup.enter.native="handleQuery"
@change="$forceUpdate()"
clearable
style="width: 150px"
>
<el-option
v-for="item in options"
:key="item.spareType"
:label="item.label"
:value="item.spareType"
></el-option>
</el-select>
</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>
@ -71,38 +98,115 @@
size="mini"
@click="handleExport"
v-hasPermi="['device:sparePartsLedger: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="sparePartsLedgerList" @selection-change="handleSelectionChange">
<el-table
v-loading="loading"
:data="sparePartsLedgerList"
@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="materialCode" width="120"/>
<el-table-column label="备品备件描述" align="center" prop="materialDesc" width="120"/>
<el-table-column label="备品备件类型" align="center" prop="spareType" width="120"/>
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
/>
<el-table-column
label="备品备件号"
align="center"
prop="materialCode"
width="120"
/>
<el-table-column
label="备品备件描述"
align="center"
prop="materialDesc"
width="120"
/>
<el-table-column
label="备品备件类型"
align="center"
prop="spareType"
width="120"
/>
<el-table-column label="规格型号" align="center" prop="spareMode" />
<el-table-column label="生产厂商" align="center" prop="spareManufacturer" />
<el-table-column
label="生产厂商"
align="center"
prop="spareManufacturer"
/>
<el-table-column label="供应商" align="center" prop="spareSupplier" />
<el-table-column label="循环周期" align="center" prop="spareReplacementCycle" />
<el-table-column label="计量单位" align="center" prop="spareMeasurementUnit" />
<el-table-column label="换算单位" align="center" prop="spareConversionUnit" />
<el-table-column label="换算比例" align="center" prop="spareConversionRatio" />
<el-table-column label="库存上限" align="center" prop="spareInventoryFloor" />
<el-table-column label="库存下限" align="center" prop="spareInventoryUpper" />
<el-table-column v-if="false" label="工厂号" align="center" prop="factoryCode" />
<el-table-column
label="循环周期"
align="center"
prop="spareReplacementCycle"
/>
<el-table-column
label="计量单位"
align="center"
prop="spareMeasurementUnit"
/>
<el-table-column
label="换算单位"
align="center"
prop="spareConversionUnit"
/>
<el-table-column
label="换算比例"
align="center"
prop="spareConversionRatio"
/>
<el-table-column
label="库存上限"
align="center"
prop="spareInventoryFloor"
/>
<el-table-column
label="库存下限"
align="center"
prop="spareInventoryUpper"
/>
<el-table-column
v-if="false"
label="工厂号"
align="center"
prop="factoryCode"
/>
<el-table-column label="创建人" align="center" prop="createBy" />
<el-table-column label="创建时间" align="center" prop="gmtCreate" width="180">
<el-table-column
label="创建时间"
align="center"
prop="gmtCreate"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.gmtCreate, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.gmtCreate, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label="最后更新人" align="center" prop="lastModifiedBy" width="100"/>
<el-table-column label="最后更新时间" align="center" prop="gmtModified" width="200">
<el-table-column
label="最后更新人"
align="center"
prop="lastModifiedBy"
width="100"
/>
<el-table-column
label="最后更新时间"
align="center"
prop="gmtModified"
width="200"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.gmtModified, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.gmtModified, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
@ -295,7 +399,13 @@
</template>
<script>
import { listSparePartsLedger, getSparePartsLedger, delSparePartsLedger, addSparePartsLedger, updateSparePartsLedger } from "@/api/device/sparePartsLedger";
import {
listSparePartsLedger,
getSparePartsLedger,
delSparePartsLedger,
addSparePartsLedger,
updateSparePartsLedger,
} from "@/api/device/sparePartsLedger";
export default {
name: "SparePartsLedger",
@ -365,23 +475,26 @@ export default {
spareConversionUnit: null,
spareConversionRatio: null,
spareInventoryFloor: null,
spareInventoryUpper: null
spareInventoryUpper: null,
},
options: [{
options: [
{
spareType: "专用",
label: '专用'
}, {
label: "专用",
},
{
spareType: "通用",
label: '通用'
}],
label: "通用",
},
],
//
form: {},
//
rules: {
storageId: [
{ required: true, message: "唯一序列不能为空", trigger: "blur" }
{ required: true, message: "唯一序列不能为空", trigger: "blur" },
],
}
},
};
},
created() {
@ -395,7 +508,7 @@ export default {
/** 查询备品备件台账管理列表 */
getList() {
this.loading = true;
listSparePartsLedger(this.queryParams).then(response => {
listSparePartsLedger(this.queryParams).then((response) => {
this.sparePartsLedgerList = response.rows;
this.total = response.total;
this.loading = false;
@ -453,7 +566,7 @@ export default {
spareConversionUnit: null,
spareConversionRatio: null,
spareInventoryFloor: null,
spareInventoryUpper: null
spareInventoryUpper: null,
};
this.resetForm("form");
},
@ -469,9 +582,9 @@ export default {
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.storageId)
this.single = selection.length!==1
this.multiple = !selection.length
this.ids = selection.map((item) => item.storageId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
@ -482,8 +595,8 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const storageId = row.storageId || this.ids
getSparePartsLedger(storageId).then(response => {
const storageId = row.storageId || this.ids;
getSparePartsLedger(storageId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改备品备件台账管理";
@ -491,16 +604,16 @@ export default {
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.storageId != null) {
updateSparePartsLedger(this.form).then(response => {
updateSparePartsLedger(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addSparePartsLedger(this.form).then(response => {
addSparePartsLedger(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
@ -512,19 +625,29 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const storageIds = row.storageId || this.ids;
this.$modal.confirm('是否确认删除备品备件台账管理编号为"' + storageIds + '"的数据项?').then(function() {
this.$modal
.confirm(
'是否确认删除备品备件台账管理编号为"' + storageIds + '"的数据项?'
)
.then(function () {
return delSparePartsLedger(storageIds);
}).then(() => {
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('device/sparePartsLedger/export', {
...this.queryParams
}, `sparePartsLedger_${new Date().getTime()}.xlsx`)
}
}
this.download(
"device/sparePartsLedger/export",
{
...this.queryParams,
},
`sparePartsLedger_${new Date().getTime()}.xlsx`
);
},
},
};
</script>

@ -161,6 +161,18 @@
>工单详情
</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="editMachine"
v-hasPermi="['mes:pro:workorder:edit']"
>设备修改
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
@ -538,6 +550,75 @@
<el-button @click="subMaterielBP" class="my-materiel-btn" type="primary">确定</el-button>
</el-dialog>
<!-- 工单设备修改模块 -->
<el-dialog :title="titleM" :visible.sync="openM" width="1000px" append-to-body>
<el-table
border
v-if="refreshProTable"
v-loading="proLoading"
:data="productData"
row-key="orderCode"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
<el-table-column width="150" label="订单编号" prop="orderCode"/>
<el-table-column width="380" label="产品名称" align="center" prop="prodDesc"/>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="130" label="产品数量" align="center" prop="quantity"/>
<el-table-column label="已拆分数量" align="center" prop="quantitySplit"/>
<el-table-column label="拆分数量" align="center" prop="atrr1"/>
</el-table>
<el-form class="my-margin" :model="splitFormM" ref="dynamicForm" label-width="80px">
<el-row>
<el-col :span="7">
<el-form-item label="选择设备:">
<div style="height: 130px;overflow-y: auto;">
<el-cascader
:options="eRouteOptionsM"
:props="eRouteProps"
v-model="splitFormM.prodLineCodeArray"
clearable></el-cascader>
</div>
</el-form-item>
</el-col>
</el-row>
</el-form>
<!-- 拆分尾 -->
<el-table
border
:data="splitData"
v-if="refreshWorkerTable"
v-loading="workerLoading"
row-key="workorderCode"
style="width: 100%"
max-height="240"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
<el-table-column width="200" align="center" prop="workorderCode" label="工单号"></el-table-column>
<el-table-column width="100" align="center" prop="productDate" label="工单日期"></el-table-column>
<el-table-column width="150" align="center" label="生产线体设备">
<template slot-scope="scope">
<el-popover width="250" placement="top-start" trigger="hover" :content="scope.row.prodLineCode">
<span slot="reference" class="btn">{{ scope.row.prodLineCode }}</span>
</el-popover>
</template>
</el-table-column>
<el-table-column width="80" align="center" prop="quantitySplit" label="数量"></el-table-column>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="90" label="工艺编码" align="center" prop="routeCode"/>
<el-table-column width="90" label="班次" align="center" prop="shiftDesc" :formatter="shiftFormat"/>
<el-table-column align="center" width="230" prop="batchCodeList" label="批次号"></el-table-column>
<el-table-column align="center" width="150" prop="batchNumList" label="批次数量"></el-table-column>
</el-table>
<!-- 测试 -->
<!-- 操作按钮 -->
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFormM"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
@ -549,7 +630,7 @@ import {
downWorkorder,
getOrderAndWork,getProSortNo,
getWorkBatchList,
subChangeWorkOrder,
subChangeWorkOrder,subChangeWorkOrderM,
checkWorkOrder
} from '@/api/plan/workorder'
import moment from 'moment';
@ -625,6 +706,9 @@ export default {
materialCode:null,
materialName:null
},
splitFormM: {
prodLineCodeArray: []
},
//
loading: true,
//
@ -646,6 +730,7 @@ export default {
title: "",
//
open: false,
openM:false,
//
queryParams: {
productDateArray: [new Date(), new Date()],
@ -703,6 +788,7 @@ export default {
/**********************************/
eRouteProps: {multiple: true},
eRouteOptions: [],
eRouteOptionsM: [],
//
workShift: [],
//
@ -1443,10 +1529,72 @@ export default {
this.title = "生产工单详情";
this.showDetail = false;
},
//-----
editMachine(row) {
//
this.reset();
this.splitData = [];
this.productData = [];
this.splitFormM = {
prodLineCodeArray: [],
}
//
getProEquipment(this.selectWork.routeCode).then(response2 => {
this.eRouteOptionsM = response2.data
})
getOrderAndWork(this.selectWork).then(response => {
//
this.splitFormM.prodLineCodeArray = response.data.workOrder.prodLineCodeArray
this.splitData.push(response.data.workOrder)
this.productData.push(response.data.order)
this.refreshProTable = false // refreshProTablefalse
this.refreshWorkerTable = false // refreshProTablefalse
this.$nextTick(() => {
// 使$nextTickDOM
this.refreshProTable = true // refreshProTabletrue
this.proLoading = false // false
})
this.$nextTick(() => {
// 使$nextTickDOM
this.refreshWorkerTable = true // refreshProTabletrue
this.workerLoading = false // false
})
})
this.openM = true;
this.titleM = "生产工单设备修改";
},
//-----
// -
submitFormM() {
//
const data = {
proOrderWorkorder: this.selectWork,
prodLineCodeArray: this.splitFormM.prodLineCodeArray
}
subChangeWorkOrderM(data).then(response => {
if (response.code == 500) {
this.$modal.msgError(response.msg)
return
}
this.getList()
this.$modal.msgSuccess('提交成功')
})
//
this.splitFormM = {
prodLineCodeArray: []
}
this.openM = false
},
//
cancel() {
this.open = false;
this.openM = false;
this.showDetail = true;
this.reset();
},

Loading…
Cancel
Save