| | |
| | | // 采购台账页面接口 |
| | | import request from "@/utils/request"; |
| | | |
| | | // 分页查询 |
| | | /** 付款台账 - 供应商往来汇总 */ |
| | | 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, |
| | | }); |
| | | } |