|
|
|
|
@ -78,6 +78,15 @@
|
|
|
|
|
|
|
|
|
|
<!-- 批量操作按钮 -->
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="info"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-document"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleProductionDailyReport"
|
|
|
|
|
>生产日报</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
v-hasPermi="['base:orderInfo:edit']"
|
|
|
|
|
@ -546,6 +555,10 @@ export default {
|
|
|
|
|
this.detailOrder = row
|
|
|
|
|
this.detailDialogVisible = true
|
|
|
|
|
},
|
|
|
|
|
handleProductionDailyReport() {
|
|
|
|
|
// 生产日报只把工单执行页作为入口,报表实际产出口径由后端DAY/RT汇总层独立计算。
|
|
|
|
|
this.$tab.openPage('生产日报', '/report/productionDailyReport/index')
|
|
|
|
|
},
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.selectedIds = selection.map(item => item.objId)
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
|