|
|
|
@ -119,101 +119,108 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
console.log('推送信息后获取信息', data) |
|
|
|
|
let copydata = data.result |
|
|
|
|
|
|
|
|
|
if (item.notification.data.properties.EventSystemName == '灭火器维护') { |
|
|
|
|
copydata.violatedItemSnapshotObj = JSON.parse(copydata.violatedItemSnapshot) |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: DisposeequipmentComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 380, |
|
|
|
|
nzBodyStyle: { |
|
|
|
|
'border': '1px solid #91CCFF', |
|
|
|
|
'border-radius': '0px', |
|
|
|
|
'padding': '7px', |
|
|
|
|
'box-shadow': '0 0 8px 0 #fff', |
|
|
|
|
'background-image': 'linear-gradient(#003665, #000f25)' |
|
|
|
|
}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: copydata |
|
|
|
|
}, |
|
|
|
|
nzFooter: null, |
|
|
|
|
nzClosable: false, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
if (instance.isScrap) { |
|
|
|
|
let body = { |
|
|
|
|
id: copydata.violatedItemSnapshotObj.id, |
|
|
|
|
isScrapped: true, |
|
|
|
|
organizationUnitId: copydata.violatedItemSnapshotObj.organizationUnitId |
|
|
|
|
} |
|
|
|
|
this.http.put('/api/services/app/FireEquipment/Update', body).subscribe((data: any) => { |
|
|
|
|
// item.violatedItemSnapshotObj = data.result
|
|
|
|
|
let body = { |
|
|
|
|
id: copydata.id, |
|
|
|
|
handleRecord: '报废成功!' |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/ViolateRecord/HandleViolateRecord', body).subscribe(data => { |
|
|
|
|
this.message.create('success', '报废成功!'); |
|
|
|
|
item.handleTime = new Date() |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
let copydata = data.result |
|
|
|
|
if (item.notification.data.properties.EventSystemName == '灭火器维护') { |
|
|
|
|
copydata.violatedItemSnapshotObj = JSON.parse(copydata.violatedItemSnapshot) |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: DisposeequipmentComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 380, |
|
|
|
|
nzBodyStyle: { |
|
|
|
|
'border': '1px solid #91CCFF', |
|
|
|
|
'border-radius': '0px', |
|
|
|
|
'padding': '7px', |
|
|
|
|
'box-shadow': '0 0 8px 0 #fff', |
|
|
|
|
'background-image': 'linear-gradient(#003665, #000f25)' |
|
|
|
|
}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: copydata |
|
|
|
|
}, |
|
|
|
|
nzFooter: null, |
|
|
|
|
nzClosable: false, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
if (instance.isScrap) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let body = { |
|
|
|
|
id: copydata.violatedItemSnapshotObj.id, |
|
|
|
|
name: instance.validateForm.value.name, |
|
|
|
|
specification: instance.validateForm.value.specification, |
|
|
|
|
productionDate: moment(instance.validateForm.value.prodtime).format('yyyy-MM-DD'), |
|
|
|
|
purchaseDate: moment(instance.validateForm.value.buytime).format('yyyy-MM-DD'), |
|
|
|
|
validityEndTime: moment(instance.validateForm.value.validitytime).format('yyyy-MM-DD'), |
|
|
|
|
organizationUnitId: copydata.violatedItemSnapshotObj.organizationUnitId |
|
|
|
|
isScrapped: true, |
|
|
|
|
organizationUnitId: copydata.violatedItemSnapshotObj.organizationUnitId, |
|
|
|
|
name: instance.copydata2.violatedItemSnapshotObj.name, |
|
|
|
|
specification: instance.copydata2.violatedItemSnapshotObj.specification, |
|
|
|
|
productionDate: moment(instance.copydata2.violatedItemSnapshotObj.prodtime).format('yyyy-MM-DD'), |
|
|
|
|
purchaseDate: moment(instance.copydata2.violatedItemSnapshotObj.buytime).format('yyyy-MM-DD'), |
|
|
|
|
validityEndTime: moment(instance.copydata2.violatedItemSnapshotObj.validitytime).format('yyyy-MM-DD') |
|
|
|
|
} |
|
|
|
|
this.http.put('/api/services/app/FireEquipment/Update', body).subscribe((data: any) => { |
|
|
|
|
let body = { |
|
|
|
|
id: copydata.id, |
|
|
|
|
handleRecord: '维保成功!' |
|
|
|
|
handleRecord: '报废成功!' |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/ViolateRecord/HandleViolateRecord', body).subscribe(data => { |
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '维保成功!'); |
|
|
|
|
this.message.create('success', '报废成功!'); |
|
|
|
|
copydata.handleTime = new Date() |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
this.message.create('warning', '请填写完整!'); |
|
|
|
|
return false |
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let body = { |
|
|
|
|
id: copydata.violatedItemSnapshotObj.id, |
|
|
|
|
name: instance.validateForm.value.name, |
|
|
|
|
specification: instance.validateForm.value.specification, |
|
|
|
|
productionDate: moment(instance.validateForm.value.prodtime).format('yyyy-MM-DD'), |
|
|
|
|
purchaseDate: moment(instance.validateForm.value.buytime).format('yyyy-MM-DD'), |
|
|
|
|
validityEndTime: moment(instance.validateForm.value.validitytime).format('yyyy-MM-DD'), |
|
|
|
|
organizationUnitId: copydata.violatedItemSnapshotObj.organizationUnitId |
|
|
|
|
} |
|
|
|
|
this.http.put('/api/services/app/FireEquipment/Update', body).subscribe((data: any) => { |
|
|
|
|
let body = { |
|
|
|
|
id: copydata.id, |
|
|
|
|
handleRecord: '维保成功!' |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/ViolateRecord/HandleViolateRecord', body).subscribe(data => { |
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '维保成功!'); |
|
|
|
|
copydata.handleTime = new Date() |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
this.message.create('warning', '请填写完整!'); |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} else { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: GetOutOfLineDetailsComponent, |
|
|
|
|
nzWrapClassName: "vertical-center-modal", |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: (document.documentElement.clientHeight < 650 || document.documentElement.clientWidth < 1400) ? 1000 : 1200, |
|
|
|
|
nzBodyStyle: { |
|
|
|
|
'border': '1px solid #6d9cc7', |
|
|
|
|
'border-radius': '0px', |
|
|
|
|
'padding': '0px', |
|
|
|
|
'box-shadow': '0 0 8px 0 #fff', |
|
|
|
|
'background': '#000D21', |
|
|
|
|
}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: copydata |
|
|
|
|
}, |
|
|
|
|
nzFooter: null, |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} else { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: GetOutOfLineDetailsComponent, |
|
|
|
|
nzWrapClassName: "vertical-center-modal", |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: (document.documentElement.clientHeight < 650 || document.documentElement.clientWidth < 1400) ? 1000 : 1200, |
|
|
|
|
nzBodyStyle: { |
|
|
|
|
'border': '1px solid #6d9cc7', |
|
|
|
|
'border-radius': '0px', |
|
|
|
|
'padding': '0px', |
|
|
|
|
'box-shadow': '0 0 8px 0 #fff', |
|
|
|
|
'background': '#000D21', |
|
|
|
|
}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: copydata |
|
|
|
|
}, |
|
|
|
|
nzFooter: null, |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} |
|
|
|
|
}, 0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|