seimin 2 주 전
부모
커밋
375e7b0eb5

+ 23 - 6
pages/buildIncident/buildIncident.vue

@@ -267,7 +267,7 @@
267 267
   }
268 268
 
269 269
   // 获取故障来源列表
270
-  function getSources(){
270
+  function getSources(sourceValue){
271 271
     uni.showLoading({
272 272
       title: "加载中",
273 273
       mask: true,
@@ -284,9 +284,13 @@
284 284
         value: v.id,
285 285
         key: v.value,
286 286
       }));
287
-      let discover = dataInfo.sourceList.find(v => v.key === 'leader');
288
-      if(discover){
289
-        incidentData.source = discover.value;
287
+      if(sourceValue){
288
+        incidentData.source = sourceValue;
289
+      }else{
290
+        let discover = dataInfo.sourceList.find(v => v.key === 'leader');
291
+        if(discover){
292
+          incidentData.source = discover.value;
293
+        }
290 294
       }
291 295
     })
292 296
   }
@@ -440,7 +444,20 @@
440 444
 
441 445
   onLoad((option) => {
442 446
     handlerStore.clearHandlerData();
443
-    if(incidentBuildStore.incidentBuild.data){
447
+    if(option.type == 'inspection'){
448
+      Object.assign(
449
+        incidentData,
450
+        incidentBuildStore.incidentBuild.data,
451
+        {
452
+          priority: incidentBuildStore.incidentBuild.data.priority ? incidentBuildStore.incidentBuild.data.priority.id : (incidentBuildStore.incidentBuild.data.category ? (incidentBuildStore.incidentBuild.data.category.priority ? incidentBuildStore.incidentBuild.data.category.priority.id : undefined) : undefined),
453
+          description: incidentBuildStore.incidentBuild.data.description || (incidentBuildStore.incidentBuild.data.category ? incidentBuildStore.incidentBuild.data.category.mutiCategory : undefined),
454
+        },
455
+      );
456
+    	if(incidentData.category && incidentData.category.id && !incidentBuildStore.incidentBuild.data.priority){
457
+    		getPriorityData()
458
+    	}
459
+      getSources(incidentBuildStore.incidentBuild.data.source);
460
+    }else if(incidentBuildStore.incidentBuild.data){
444 461
       Object.assign(
445 462
         incidentData,
446 463
         incidentBuildStore.incidentBuild.data,
@@ -460,9 +477,9 @@
460 477
 			if(incidentData.category && incidentData.category.id){
461 478
 				getPriorityData()
462 479
 			}
480
+      getSources();
463 481
     }
464 482
     getBranchs();
465
-    getSources();
466 483
     getPrioritys();
467 484
   })
468 485
 </script>

+ 60 - 6
pages/inspection/inspectionExecute/inspectionExecute.vue

@@ -33,7 +33,7 @@
33 33
         <view class="body_item_foot">
34 34
           <view class="btns pt0">
35 35
             <button v-if="data.status.value === '1'" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
36
-            <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
36
+            <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
37 37
           </view>
38 38
         </view>
39 39
       </view>
@@ -55,7 +55,7 @@
55 55
   import { ref, reactive, computed } from 'vue'
56 56
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
57 57
   import { SM } from "@/http/http.js"
58
-  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode } from "@/http/api.js"
58
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode, api_listAttachment } from "@/http/api.js"
59 59
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
60 60
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
61 61
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -93,6 +93,9 @@
93 93
   const computedSynergetic = computed(() => (synergetic) => {
94 94
     return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
95 95
   })
96
+  
97
+  // 故障来源列表
98
+  const defaultSourceValue = ref();
96 99
 
97 100
   // 数据
98 101
   const dataInfo = reactive({
@@ -166,12 +169,62 @@
166 169
     });
167 170
   }
168 171
   
172
+  // 获取故障来源列表
173
+  function getSources(){
174
+    let postData = {
175
+      "key": 'incident_source',
176
+      "type": "list",
177
+    };
178
+    api_getDictionary(postData).then(res => {
179
+      res = res || [];
180
+      let discover = res.find(v => v.value === 'inspection');
181
+      if(discover){
182
+        defaultSourceValue.value = discover.id;
183
+      }
184
+    })
185
+  }
186
+  
169 187
   // 新建事件
