|
@@ -484,7 +484,7 @@
|
|
|
</el-button>
|
|
|
<el-button v-if="currentNode.nodeCode === 'SPOT_RECONNAISSANCE_DETERMINE_PRICE'" type="text"
|
|
|
size="small" @click="assetsTargetDelete(scope.row.id)">删除</el-button>
|
|
|
- <el-button v-if="currentNode.nodeCode === 'REVIEW_STATEMENT' || currentNode.nodeCode === 'CHECK_REPORT'"
|
|
|
+ <el-button v-if="(currentNode.nodeCode === 'REVIEW_STATEMENT' || currentNode.nodeCode === 'CHECK_REPORT') && !disabledStatus"
|
|
|
type="text" size="small" @click="openCheckValueDialog(scope.row.id);">审核定价</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -751,44 +751,44 @@
|
|
|
查看
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-if="currentNode.nodeCode === 'REVIEW_STATEMENT' || (currentNode.nodeCode === 'GENERATE_STATEMENT' && scope.row.productionType === 'STATEMENT') || (currentNode.nodeCode === 'WRITE_REPORT' && scope.row.productionType !== 'STATEMENT')"
|
|
|
+ v-if="(currentNode.nodeCode === 'REVIEW_STATEMENT' || (currentNode.nodeCode === 'GENERATE_STATEMENT' && scope.row.productionType === 'STATEMENT') || (currentNode.nodeCode === 'WRITE_REPORT' && scope.row.productionType !== 'STATEMENT')) && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="openWriteProductionDialog(false, 'edit'), getAssetsProductionDetail(scope.row.id)">
|
|
|
编辑
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-if="currentNode.nodeCode === 'REVIEW_STATEMENT' && scope.row.productionType === 'STATEMENT'"
|
|
|
+ v-if="currentNode.nodeCode === 'REVIEW_STATEMENT' && scope.row.productionType === 'STATEMENT' && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="productionPerformanceForm.productionId = scope.row.id, openProductionCheckDialog()">
|
|
|
审核意见书
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-if="currentNode.nodeCode === 'REEXAMINE_STATEMENT' && scope.row.productionType === 'STATEMENT'"
|
|
|
+ v-if="currentNode.nodeCode === 'REEXAMINE_STATEMENT' && scope.row.productionType === 'STATEMENT' && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="productionPerformanceForm.productionId = scope.row.id, openProductionCheckDialog()">
|
|
|
复审意见书
|
|
|
</el-button>
|
|
|
- <el-button v-if="currentNode.nodeCode === 'CHECK_REPORT' && scope.row.productionType !== 'STATEMENT'"
|
|
|
+ <el-button v-if="currentNode.nodeCode === 'CHECK_REPORT' && scope.row.productionType !== 'STATEMENT' && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="productionPerformanceForm.productionId = scope.row.id, openProductionCheckDialog()">
|
|
|
审核报告
|
|
|
</el-button>
|
|
|
- <el-button v-if="currentNode.nodeCode === 'RECHECK_REPORT' && scope.row.productionType !== 'STATEMENT'"
|
|
|
+ <el-button v-if="currentNode.nodeCode === 'RECHECK_REPORT' && scope.row.productionType !== 'STATEMENT' && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="productionPerformanceForm.productionId = scope.row.id, openProductionCheckDialog()">
|
|
|
复审报告
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-if="currentNode.nodeCode === 'FOURTH_CHECK_REPORT' && scope.row.productionType !== 'STATEMENT'"
|
|
|
+ v-if="currentNode.nodeCode === 'FOURTH_CHECK_REPORT' && scope.row.productionType !== 'STATEMENT' && !disabledStatus"
|
|
|
type="text" size="small"
|
|
|
@click="productionPerformanceForm.productionId = scope.row.id, openProductionCheckDialog()">
|
|
|
四审报告
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-if="(currentNode.nodeCode === 'STATEMENT_IN' || currentNode.nodeCode === 'REPORT_IN') && scope.row.repertoryState === null"
|
|
|
+ v-if="(currentNode.nodeCode === 'STATEMENT_IN' || currentNode.nodeCode === 'REPORT_IN') && scope.row.repertoryState === null && !disabledStatus"
|
|
|
type="text" size="small" @click="openWareHouseDialog(scope.row);">产品入库</el-button>
|
|
|
<el-button
|
|
|
- v-if="(currentNode.nodeCode === 'STATEMENT_OUT' || currentNode.nodeCode === 'REPORT_OUT') && scope.row.repertoryState === false"
|
|
|
+ v-if="(currentNode.nodeCode === 'STATEMENT_OUT' || currentNode.nodeCode === 'REPORT_OUT') && scope.row.repertoryState === false && !disabledStatus"
|
|
|
type="text" size="small" @click="openWareHouseDialog(scope.row);">产品出库</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|