部门模块功能开发

This commit is contained in:
lizhenhua 2026-01-30 11:15:58 +08:00
parent b70332b45a
commit ba94dd3b5c
1 changed files with 8 additions and 0 deletions

View File

@ -177,6 +177,13 @@
<span>{{ formatMoney((scope.row.intoAmount || 0) / 100) }}</span> <span>{{ formatMoney((scope.row.intoAmount || 0) / 100) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="是否退单" align="center" prop="recordTypeFlag" width="120">
<template slot-scope="scope">
<span :style="scope.row.recordTypeFlag === 1 ? 'color: red' : ''">
{{ scope.row.recordTypeFlag === 1 ? '退单' : '正常' }}
</span>
</template>
</el-table-column>
<el-table-column label="结存数量" align="center" prop="balanceNum" width="100"> <el-table-column label="结存数量" align="center" prop="balanceNum" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ formatNumber(scope.row.balanceNum) }}</span> <span>{{ formatNumber(scope.row.balanceNum) }}</span>
@ -748,6 +755,7 @@ export default {
{ prop: 'intoDate', label: '出库时间', width: 160 }, { prop: 'intoDate', label: '出库时间', width: 160 },
{ prop: 'intoNum', label: '出库数量', width: 100 }, { prop: 'intoNum', label: '出库数量', width: 100 },
{ prop: 'intoAmount', label: '出库金额(元)', width: 120 }, { prop: 'intoAmount', label: '出库金额(元)', width: 120 },
{ prop: 'recordTypeFlag', label: '关联编号', width: 100 },
{ prop: 'balanceNum', label: '结存数量', width: 100 }, { prop: 'balanceNum', label: '结存数量', width: 100 },
{ prop: 'balanceAmount', label: '结存金额(元)', width: 120 }, { prop: 'balanceAmount', label: '结存金额(元)', width: 120 },
{ prop: 'productionDate', label: '生产日期', width: 120 }, { prop: 'productionDate', label: '生产日期', width: 120 },