|
@@ -482,13 +482,13 @@
|
|
{{scope.row.projectName}}
|
|
{{scope.row.projectName}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="contractAmount" :label="user.companyId == 4811 ? '项目总收入' : $t('contractamount')" width="100" align="right">
|
|
|
|
|
|
+ <el-table-column prop="contractAmount" :label="$t('contractamount')" width="100" align="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{scope.row.contractAmount.toFixed(2)}}
|
|
{{scope.row.contractAmount.toFixed(2)}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<!--开通合同管理模块的显示已回款金额-->
|
|
<!--开通合同管理模块的显示已回款金额-->
|
|
- <el-table-column prop="payment" :label="$t('yi-hui-kuan-jin-e')" width="100" align="right" v-if="user.company.packageContract==1">
|
|
|
|
|
|
+ <el-table-column prop="payment" :label="$t('yi-hui-kuan-jin-e')" width="100" align="right" v-if="user.company.packageContract==1 && user.companyId != 4811">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{scope.row.payment.toFixed(2)}}
|
|
{{scope.row.payment.toFixed(2)}}
|
|
</template>
|
|
</template>
|
|
@@ -509,7 +509,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
- <el-table-column :label="user.companyId == 4811 ? '项目总支出' : $t('totalcostos')" width="100" align="right">
|
|
|
|
|
|
+ <el-table-column :label="$t('totalcostos')" width="100" align="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<template v-if="user.companyId != 4811">{{(scope.row.budget).toFixed(2)}}</template>
|
|
<template v-if="user.companyId != 4811">{{(scope.row.budget).toFixed(2)}}</template>
|
|
<template v-else>
|
|
<template v-else>
|
|
@@ -517,7 +517,7 @@
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column :label="$t('yiHuiKuanLiRun')" width="100" align="right" v-if="user.company.packageContract == 1 && user.companyId != 4811">
|
|
|
|
|
|
+ <el-table-column :label="$t('yiHuiKuanLiRun')" width="100" align="right" v-if="user.company.packageContract == 1 && user.companyId != 4811">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{((scope.row.payment==null?0:scope.row.payment) - (scope.row.budget)).toFixed(2)}}
|
|
{{((scope.row.payment==null?0:scope.row.payment) - (scope.row.budget)).toFixed(2)}}
|
|
</template>
|
|
</template>
|
|
@@ -527,7 +527,7 @@
|
|
{{(scope.row.payment==null||scope.row.payment==0)?'-':((scope.row.payment - scope.row.budget)*100/scope.row.payment).toFixed(1)+"%"}}
|
|
{{(scope.row.payment==null||scope.row.payment==0)?'-':((scope.row.payment - scope.row.budget)*100/scope.row.payment).toFixed(1)+"%"}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column :label="user.companyId == 4811 ? '结余' : $t('heTongLiRun')" width="100" align="right">
|
|
|
|
|
|
+ <el-table-column :label="$t('heTongLiRun')" width="100" align="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{((scope.row.contractAmount==null?0:scope.row.contractAmount) - scope.row.budget).toFixed(2)}}
|
|
{{((scope.row.contractAmount==null?0:scope.row.contractAmount) - scope.row.budget).toFixed(2)}}
|
|
</template>
|
|
</template>
|