设备状态及设备历史状态前后端

master
maxw@mesnac.com
parent 18e677ee36
commit 221d528f32

@ -4,6 +4,7 @@ import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import com.hw.dms.domain.DmsRealtimeStatusHistory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@ -45,6 +46,12 @@ public class DmsRealtimeStatusController extends BaseController {
List<DmsRealtimeStatus> list = dmsRealtimeStatusService.selectDmsRealtimeStatusList(dmsRealtimeStatus);
return getDataTable(list);
}
@GetMapping("/history")
public TableDataInfo history(DmsRealtimeStatusHistory history) {
startPage();
List<DmsRealtimeStatusHistory> list = dmsRealtimeStatusService.history(history);
return getDataTable(list);
}
/**
*

@ -0,0 +1,137 @@
package com.hw.dms.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.Date;
/**
* dms_realtime_status_history
*
* @author Yinq
* @date 2024-09-02
*/
@Data
public class DmsRealtimeStatusHistory extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
*
*/
private Long historyId;
private Long statusId;
/**
*
*/
@Excel(name = "设备状态编号")
private String statusCode;
/**
*
*/
@Excel(name = "设备状态名称")
private String statusName;
/**
*
*/
@Excel(name = "设备状态值")
private String statusValue;
/**
* id
*/
@Excel(name = "所属设备id")
private Long deviceId;
/** 设备名称 */
@Excel(name = "设备名称")
private String deviceName;
private String timeCount;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date creatTime;
private Date updateTime;
private Date syncTime;
private Date realBeginTime;
private Date realEndTime;
public String getDeviceName() {
return deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
}
public Long getStatusId() {
return statusId;
}
public void setStatusCode(String statusCode) {
this.statusCode = statusCode;
}
public String getStatusCode() {
return statusCode;
}
public void setStatusName(String statusName) {
this.statusName = statusName;
}
public String getStatusName() {
return statusName;
}
public void setStatusValue(String statusValue) {
this.statusValue = statusValue;
}
public String getStatusValue() {
return statusValue;
}
public void setDeviceId(Long deviceId) {
this.deviceId = deviceId;
}
public Long getDeviceId() {
return deviceId;
}
public void setCreatTime(Date creatTime) {
this.creatTime = creatTime;
}
public Date getCreatTime() {
return creatTime;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("statusId", getStatusId())
.append("statusCode", getStatusCode())
.append("statusName", getStatusName())
.append("statusValue", getStatusValue())
.append("deviceId", getDeviceId())
.append("creatTime", getCreatTime())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -3,6 +3,8 @@ package com.hw.dms.mapper;
import java.util.List;
import com.hw.dms.domain.DmsRealtimeStatus;
import com.hw.dms.domain.DmsRealtimeStatusHistory;
import org.apache.ibatis.annotations.Param;
/**
* Mapper
@ -58,4 +60,8 @@ public interface DmsRealtimeStatusMapper {
* @return
*/
public int deleteDmsRealtimeStatusByStatusIds(Long[] statusIds);
List<DmsRealtimeStatusHistory> history(DmsRealtimeStatusHistory history);
Long historyTimeCount(DmsRealtimeStatusHistory history);
}

@ -3,6 +3,7 @@ package com.hw.dms.service;
import java.util.List;
import com.hw.dms.domain.DmsRealtimeStatus;
import com.hw.dms.domain.DmsRealtimeStatusHistory;
/**
* Service
@ -58,4 +59,6 @@ public interface IDmsRealtimeStatusService {
* @return
*/
public int deleteDmsRealtimeStatusByStatusId(Long statusId);
List<DmsRealtimeStatusHistory> history(DmsRealtimeStatusHistory history);
}

