采购合同编辑提示 详情问题

master
Harry Yang 2023-01-05 19:32:50 +08:00
parent d6f62e53ce
commit 665bc8b27c
2 changed files with 5 additions and 3 deletions

View File

@ -133,7 +133,9 @@
</el-button>
<#if isAdmin>
<#--判断是不是管理员本人的-->
<el-button v-if="scope.row.applyPersonId===${adminId}" type="text" @click="editProcess(scope.row, scope)">编辑
<el-button
v-if="(scope.row.status==='draft' || scope.row.status==='audit_not_passed') && scope.row.applyPersonId===${adminId}"
type="text" @click="editProcess(scope.row, scope)">编辑
</el-button>
<#else>
<el-button v-if="scope.row.status==='draft' || scope.row.status==='audit_not_passed'"
@ -144,7 +146,7 @@
<#if isAdmin>
<#--判断是不是管理员本人的-->
<el-button v-if="scope.row.applyPersonId===${adminId}" type="text"
<el-button v-if="scope.row.status==='draft' && scope.row.applyPersonId===${adminId}" type="text"
@click="deleteProcess(scope.row, scope)">删除
</el-button>
<#else>

View File

@ -250,7 +250,7 @@
<el-table-column prop="totalTaxInclude_" label="含税总金额(元)" width="120"></el-table-column>
<el-table-column prop="totalTaxExclude" label="不含税金额(元)" width="120"></el-table-column>
<el-table-column prop="totalTax" label="税金(元)" width="110"></el-table-column>
<el-table-column prop="isUnderwritten" label="是否垫资"></el-table-column>
<el-table-column prop="isUnderwrittenDesc" label="是否垫资"></el-table-column>
<el-table-column prop="payTime" label="支出时间" width="160"></el-table-column>
<el-table-column prop="payAmount" label="支出金额(元)" width="120"></el-table-column>
<el-table-column prop="amountAlready" label="已采购数量" width="100"></el-table-column>