buhuazhen
9 小时以前 1dced66c33122db330035bf2bc5b19c4936b2dd1
fix(销售管理): 修复收款付款历史列表展开时参数错误

将 invoiceLedgerId 参数从 row.id 更正为 row.salesLedgerId,以匹配正确的数据字段,确保展开时能正确获取相关历史记录。
已修改1个文件
2 ■■■ 文件已修改
src/views/salesManagement/receiptPayment/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/salesManagement/receiptPayment/index.vue
@@ -374,7 +374,7 @@
    expandedRowKeys.value = [];
    try {
      receiptPaymentHistoryListNoPage({
        invoiceLedgerId: row.id,
        invoiceLedgerId: row.salesLedgerId,
        type: 1,
      }).then((res) => {
        const index = tableData.value.findIndex((item) => item.id === row.id);