170
-  function toBuildIncident(data){
188
+  async function toBuildIncident(res){
171 189
   	incidentBuildStore.clearIncidentBuildData();
172
-    uni.navigateTo({
173
-      url: '/pages/buildIncident/buildIncident'
174
-    })
190
+   let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
191
+   let repairImgList = [];
192
+   if(imgObj){
193
+     let result = await api_listAttachment('inspection', res.id);
194
+     result.data = result.data || [];
195
+     result.data = result.data.filter(v => v.recordId == imgObj.itemId);
196
+     result.data = result.data.map(v => ({
197
+       url: location.origin + "/file" + v.relativeFilePath,
198
+       path: location.origin + "/file" + v.relativeFilePath,
199
+       size: v.size,
200
+       name: v.name,
201
+       extname: v.suffix,
202
+     }))
203
+     repairImgList = result.data;
204
+   }
205
+   
206
+   console.log(repairImgList, 'repairImgList')
207
+   
208
+   let incidentData = {
209
+     place: res.inspectionNodeDTO.floorDTO,
210
+     houseNumber: res.inspectionNodeDTO.address,
211
+     source: defaultSourceValue.value,
212
+     description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
213
+     requester: loginUserStore.loginUser.user,
214
+     branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
215
+     contacts: loginUserStore.loginUser.user.name,
216
+     contactsInformation: loginUserStore.loginUser.user.phone,
217
+     category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
218
+     department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
219
+     priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
220
+     repairImgList,
221
+     inspectionTaskId: res.id,
222
+   }
223
+   console.log(incidentData, 'incidentData')
224
+   incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
225
+   uni.navigateTo({
226
+     url: `/pages/buildIncident/buildIncident?type=inspection`
227
+   })
175 228
   }
176 229
 
177 230
   // 巡检项
@@ -345,6 +398,7 @@
345 398
   }
346 399
 
347 400
   onLoad((option) => {
401
+    getSources();
348 402
     for(let i = 0; i<7; i++){
349 403
     	setTabbar(i)
350 404
     }

+ 66 - 1
pages/inspection/inspectionScanning/inspectionScanning.vue

@@ -31,6 +31,7 @@
31 31
         <view class="body_item_foot">
32 32
           <view class="btns pt0">
33 33
             <button v-if="data.status.value === '1' && dataInfo.tabActiveId === 0" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
34
+            <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
34 35
           </view>
35 36
         </view>
36 37
       </view>
@@ -46,7 +47,7 @@
46 47
   import { ref, reactive, computed } from 'vue'
47 48
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
48 49
   import { SM } from "@/http/http.js"
49
-  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode } from "@/http/api.js"
50
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode, api_listAttachment } from "@/http/api.js"
50 51
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
51 52
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
52 53
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -59,6 +60,7 @@
59 60
   import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
60 61
   import { useInspectionValueStore } from '@/stores/inspectionValue'
61 62
   import { useSetTabbar } from '@/share/useSetTabbar.js'
63
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
62 64
 
63 65
   useSetTitle();
64 66
   const loginUserStore = useLoginUserStore();
@@ -71,10 +73,14 @@
71 73
   const { currentLogOverTime }  = computedCurrentLogOverTime();
72 74
   const { makePhoneCall }  = useMakePhoneCall();
73 75
   const { setTabbar }  = useSetTabbar();
76
+  const incidentBuildStore = useIncidentBuildStore();
74 77
 
75 78
   // 主题颜色
76 79
   const primaryColor = ref(defaultColor)
77 80
   
81
+  // 故障来源列表
82
+  const defaultSourceValue = ref();
83
+  
78 84
   // 数据
79 85
   const dataInfo = reactive({
80 86
     tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
@@ -88,6 +94,64 @@
88 94
     inspectionNodeName: '',
89 95
   })
90 96
   
