src/views/salesManagement/receiptPaymentLedger/index.vue
@@ -142,6 +142,8 @@
          :data="salesRecord"
          border
          :row-key="(row) => row.id"
          show-summary
          :summary-method="summarizeSalesTable"
          height="calc(100vh - 18.5em)"
        >
          <el-table-column align="center" label="序号" type="index" width="60" />
@@ -247,6 +249,18 @@
  return summarizeTable;
};
// 销售往来表合计(已发货/未发货)
const summarizeSalesTable = (param) => {
  return proxy.summarizeTable(
    param,
    ["shippedQuantity", "unshippedQuantity"],
    {
      shippedQuantity: { noDecimal: false },
      unshippedQuantity: { noDecimal: false },
    }
  );
};
const receiptPaymentList = (id) => {
  const param = {
    customerId: id,