zhangwencui
2026-06-30 c7043051efed6648a4ae3d9aceaa70fc34171a58
src/api/procurementManagement/paymentLedger.js
@@ -4,16 +4,17 @@
// 分页查询
export function paymentLedgerList(query) {
  return request({
    url: "/purchase/paymentRegistration/paymentLedgerList",
    url: "/purchase/report/supplierTransactions",
    method: "get",
    params: query,
  });
}
// 分页查询
export function paymentRecordList(supplierId) {
export function paymentRecordList(params) {
  return request({
    url: "/purchase/paymentRegistration/getPaymentRecordList/" + supplierId,
    url: "/purchase/report/supplierTransactionsDetails",
    method: "get",
    params,
  });
}