From 0ab9dfd8f122195e4e9f09bd50c59e0a47450bec Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期三, 19 三月 2025 15:50:03 +0800 Subject: [PATCH] fix: resolve merge conflicts in .gitignore --- ruoyi-applet/src/main/java/com/ruoyi/web/controller/api/TBillController.java | 48 +++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 39 insertions(+), 9 deletions(-) diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/api/TBillController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/api/TBillController.java index 9212a3e..2ab98bb 100644 --- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/api/TBillController.java +++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/api/TBillController.java @@ -1,14 +1,17 @@ package com.ruoyi.web.controller.api; +import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.ruoyi.common.basic.PageInfo; import com.ruoyi.common.constant.DictConstants; import com.ruoyi.common.core.domain.R; import com.ruoyi.common.exception.ServiceException; +import com.ruoyi.common.utils.CodeGenerateUtils; import com.ruoyi.common.utils.DictUtils; import com.ruoyi.common.utils.StringUtils; import com.ruoyi.framework.web.service.TokenService; +import com.ruoyi.system.dto.BatchBillDTO; import com.ruoyi.system.dto.TBillDto; import com.ruoyi.system.dto.TInvoiceDTO; import com.ruoyi.system.model.*; @@ -21,6 +24,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; +import java.time.LocalDateTime; +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.List; @@ -51,25 +56,44 @@ TInvoiceToBillService invoiceToBillService; @Autowired TokenService tokenService; + @Autowired + TTenantService tenantService; @ApiOperation(value = "缴费账单查询分页列表") @PostMapping("list") public R<PageInfo<TBillDto>> list(@RequestBody TBillQuery query){ - if (StringUtils.isEmpty(query.getUserId())){ - throw new ServiceException("用户ID不能为空"); - } + String userId = tokenService.getLoginUserApplet().getUserId(); + query.setUserId(userId); PageInfo<TBillDto> pageInfo = tBillService.queryPage(query); return R.ok(pageInfo); + } + + public static void main(String[] args) { + LocalDateTime localDateTime1 = LocalDateTime.now().withYear(2025).withMonth(11).withDayOfMonth(1); + LocalDateTime localDateTime2 = LocalDateTime.now().withYear(2025).withMonth(11).withDayOfMonth(28); + long allDays = ChronoUnit.DAYS.between(localDateTime1, localDateTime2); + System.err.println(allDays); } @ApiOperation(value = "缴费账单查询列表") @PostMapping("/getBillIds") public R<List<String>> getBillIds(@RequestBody TBillQuery query){ - if (StringUtils.isEmpty(query.getUserId())){ - throw new ServiceException("用户ID不能为空"); - } + String userId = tokenService.getLoginUserApplet().getUserId(); + query.setUserId(userId); List<String> billIds = tBillService.getBillIds(query); return R.ok(billIds); + } + + @ApiOperation(value = "跳转批量缴费") + @PostMapping("/batchBill") + public R<String> batchBill(@RequestBody BatchBillDTO dto){ + String userId = tokenService.getLoginUserApplet().getUserId(); + List<String> billIds = dto.getBillIds(); + Integer count = tBillService.batchBillCount(userId, billIds); + if(count>0){ + return R.fail("请优先缴纳水电费"); + } + return R.ok(); } @ApiOperation(value = "查看缴费账单详情") @@ -97,13 +121,20 @@ billVO.setConcatEndTime(contract.getEndTime()); }); billVO.setBillType(DictUtils.getDictLabel(DictConstants.DICT_TYPE_BILL_TYPE,billVO.getBillType())); - billVO.setPayFeesStatus(DictUtils.getDictLabel(DictConstants.DICT_TYPE_PAY_FEES_STATUS,billVO.getPayFeesStatus())); +// billVO.setPayFeesStatus(DictUtils.getDictLabel(DictConstants.DICT_TYPE_PAY_FEES_STATUS,billVO.getPayFeesStatus())); return R.ok(billVO); } @ApiOperation(value = "缴费账单开票") @PostMapping(value = "/invoice") public R<String> invoice(@RequestBody TInvoiceDTO dto) { + String userId = tokenService.getLoginUserApplet().getUserId(); + dto.setApplyName(tenantService.getById(userId).getResidentName()); + String code; + do { + code = CodeGenerateUtils.generateVolumeSn(); + } while (invoiceService.count(Wrappers.lambdaQuery(TInvoice.class).eq(TInvoice::getInvoiceNumber, code)) > 0); + dto.setInvoiceNumber(CodeGenerateUtils.generateVolumeSn()); // 添加开票信息 invoiceService.save(dto); @@ -124,8 +155,7 @@ @PostMapping(value = "/invoiceList") public R<PageInfo<TBillDto>> invoiceList(@RequestBody TBillQuery query) { -// Long userId = tokenService.getLoginUser().getUserId(); - String userId = "1881967035070177281"; + String userId = tokenService.getLoginUserApplet().getUserId(); query.setUserId(userId); PageInfo<TBillDto> pageInfo = tBillService.invoiceList(query); return R.ok(pageInfo); -- Gitblit v1.7.1