fix(wms/coil/report): 修复并优化报表与钢卷面板功能

1.  钢卷列表新增发货业务员列与绑定负责人显示
2.  修复异常弹窗标签空格格式问题
3.  替换报表旧接口为listForPeriodComparison
4.  新增lossCoilIds变量优化盘亏数据获取逻辑
5.  优化导出功能的线圈ID获取方式
This commit is contained in:
2026-06-23 16:24:34 +08:00
parent 9fd96c3cf5
commit 6cf855b004
2 changed files with 21 additions and 11 deletions

View File

@@ -177,6 +177,11 @@
</el-table-column>
<el-table-column label="业务员" align="center" prop="saleName" width="60" />
<el-table-column label="合同号" align="center" prop="contractNo" width="120" />
<el-table-column v-if="showWaybill" label="发货业务员" align="center" prop="exportByName" width="100">
<template slot-scope="scope">
{{ scope.row.bindPrincipal || '-' }}
</template>
</el-table-column>
<el-table-column v-if="showAbnormal" label="异常数量" align="center" prop="abnormalCount"></el-table-column>
<el-table-column label="长度 (米)" align="center" prop="length" v-if="showLength" />
<el-table-column label="发货时间" v-if="showExportTime" align="center" prop="exportTime" width="205">
@@ -911,7 +916,7 @@
</el-dialog>
<el-dialog title="钢卷异常信息" :visible.sync="abmornal.visible" fullscreen>
<exception-manager :coilId="currentCoilId" :show-inherit-button="true"/>
<exception-manager :coilId="currentCoilId" :show-inherit-button="true" />
</el-dialog>
</div>
</template>