From d420578cb8bc076be2f0c7dd5a4dbfca335d7cdb Mon Sep 17 00:00:00 2001
From: zhang_nuo <zhang_12370@163.com>
Date: 星期一, 17 八月 2026 21:44:51 +0800
Subject: [PATCH] feat(personnel,production): 新增年龄自动计算及工单数量支持小数

---
 src/api/procurementManagement/paymentLedger.js |   43 +++++++++++++++++++++++++++++++++++--------
 1 files changed, 35 insertions(+), 8 deletions(-)

diff --git a/src/api/procurementManagement/paymentLedger.js b/src/api/procurementManagement/paymentLedger.js
index 12b2754..00575db 100644
--- a/src/api/procurementManagement/paymentLedger.js
+++ b/src/api/procurementManagement/paymentLedger.js
@@ -1,11 +1,38 @@
 // 閲囪喘鍙拌处椤甸潰鎺ュ彛
-import request from '@/utils/request'
+import request from "@/utils/request";
 
-// 鍒嗛〉鏌ヨ
+/** 浠樻鍙拌处 - 渚涘簲鍟嗗線鏉ユ眹鎬� */
 export function paymentLedgerList(query) {
-    return request({
-        url: '/purchase/paymentRegistration/paymentLedgerList',
-        method: 'get',
-        params: query
-    })
-}
\ No newline at end of file
+  return request({
+    url: "/purchase/report/supplierTransactions",
+    method: "get",
+    params: query,
+  });
+}
+
+/** 浠樻鍙拌处 - 渚涘簲鍟嗗線鏉ユ槑缁� */
+export function paymentRecordList(params) {
+  return request({
+    url: "/purchase/report/supplierTransactionsDetails",
+    method: "get",
+    params,
+  });
+}
+
+/** 浠樻鍙拌处 - 浠樻鐧昏鍒楄〃 */
+export function registrationList(params) {
+  return request({
+    url: "/purchase/report/registration",
+    method: "get",
+    params,
+  });
+}
+
+/** 鏂板浠樻 */
+export function savePayment(data) {
+  return request({
+    url: "/purchase/report/savePayment",
+    method: "post",
+    data,
+  });
+}

--
Gitblit v1.9.3