97
+  // 获取故障来源列表
98
+  function getSources(){
99
+    let postData = {
100
+      "key": 'incident_source',
101
+      "type": "list",
102
+    };
103
+    api_getDictionary(postData).then(res => {
104
+      res = res || [];
105
+      let discover = res.find(v => v.value === 'inspection');
106
+      if(discover){
107
+        defaultSourceValue.value = discover.id;
108
+      }
109
+    })
110
+  }
111
+  
112
+  // 新建事件
113
+  async function toBuildIncident(res){
114
+  	incidentBuildStore.clearIncidentBuildData();
115
+   let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
116
+   let repairImgList = [];
117
+   if(imgObj){
118
+     let result = await api_listAttachment('inspection', res.id);
119
+     result.data = result.data || [];
120
+     result.data = result.data.filter(v => v.recordId == imgObj.itemId);
121
+     result.data = result.data.map(v => ({
122
+       url: location.origin + "/file" + v.relativeFilePath,
123
+       path: location.origin + "/file" + v.relativeFilePath,
124
+       size: v.size,
125
+       name: v.name,
126
+       extname: v.suffix,
127
+     }))
128
+     repairImgList = result.data;
129
+   }
130
+   
131
+   console.log(repairImgList, 'repairImgList')
132
+   
133
+   let incidentData = {
134
+     place: res.inspectionNodeDTO.floorDTO,
135
+     houseNumber: res.inspectionNodeDTO.address,
136
+     source: defaultSourceValue.value,
137
+     description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
138
+     requester: loginUserStore.loginUser.user,
139
+     branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
140
+     contacts: loginUserStore.loginUser.user.name,
141
+     contactsInformation: loginUserStore.loginUser.user.phone,
142
+     category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
143
+     department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
144
+     priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
145
+     repairImgList,
146
+     inspectionTaskId: res.id,
147
+   }
148
+   console.log(incidentData, 'incidentData')
149
+   incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
150
+   uni.navigateTo({
151
+     url: `/pages/buildIncident/buildIncident?type=inspection`
152
+   })
153
+  }
154
+  
91 155
   // 巡检项