@ -3,6 +3,7 @@ package com.hw.dms.service.impl;
import java.util.List;
import com.hw.common.core.utils.DateUtils;
import com.hw.dms.domain.DmsRealtimeStatusHistory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.hw.dms.mapper.DmsRealtimeStatusMapper;
@ -76,6 +77,14 @@ public class DmsRealtimeStatusServiceImpl implements IDmsRealtimeStatusService {
return dmsRealtimeStatusMapper.deleteDmsRealtimeStatusByStatusIds(statusIds);
}
@Override
public List<DmsRealtimeStatusHistory> history(DmsRealtimeStatusHistory history) {
List<DmsRealtimeStatusHistory> history1 = dmsRealtimeStatusMapper.history(history);
Long count = dmsRealtimeStatusMapper.historyTimeCount(history);
history1.get(0).setTimeCount(count+"min");
return history1;
}
/**
*
*
@ -86,4 +95,6 @@ public class DmsRealtimeStatusServiceImpl implements IDmsRealtimeStatusService {
public int deleteDmsRealtimeStatusByStatusId(Long statusId) {
return dmsRealtimeStatusMapper.deleteDmsRealtimeStatusByStatusId(statusId);
}
}

@ -44,6 +44,33 @@
<include refid="selectDmsRealtimeStatusVo"/>
where drs.status_id = #{statusId}
</select>
<select id="history" resultType="com.hw.dms.domain.DmsRealtimeStatusHistory"
parameterType="java.lang.Long">
select
a.*,
b.device_name
from
dms_realtime_status_history a
left join dms_base_device_ledger b on
a.device_id = b.device_id
<where>
<if test="realBeginTime != null">and a.sync_time > #{realBeginTime}</if>
<if test="statusId != null">and a.status_id = #{statusId}</if>
<if test="realEndTime != null ">and a.#{realEndTime} > sync_time</if>
</where>
</select>
<select id="historyTimeCount" resultType="java.lang.Long"
parameterType="com.hw.dms.domain.DmsRealtimeStatusHistory">
select
count(1) from
dms_realtime_status_history
<where>
status_value = 'True'
<if test="realBeginTime != null">and sync_time > #{realBeginTime}</if>
<if test="statusId != null">and status_id = #{statusId}</if>
<if test="realEndTime != null ">and #{realEndTime} > sync_time</if>
</where>
</select>
<insert id="insertDmsRealtimeStatus" parameterType="DmsRealtimeStatus" useGeneratedKeys="true"
keyProperty="statusId">

@ -16,6 +16,13 @@ export function getActivity(instanceActivityId) {
method: 'get'
})
}
export function history(query) {
return request({
url: '/dms/dmsRealtimeStatus/history',
method: 'get',
params: query
})
}
// 新增故障报修工单实例节点
export function addActivity(data) {

@ -22,6 +22,13 @@ export function listDmsBillsFaultInstancecompleted(query) {
params: query
})
}
export function deviceStatusList(query) {
return request({
url: '/dms/dmsRealtimeStatus/list',
method: 'get',
params: query
})
}
// // 检修工单记录导出
// export function handleFaultExport(repairInstanceId) {
// return request({

@ -0,0 +1,633 @@
<template>
<div class="app-container">
<el-table v-loading="loading" :data="dmsStatusList" @selection-change="handleSelectionChange">
<el-table-column label="设备编号" align="center" prop="statusCode" />
<!-- <el-table-column label="工单状态0-待维修1-维修中2-维修完成3-待检修4-检修中5-检修完成" align="center" prop="billsStatus" />-->
<el-table-column label="设备状态名称" align="center" prop="statusName" />
<el-table-column label="设备状态值" align="center" prop="statusValue" />
<el-table-column label="设备名称" align="center" prop="deviceName" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="getJump(scope.row)"
v-hasPermi="['dms:dmsBillsFaultInstance:edit']"
>历史详情</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改检修工单对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="96px">
<el-form-item label="设备名称" prop="deviceId">
<el-select v-model="form.deviceId" placeholder="设备名称" >
<el-option
v-for="item in ledgerList"
:key="item.deviceId"
:label="item.deviceName"
:value="item.deviceId"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="报修来源类型" prop="faultSourceType">
<el-select @change="change" v-model="form.faultSourceType" placeholder="报修来源类型" >
<el-option
v-for="item in dict.type.dms_fault_source_type"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="检修工单编码" prop="faultSourceId" v-if="isShow1">
<el-select v-model="form.faultSourceId" placeholder="检修工单编码" >
<el-option
v-for="item in this.dmsRepairInstanceList"
:key="item.repairInstanceId"
:label="item.billsRepairCode"
:value="item.repairInstanceId"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="点检工单编码" prop="faultSourceId" v-if="isShow2">
<el-select v-model="form.faultSourceId" placeholder="点检工单编码" >
<el-option
v-for="item in this.pointList"
:key="item.inspectInstanceId"
:label="item.billsInspectCode"
:value="item.inspectInstanceId"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="巡检工单编码" prop="faultSourceId" v-if="isShow3">
<el-select v-model="form.faultSourceId" placeholder="巡检工单编码" >
<el-option
v-for="item in this.inspectInstanceList"
:key="item.inspectInstanceId"
:label="item.billsInspectCode"
:value="item.inspectInstanceId"
>
</el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="报修来源id" prop="faultSourceId">-->
<!-- <el-input v-model="form.faultSourceId" placeholder="请输入报修来源ID" />-->
<!-- </el-form-item>-->
<el-form-item label="报修工单编号" prop="faultSourceId" v-if="isShow9">
<el-input v-model="form.faultSourceId" placeholder="请输入报修工单编号" />
</el-form-item>
<!-- <el-form-item label="工单状态" prop="billsStatus">-->
<!-- <el-select v-model="form.billsStatus" placeholder="工单状态" >-->
<!-- <el-option-->
<!-- v-for="item in dict.type.bills_status"-->
<!-- :key="item.value"-->
<!-- :label="item.label"-->
<!-- :value="item.value"-->
<!-- >-->
<!-- </el-option>-->
<!-- </el-select>-->
<!--&lt;!&ndash; <el-radio-group v-model="form.billsStatus">&ndash;&gt;-->
<!--&lt;!&ndash; <el-radio&ndash;&gt;-->
<!--&lt;!&ndash; v-for="dict in dict.type.bills_status"&ndash;&gt;-->
<!--&lt;!&ndash; :key="dict.value"&ndash;&gt;-->
<!--&lt;!&ndash; :label="dict.value"&ndash;&gt;-->
<!--&lt;!&ndash; >{{dict.label}}</el-radio>&ndash;&gt;-->
<!--&lt;!&ndash; </el-radio-group>&ndash;&gt;-->
<!-- </el-form-item>-->
<!-- <el-form-item label="工单流程ID关联wf_process的wf_process_id" prop="wfProcessId">-->
<!-- <el-input v-model="form.wfProcessId" placeholder="请输入工单流程ID关联wf_process的wf_process_id" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="工单编号" prop="billsFaultCode">-->
<!-- <el-input v-model="form.billsFaultCode" placeholder="请输入工单编号" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="申请人" prop="applyUser">-->
<!-- <el-input v-model="form.applyUser" placeholder="请输入申请人" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="申请时间" prop="applyTime">-->
<!-- <el-date-picker clearable-->
<!-- v-model="form.applyTime"-->
<!-- type="date"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="请选择申请时间">-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="工单类型" prop="instanceType">-->
<!-- <el-select v-model="form.instanceType" placeholder="工单类型" >-->
<!-- <el-option-->
<!-- v-for="item in dict.type.dms_instance_type"-->
<!-- :key="item.value"-->
<!-- :label="item.label"-->
<!-- :value="item.value"-->
<!-- >-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="实际开始时间" prop="realBeginTime">-->
<!-- <el-date-picker clearable-->
<!-- v-model="form.realBeginTime"-->
<!-- type="date"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="请选择实际开始时间">-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="实际完成时间" prop="realEndTime">-->
<!-- <el-date-picker clearable-->
<!-- v-model="form.realEndTime"-->
<!-- type="date"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="请选择实际完成时间">-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
<el-form-item label="要求完成时间" prop="requireEndTime">
<el-date-picker clearable
v-model="form.requireEndTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择要求完成时间">
</el-date-picker>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-divider content-position="center">故障报修工单信息</el-divider>
<el-form-item label="故障类别" prop="faultType">
<el-select v-model="form.faultType" placeholder="故障类别" >
<el-option
v-for="item in dict.type.dms_fault_type"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="故障描述" prop="faultDescription">
<el-input v-model="form.faultDescription" placeholder="故障描述" />
</el-form-item>
<el-form-item label="涉及操作" prop="designOperations">
<el-input v-model="form.designOperations" placeholder="涉及操作" />
</el-form-item>
<el-form-item label="维修类型" prop="repairType">
<el-radio-group v-model="form.repairType">
<el-radio
@change="changeOut"
v-for="dict in dict.type.dms_fault_repair_type"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="外协单位" prop="outsrcId" v-if="isShowOut">
<el-select v-model="form.outsrcId" placeholder="外协单位" >
<el-option
v-for="item in dmsInfoList"
:key="item.outsrcId"
:label="item.outsrcName"
:value="item.outsrcId"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item prop="pictureUrl">
<el-upload
:action="imgUpload.url"
:headers="imgUpload.headers"
:on-success="handlePictureSuccess"
:before-upload="beforePictureUpload"
list-type="picture-card"
:file-list="fileListShow"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove">
<i class="el-icon-plus"></i>
</el-upload>
<!--图片预览的dialog-->
<el-dialog :visible.sync="dialogVisible">
<img width="100%" :src="dialogImageUrl">
</el-dialog>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listDmsBillsFaultInstance,
getDmsBillsFaultInstance,
delDmsBillsFaultInstance,
addDmsBillsFaultInstance,
updateDmsBillsFaultInstance,
listDmsBillsFaultInstancecompleted,
handleFaultExport, deviceStatusList,
} from "@/api/dms/dmsBillsFaultInstance";
import { listDmsRepair } from '@/api/dms/dmsRepair'
import { listDmsRepairInstance } from '@/api/dms/dmsRepairInstance'
import { listPoint,listSelectInspection } from '@/api/dms/dmsBillsInstance'
import { listLedger } from '@/api/dms/ledger'
import { listDmsInfo } from '@/api/dms/dmsInfo'
import { getToken } from '@/utils/auth'
import app from "@/store/modules/app";
export default {
name: "DmsBillsFaultInstance",
dicts:['bills_status','approve_status','confirm_status','dms_instance_type','dms_fault_source_type','dms_fault_type','dms_repair_type','dms_fault_repair_type'],
data() {
return {
//
isCommonName: true,
//list
fileListShow: [],
//List
fileListPut: [],
dialogImageUrl: '',
dialogVisible: false,
imgUpload: {
//
headers: {
Authorization: "Bearer " + getToken()
},
// :
url: process.env.VUE_APP_BASE_API + "/file/upload",
url2: process.env.VUE_APP_BASE_API,
},
isShow1:false,
isShow2:false,
isShow3:false,
isShow9:false,
isShowOut:false,
imgAddress:[],
//
dmsInfoList:[],
//
ledgerList:[],
//
inspectInstanceList:[],
//
pointList:[],
//
dmsBillsInstanceList:[],
//
dmsRepairInstanceList:[],
dmsRepairList:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
dmsBillsFaultInstanceList: [],
dmsStatusList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
},
//
form: {},
approve: {},
//
rules: {
wfProcessId: [
{ required: true, message: "工单流程ID关联wf_process的wf_process_id不能为空", trigger: "blur" }
],
billsFaultCode: [
{ required: true, message: "工单编号不能为空", trigger: "blur" }
],
billsStatus: [
{ required: true, message: "工单状态0-待维修1-维修中2-维修完成3-待检修4-检修中5-检修完成不能为空", trigger: "change" }
],
instanceType: [
{ required: true, message: "工单类型不能为空", trigger: "change" }
],
isFlag: [
{ required: true, message: "是否标识1-是0-否不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
this.getdmsRepair();
this.getBillsFaultInstance();
this.getDmsBillsInstancePoint();
this.getDmsBillsInstanceInspection();
this.getDeviveLedger();
this.getoutsrcId();
},
methods: {
//
beforePictureUpload(file){
// isCommonName true
this.isCommonName = true;
const isJPG = file.type === 'image/jpeg';
const isLt2M = file.size / 1024 / 1024 < 2;
//
if(this.fileListPut.length > 0){
this.fileListPut.forEach((item,index)=>{
if(item.name == file.name){
this.$message.error('已存在相同的图片!');
this.isCommonName = false;
}
})
}
if (!isJPG) {
this.$message.error('请上传图片格式的文件!');
}
if (!isLt2M) {
this.$message.error('上传的图片不能超过2MB!');
}
return isJPG && isLt2M && this.isCommonName;
},
//
handleRemove(file, fileList) {
//filefileListPut
if(this.fileListPut.length > 0){
this.fileListPut = this.fileListPut.filter((item, index)=>{
return item.name != file.name;
})
}
},
//
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
//
handlePictureSuccess(res, file) {
//访
const imgObjectUrl = this.imgUpload.url2 + file.response.imgUrl;
//JSON
let currentFile = { name: '', url: '' };
currentFile.name = file.name;
currentFile.url = imgObjectUrl;
this.imgAddress.push(res.data.url);
//
this.fileListPut.push(currentFile);
console.log(this.fileListPut)
},
getJump(row){
console.log(row.statusId)
// debugger
this.$router.push({"path":'/dms/shut/history/',"query": {"statusId":row.statusId}})
},
getJumpSelect(row){
this.$router.push('/dms/activity/index/'+row.repairInstanceId)
},
getoutsrcId() {
listDmsInfo().then(response => {
this.dmsInfoList = response.rows;
});
},
/** 查询设备台账信息列表 */
getDeviveLedger() {
listLedger().then(response => {
this.ledgerList = response.rows;
});
},
changeOut(){
if (this.form.repairType==2){
this.isShowOut=true;}
else{
this.isShowOut = false;
}
},
change(){
if (this.form.faultSourceType == 1)
{
this.isShow1=true
this.isShow2=false
this.isShow3=false
this.isShow9=false
this.form.faultSourceId=null
}else if (this.form.faultSourceType==2){
this.isShow2=true
this.isShow1=false
this.isShow3=false
this.isShow9=false
this.form.faultSourceId=null
}else if (this.form.faultSourceType==3){
this.isShow3=true
this.isShow1=false
this.isShow2=false
this.isShow9=false
this.form.faultSourceId=null
}else if (this.form.faultSourceType==9){
this.isShow1=false
this.isShow2=false
this.isShow3=false
this.form.faultSourceId=null
this.isShow9=true
}
},
/** 查询检修计划信息列表 */
getdmsRepair() {
listDmsRepair(this.queryParams).then(response => {
this.dmsRepairList = response.rows;
});
},
/** 查询检修工单列表*/
getBillsFaultInstance() {
listDmsRepairInstance().then(response => {
this.dmsRepairInstanceList = response.rows;
console.log(this.dmsRepairInstanceList);
})},
/** 查询点检工单列表*/
getDmsBillsInstancePoint(){
listPoint().then(response => {
this.pointList = response.rows;
})
},
getDmsBillsInstanceInspection(){
listSelectInspection().then(response => {
this.inspectInstanceList = response.rows;
console.log(this.inspectInstanceList)
})
},
/** 查询报修工单列表 */
getList() {
this.loading = true;
deviceStatusList(this.queryParams).then(response => {
this.dmsStatusList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
repairInstanceId: null,
faultSourceType: null,
faultSourceId: null,
wfProcessId: null,
billsFaultCode: null,
billsStatus: null,
applyUser: null,
applyTime: null,
realBeginTime: null,
realEndTime: null,
requireEndTime: null,
instanceType: null,
isFlag: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.queryParams.faultSourceType = null;
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.repairInstanceId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.fileListShow = [];
this.isShowOut = false;
this.open = true;
this.title = "添加报修工单";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const repairInstanceId = row.repairInstanceId || this.ids
getDmsBillsFaultInstance(repairInstanceId).then(response => {
this.form = response.data;
this.fileListShow = response.data.dmsInstanceFiles
// this.fileListShow = response.data.sysFiles
console.log(this.fileListShow)
this.open = true;
this.title = "修改报修工单";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.repairInstanceId != null) {
updateDmsBillsFaultInstance(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
this.form.wfProcessId = 102;
this.form.isFlag = 1;
this.form.fileUrls = this.imgAddress;
alert(this.imgAddress)
addDmsBillsFaultInstance(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const repairInstanceIds = row.repairInstanceId || this.ids;
this.$modal.confirm('是否确认删除检修工单编号为"' + repairInstanceIds + '"的数据项?').then(function() {
return delDmsBillsFaultInstance(repairInstanceIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 删除按钮操作 */
handleUpadateApprove(repairInstanceId,repairConfirm) {
console.log(repairConfirm);
this.approve.repairInstanceId = repairInstanceId;
this.approve.repairConfirm = repairConfirm;
console.log(this.approve);
updateDmsBillsFaultInstance(this.approve).then(() => {
this.getList();
this.$modal.msgSuccess("确认成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('dms/dmsBillsFaultInstance/export', {
...this.queryParams
}, `dmsBillsFaultInstance_${new Date().getTime()}.xlsx`)
},
/** 导出报修按钮操作 */
handleFaultExport(repairInstanceId) {
this.download('dms/dmsBillsFaultInstance/faultRecordExport', {
repairInstanceId
}, `dmsBillsFaultInstance_${new Date().getTime()}.xlsx`)
}
}
};
</script>

@ -0,0 +1,227 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
<el-form-item label="实际开始时间" prop="realBeginTime">
<el-date-picker clearable
v-model="queryParams.realBeginTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择实际开始时间">
</el-date-picker>
</el-form-item>
<el-form-item><div>-</div></el-form-item>
<el-form-item label="" prop="realEndTime">
<el-date-picker clearable
v-model="queryParams.realEndTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择实际结束时间">
</el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-form :model="dmsHistoryList" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="150px">
<el-form-item label="设备运行总时长" prop="timeCount">
<el-input
v-model="dmsHistoryList[0].timeCount"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="dmsHistoryList" @selection-change="handleSelectionChange">
<el-table-column label="设备编号" align="center" prop="statusCode" />
<!-- <el-table-column label="工单状态0-待维修1-维修中2-维修完成3-待检修4-检修中5-检修完成" align="center" prop="billsStatus" />-->
<el-table-column label="设备状态名称" align="center" prop="statusName" />
<el-table-column label="设备状态值" align="center" prop="statusValue" />
<el-table-column label="设备名称" align="center" prop="deviceName" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {
getActivity,
delActivity,
addActivity,
updateActivity,
selectUserIdByInspectInstanceId,
history
} from "@/api/dms/activity";
import {getDmsPartsList, listDmsBillsFaultInstance} from '@/api/dms/dmsBillsFaultInstance'
import { listWfprocessactivity } from '@/api/system/common/wfprocessactivity'
import { listAllLedger } from '@/api/dms/ledger'
import { listDmsInfo } from '@/api/dms/dmsInfo'
import ViewFile from "@/components/viewFile/index.vue";
export default {
name: "Activity",
dicts:['dms_fault_type','dms_repair_type','dms_bills_status','dms_inspect_type','dms_fault_source_type'],
components: {ViewFile},
data() {
return {
//
faultSourceTypeCheck:"",
//
dmsInfoList:[],
//
ledgerList:[],
//
wfProcessActivityList:[],
//
dmsBillsFaultInstanceList:[],
dmsHistoryList:[],
dmsPartsList:[],
stepsNum:"",
ListLength:"",
isUpdate:false,
nowPorcessStepOrder:"",
repairInstanceIdCheck:"",
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
activityList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
realBeginTime: null,
realEndTime: null
},
queryParamWfProcessActivity:{
wfProcessId:null,
},
//
form: {},
form1:{},
//
rules: {
repairInstanceId: [
{ required: true, message: "维修工单实例ID关联dms_bills_repair_instance的repair_instance_id不能为空", trigger: "blur" }
],
processHandleStatus: [
{ required: true, message: "状态(0已结束1执行中2、待接取3、已转发不能为空", trigger: "change" }
],
processStepOrder: [
{ required: true, message: "工单流程步骤顺序不能为空", trigger: "blur" }
],
},
//
showFileDialog: false,
//
thisTitle: "故障图片",
//
fileListData: [],
};
},
created() {
console.log(this.$route)
const statusId = this.$route.query && this.$route.query.statusId;
this.queryParams.statusId = statusId;
this.isUpdate = true;
this.getList();
},
methods: {
/** 查询历史列表 */
getList() {
this.loading = true;
console.log(this.queryParams)
history(this.queryParams).then(response => {
this.dmsHistoryList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.instanceActivityId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.instanceActivityId != null) {
updateActivity(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
for (let i = 0; i < this.wfProcessActivityList.length;i++){
if (this.form1.processStepOrder+1 == this.wfProcessActivityList[i].processActivityOrder){
this.form1.processActivityId = this.wfProcessActivityList[i].processActivityId;
// alert(this.wfProcessActivityList[i].processActivityId)
}
}
this.form1.instanceActivityId =null;
//
this.form1.processStepOrder = this.form1.processStepOrder+1;
this.form1.wfLength = this.wfProcessActivityList.length;
addActivity(this.form1).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
this.getWfprocessActivity();
this.getBillsFaultInstance();
this.getDeviveLedger();
this.getoutsrcId();
});
}
}
});
},
}
};
</script>
Loading…
Cancel
Save