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' method: 'post'
}); });
} }
// 提交修改工单接口
export function subChangeWorkOrderM(data){
return request({
url:'/plan/pro/workorder/subChangeWorkOrderM',
method:'post',
data:data
})
}

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

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

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

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

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

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

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

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

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

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

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

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

@ -161,6 +161,18 @@
>工单详情 >工单详情
</el-button> </el-button>
</el-col> </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> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
@ -538,6 +550,75 @@
<el-button @click="subMaterielBP" class="my-materiel-btn" type="primary">确定</el-button> <el-button @click="subMaterielBP" class="my-materiel-btn" type="primary">确定</el-button>
</el-dialog> </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> </div>
</template> </template>
@ -549,7 +630,7 @@ import {
downWorkorder, downWorkorder,
getOrderAndWork,getProSortNo, getOrderAndWork,getProSortNo,
getWorkBatchList, getWorkBatchList,
subChangeWorkOrder, subChangeWorkOrder,subChangeWorkOrderM,
checkWorkOrder checkWorkOrder
} from '@/api/plan/workorder' } from '@/api/plan/workorder'
import moment from 'moment'; import moment from 'moment';
@ -625,6 +706,9 @@ export default {
materialCode:null, materialCode:null,
materialName:null materialName:null
}, },
splitFormM: {
prodLineCodeArray: []
},
// //
loading: true, loading: true,
// //
@ -646,6 +730,7 @@ export default {
title: "", title: "",
// //
open: false, open: false,
openM:false,
// //
queryParams: { queryParams: {
productDateArray: [new Date(), new Date()], productDateArray: [new Date(), new Date()],
@ -703,6 +788,7 @@ export default {
/**********************************/ /**********************************/
eRouteProps: {multiple: true}, eRouteProps: {multiple: true},
eRouteOptions: [], eRouteOptions: [],
eRouteOptionsM: [],
// //
workShift: [], workShift: [],
// //
@ -1443,10 +1529,72 @@ export default {
this.title = "生产工单详情"; this.title = "生产工单详情";
this.showDetail = false; 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() { cancel() {
this.open = false; this.open = false;
this.openM = false;
this.showDetail = true; this.showDetail = true;
this.reset(); this.reset();
}, },

Loading…
Cancel
Save