From 728a54cc02ff66e38bc8719ecc0f3155e597084c Mon Sep 17 00:00:00 2001 From: zhangmei <645025773@qq.com> Date: 星期五, 14 二月 2025 15:27:56 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang into xizang-changyun --- 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