From 02c65a3db81026b8b3b322d921ddf46e47f981fa Mon Sep 17 00:00:00 2001 From: zhangmei <645025773@qq.com> Date: 星期五, 14 二月 2025 14:11:30 +0800 Subject: [PATCH] 开票信息 --- 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