From 7a42bcb487d93f75a6f3f2262e803b2aee88698c Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期一, 17 二月 2025 14:38:04 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang --- ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TInvoiceServiceImpl.java | 13 ------------- 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TInvoiceServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TInvoiceServiceImpl.java index c602c6b..81c4fdf 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TInvoiceServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TInvoiceServiceImpl.java @@ -55,17 +55,4 @@ .orderByDesc(TInvoice::getCreateTime); return this.baseMapper.selectList(queryWrapper); } - - @Override - public List<TBill> getBillByInvoiceId( String invoiceId){ - ArrayList<TBill> bills = new ArrayList<>(); - TInvoiceToBillQuery query = new TInvoiceToBillQuery(); - query.setInvoiceId(invoiceId); - List<TInvoiceToBill> tInvoiceToBills = tInvoiceToBillService.makeQuery(query); - for (TInvoiceToBill tInvoiceToBill : tInvoiceToBills) { - TBill byId = tBillService.getById(tInvoiceToBill.getBillId()); - bills.add(byId); - } - return bills; - } } -- Gitblit v1.7.1