应发工资 = 工资+应增-应扣

This commit is contained in:
MaxKey
2025-06-15 18:36:06 +08:00
parent 271cf160d3
commit f142f7352c
11 changed files with 71 additions and 10 deletions

View File

@ -171,6 +171,12 @@
<template #default="scope">
{{ formatAmount(scope.row.taxDeduction) }}
</template>
</el-table-column>
<el-table-column prop="payAmount" label="应发工资" align="right" width="110"
:show-overflow-tooltip="true">
<template #default="scope">
{{ formatAmount(scope.row.payAmount) }}
</template>
</el-table-column>
<el-table-column prop="taxableWages" label="应税工资" align="right" width="110"
:show-overflow-tooltip="true">

View File

@ -49,14 +49,14 @@
</el-form-item>
</el-col>
</el-row>
<h4 class="section-title" style="color: dodgerblue">应发金额 {{(form.payBasic +
<h4 class="section-title" style="color: dodgerblue">工资金额 {{(form.payBasic +
form.payPost +
form.payMerit +
form.laborFee +
form.bonus +
form.overtime +
form.allowance +
form.backPay).toFixed(2)}}</h4>
form.backPay).toFixed(2)}} 应发金额 {{(form.payAmount||0.00).toFixed(2)}}</h4>
<el-row :gutter="20">
<el-col :span="span" v-if="form.employeeType !== 'PARTTIME'">
<el-form-item label="基本工资">

View File

@ -187,6 +187,12 @@
{{ formatAmount(scope.row.taxDeduction) }}
</template>
</el-table-column>
<el-table-column prop="payAmount" label="应发工资" align="center" width="110"
:show-overflow-tooltip="true">
<template #default="scope">
{{ formatAmount(scope.row.payAmount) }}
</template>
</el-table-column>
<el-table-column prop="taxableWages" label="应税工资" align="center" width="110"
:show-overflow-tooltip="true">
<template #default="scope">

View File

@ -162,12 +162,19 @@
{{ formatAmount(scope.row.taxDeduction) }}
</template>
</el-table-column>
<el-table-column prop="taxableWages" label="应税工资" align="center" width="110"
:show-overflow-tooltip="true">
<template #default="scope">
{{ formatAmount(scope.row.taxableWages) }}
</template>
</el-table-column>-->
-->
<el-table-column prop="payAmount" label="应发工资" align="right" width="110"
:show-overflow-tooltip="true">
<template #default="scope">
{{ formatAmount(scope.row.payAmount) }}
</template>
</el-table-column>
<el-table-column prop="taxableWages" label="应税工资" align="center" width="110"
:show-overflow-tooltip="true">
<template #default="scope">
{{ formatAmount(scope.row.taxableWages) }}
</template>
</el-table-column>
<el-table-column prop="totalAmount" label="实发合计" align="center" width="110"
:show-overflow-tooltip="true">
<template #default="scope">