92 156
   function toInspectionValue(data){
93 157
     uni.showLoading({
@@ -206,6 +270,7 @@
206 270
   }
207 271
   
208 272
   onLoad((option) => {
273
+    getSources();
209 274
     dataInfo.inspectionNodeCode = option.inspectionNodeCode;
210 275
     dataInfo.inspectionNodeNewCode = option.inspectionNodeNewCode;
211 276
     dataInfo.inspectionNodeName = option.inspectionNodeName;

+ 111 - 10
pages/inspection/inspectionValue/inspectionValue.vue

@@ -72,7 +72,7 @@
72 72
   import DsFilePicker from '@/components/DsFilePicker.vue';
73 73
   import { ref, reactive, nextTick } from 'vue'
74 74
   import { onLoad } from '@dcloudio/uni-app'
75
-  import { api_addModel } from "@/http/api.js"
75
+  import { api_addModel, api_getDictionary } from "@/http/api.js"
76 76
   import { defaultColor } from '@/static/js/theme.js'
77 77
   import { useSetTitle } from '@/share/useSetTitle.js'
78 78
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
@@ -80,17 +80,22 @@
80 80
   import { useLoginUserStore } from '@/stores/loginUser'
81 81
   import { useInspectionValueStore } from '@/stores/inspectionValue'
82 82
   import { forIn } from 'lodash-es';
83
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
83 84
 
84 85
   useSetTitle();
85 86
   const loginUserStore = useLoginUserStore();
86 87
   const { goBack }  = useGoBack();
87 88
   const inspectionValueStore = useInspectionValueStore();
89
+  const incidentBuildStore = useIncidentBuildStore();
88 90
 
89 91
   // 主题颜色
90 92
   const primaryColor = ref(defaultColor)
91 93
 
92 94
   // 所有页码数据
93 95
   const formPageList = reactive([]);
96
+  
97
+  // 故障来源列表
98
+  const defaultSourceValue = ref();
94 99
 
95 100
   // 表单
96 101
   const baseForm = ref()
@@ -132,6 +137,61 @@
132 137
   function changeForm(){
133 138
     handleData(true);
134 139
   }
140
+  
141
+  // 跳转巡检列表
142
+  function toInspectionExecute(){
143
+    inspectionValueStore.clearInspectionValueData();
144
+    uni.reLaunch({
145
+      url: `/pages/inspection/inspectionExecute/inspectionExecute`
146
+    })
147
+  }
148
+  
149
+  // 获取故障来源列表
150
+  function getSources(){
151
+    let postData = {
152
+      "key": 'incident_source',
153
+      "type": "list",
154
+    };
155
+    api_getDictionary(postData).then(res => {
156
+      res = res || [];
157
+      let discover = res.find(v => v.value === 'inspection');
158
+      if(discover){
159
+        defaultSourceValue.value = discover.id;
160
+      }
161
+    })
162
+  }
163
+  
164
+  // 跳转新建事件
165
+  function toBuildIncident(res){
166
+    let imgList = Object.values(itemRefs.value);
167
+    let repairImgList = [];
168
+    if(imgList.length){
169
+      repairImgList = imgList[0].baseFormData.handlerImgList;
170
+    }
171
+
172
+    let incidentData = {
173
+      place: res.inspectionNode.floorDTO,
174
+      houseNumber: res.inspectionNode.address,
175
+      source: defaultSourceValue.value,
176
+      description: res.inspectionValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
177
+      requester: loginUserStore.loginUser.user,
178
+      branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
179
+      contacts: loginUserStore.loginUser.user.name,
180
+      contactsInformation: loginUserStore.loginUser.user.phone,
181
+      category: res.inspectionForm.categoryDTO,
182
+      department: res.inspectionForm.repairDeptDTO,
183
+      priority: res.inspectionForm.priorityDTO,
184
+      repairImgList,
185
+      inspectionTaskId: res.id,
186
+    }
187
+    console.log(repairImgList, 'repairImgList')
188
+    console.log(incidentData, 'incidentData')
189
+    incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
190
+    inspectionValueStore.clearInspectionValueData();
191
+    uni.navigateTo({
192
+      url: `/pages/buildIncident/buildIncident?type=inspection`
193
+    })
194
+  }
135 195
 
136 196
   // 保存
137 197
   function submit(){
@@ -197,7 +257,35 @@
197 257
 
198 258
             if(res.exception){
199 259
               // 异常
200
-              if(true){
260
+              if(res.inspectionForm.createOrder == 1){
261
+                // 是否自动生成维修单
262
+                uni.showModal({
263
+                	title: '提示',
264
+                	content: `巡检提交成功,您巡检有产生异常;系统自动生成工单:${res.incidentSign}`,
265
+                  showCancel: false,
266
+                  confirmText: '返回巡检列表',
267
+                	success: (res) => {
268
+                		if (res.confirm) {
269
+                      toInspectionExecute();
270
+                		}
271
+                	}
272
+                });
273
+              } else if(res.inspectionForm.showOrder == 1){
274
+                // 是否显示生成维修单
275
+                uni.showModal({
276
+                	title: '提示',
277
+                	content: '巡检提交成功,您巡检有产生异常,是否生成维修单',
278
+                  confirmText: '生成维修单',
279
+                  cancelText: '返回巡检列表',
280
+                	success: (result) => {
281
+                		if (result.confirm) {
282
+                			toBuildIncident(res);
283
+                		} else if (result.cancel) {
284
+                			toInspectionExecute();
285
+                		}
286
+                	}
287
+                });
288
+              } else {
201 289
                 uni.showToast({
202 290
                   icon: 'none',
203 291
                   title: "巡检提交成功,有异常",
@@ -205,10 +293,7 @@
205 293
                   mask: true,
206 294
                 })
207 295
                 setTimeout(() => {
208
-                  inspectionValueStore.clearInspectionValueData();
209
-                  uni.reLaunch({
210
-                    url: `/pages/inspection/inspectionExecute/inspectionExecute`
211
-                  })
296
+                  toInspectionExecute();
212 297
                 }, 2000)
213 298
               }
214 299
             }else{
@@ -220,12 +305,24 @@
220 305
                 mask: true,
221 306
               })
222 307
               setTimeout(() => {
223
-                inspectionValueStore.clearInspectionValueData();
224
-                uni.reLaunch({
225
-                  url: `/pages/inspection/inspectionExecute/inspectionExecute`
226
-                })
308
+                toInspectionExecute();
227 309
               }, 2000)
228 310
             }
311
+          } else if(res.status == 555){
312
+            // 自动生成维修单失败
313
+            uni.showModal({
314
+            	title: '提示',
315
+            	content: '巡检提交成功,您巡检有产生异常;系统自动生成工单失败,请手动建单',
316
+              confirmText: '生成维修单',
317
+              cancelText: '返回巡检列表',
318
+            	success: (result) => {
319
+            		if (result.confirm) {
320
+            			toBuildIncident(res);
321
+            		} else if (result.cancel) {
322
+            			toInspectionExecute();
323
+            		}
324
+            	}
325
+            });
229 326
           } else {
230 327
             uni.showToast({
231 328
               icon: 'none',
@@ -362,6 +459,7 @@
362 459
   }
363 460
 
364 461
   onLoad((option) => {
462
+    getSources();
365 463
     inspectionExecuteId.value = +option.inspectionExecuteId;
366 464
     // 巡检项
367 465
     if(inspectionValueStore.inspectionValue.data){
@@ -380,6 +478,9 @@
380 478
     margin-top: 8rpx;
381 479
   }
382 480
 }
481
+::v-deep .uni-modal__btn_primary{
482
+  color: $uni-primary!important;
483
+}
383 484
 .inspectionValue{
384 485
   height: 100%;
385 486
   display: flex;