| | |
| | | package com.ruoyi.sales.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.basic.dto.SupplierManageDto; |
| | | import com.ruoyi.basic.excel.SupplierManageExcelDto; |
| | | import com.ruoyi.common.constant.Constants; |
| | | import com.ruoyi.common.utils.file.FileUploadUtils; |
| | | import com.ruoyi.common.utils.file.FileUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.vo.FileVo; |
| | | import com.ruoyi.sales.dto.InvoiceLedgerDto; |
| | | import com.ruoyi.sales.excel.InvoiceLedgerExcelDto; |
| | | import com.ruoyi.sales.mapper.InvoiceLedgerFileMapper; |
| | | import com.ruoyi.sales.mapper.InvoiceLedgerMapper; |
| | | import com.ruoyi.sales.mapper.ReceiptPaymentMapper; |
| | | import com.ruoyi.sales.pojo.InvoiceLedger; |
| | | import com.ruoyi.sales.pojo.InvoiceLedgerFile; |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | import com.ruoyi.sales.service.InvoiceLedgerService; |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | | import org.springframework.beans.BeanUtils; |
| | |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.ObjectUtils; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.File; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.YearMonth; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | import java.util.UUID; |
| | | import java.util.stream.Collectors; |
| | | |
| | | @Service |
| | |
| | | @Autowired |
| | | private InvoiceLedgerFileMapper invoiceLedgerFileMapper; |
| | | |
| | | @Autowired |
| | | private ReceiptPaymentMapper receiptPaymentMapper; |
| | | |
| | | /** |
| | | * 开票台账新增 |
| | | * @param invoiceLedgerDto |
| | |
| | | */ |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public int invoiceLedgerAdd(InvoiceLedgerDto invoiceLedgerDto) { |
| | | public int invoiceLedgerSaveOrUpdate(InvoiceLedgerDto invoiceLedgerDto) { |
| | | InvoiceLedger invoiceLedger = new InvoiceLedger(); |
| | | BeanUtils.copyProperties(invoiceLedgerDto, invoiceLedger); |
| | | int result = invoiceLedgerMapper.insert(invoiceLedger); |
| | | int result; |
| | | if(invoiceLedgerDto.getId() == null){ |
| | | result = invoiceLedgerMapper.insert(invoiceLedger); |
| | | }else { |
| | | result = invoiceLedgerMapper.updateById(invoiceLedger); |
| | | //删除所有附件关联 |
| | | LambdaQueryWrapper<InvoiceLedgerFile> delWrapper = new LambdaQueryWrapper<>(); |
| | | delWrapper.eq(InvoiceLedgerFile::getInvoiceLedgerId, invoiceLedgerDto.getId()); |
| | | invoiceLedgerFileMapper.delete(delWrapper); |
| | | } |
| | | List<FileVo> fileList = invoiceLedgerDto.getFileList(); |
| | | if(CollectionUtils.isNotEmpty(fileList)){ |
| | | fileList.forEach(fileVo -> { |
| | |
| | | LambdaQueryWrapper<InvoiceLedger> delWrapper = new LambdaQueryWrapper<>(); |
| | | delWrapper.in(InvoiceLedger::getId, ids); |
| | | return invoiceLedgerMapper.delete(delWrapper); |
| | | } |
| | | |
| | | /** |
| | | * 开票台账修改 |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public int invoiceLedgerUpdate(InvoiceLedgerDto invoiceLedgerDto) { |
| | | InvoiceLedger invoiceLedger = new InvoiceLedger(); |
| | | BeanUtils.copyProperties(invoiceLedgerDto, invoiceLedger); |
| | | int result = invoiceLedgerMapper.updateById(invoiceLedger); |
| | | // 删除关联附件 |
| | | LambdaQueryWrapper<InvoiceLedgerFile> delWrapper = new LambdaQueryWrapper<>(); |
| | | delWrapper.eq(InvoiceLedgerFile::getInvoiceLedgerId, invoiceLedger.getId()); |
| | | invoiceLedgerFileMapper.delete(delWrapper); |
| | | // 重新插入附件关联表 |
| | | List<FileVo> fileList = invoiceLedgerDto.getFileList(); |
| | | if(CollectionUtils.isNotEmpty(fileList)){ |
| | | fileList.forEach(fileVo -> { |
| | | InvoiceLedgerFile invoiceLedgerFile = new InvoiceLedgerFile(); |
| | | BeanUtils.copyProperties(fileVo, invoiceLedgerFile); |
| | | invoiceLedgerFile.setInvoiceLedgerId(invoiceLedger.getId()); |
| | | invoiceLedgerFileMapper.insert(invoiceLedgerFile); |
| | | }); |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | /** |
| | |
| | | FileVo fileVo = new FileVo(); |
| | | try { |
| | | String baseDir = uploadFile + File.separatorChar + "invoiceLedger"; |
| | | String filePath = FileUploadUtils.upload(baseDir, file); |
| | | fileVo.setFileName(file.getOriginalFilename()); |
| | | fileVo.setFilePath(filePath); |
| | | File dirFile = new File(baseDir); |
| | | if(!dirFile.exists()){ |
| | | dirFile.mkdirs(); |
| | | } |
| | | String filePath = baseDir + File.separatorChar + UUID.randomUUID() + "_" + file.getOriginalFilename(); |
| | | file.transferTo(new File(filePath)); |
| | | fileVo.setName(file.getOriginalFilename()); |
| | | fileVo.setUrl(filePath); |
| | | fileVo.setFileSize((int)file.getSize()); |
| | | }catch (Exception e){ |
| | | e.printStackTrace(); |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public void invoiceLedgerDownload(HttpServletResponse response, InvoiceLedgerDto invoiceLedgerDto) { |
| | | public void invoiceLedgerExport(HttpServletResponse response, InvoiceLedgerDto invoiceLedgerDto) { |
| | | List<InvoiceLedgerDto> invoiceLedgerDtoList = invoiceLedgerMapper.invoiceLedgerList(invoiceLedgerDto); |
| | | List<InvoiceLedgerExcelDto> invoiceLedgerExcelDtoList = invoiceLedgerDtoList.stream().map(item -> { |
| | | InvoiceLedgerExcelDto invoiceLedgerExcelDto = new InvoiceLedgerExcelDto(); |
| | |
| | | util.exportExcel(response, invoiceLedgerExcelDtoList, "供应商导出"); |
| | | } |
| | | |
| | | /** |
| | | * 开票台账详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @Override |
| | | public InvoiceLedgerDto invoiceLedgerDetail(Integer id) { |
| | | InvoiceLedgerDto invoiceLedgerDto = invoiceLedgerMapper.invoiceLedgerInfo(id); |
| | | if(ObjectUtils.isEmpty(invoiceLedgerDto)){ |
| | | throw new RuntimeException("开票台账查找失败"); |
| | | } |
| | | // 查询附件 |
| | | QueryWrapper<InvoiceLedgerFile> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("invoice_ledger_id", id); |
| | | List<InvoiceLedgerFile> invoiceLedgerFileList = invoiceLedgerFileMapper.selectList(queryWrapper); |
| | | List<FileVo> fileList = invoiceLedgerFileList.stream().map(item -> { |
| | | FileVo fileVo = new FileVo(); |
| | | BeanUtils.copyProperties(item, fileVo); |
| | | return fileVo; |
| | | }).collect(Collectors.toList()); |
| | | invoiceLedgerDto.setFileList(fileList); |
| | | return invoiceLedgerDto; |
| | | } |
| | | |
| | | /** |
| | | * 附件提交 |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public void invoiceLedgerCommitFile(InvoiceLedgerDto invoiceLedgerDto) { |
| | | if(null == invoiceLedgerDto.getId()){ |
| | | throw new RuntimeException("缺少发票台账主键"); |
| | | } |
| | | if(CollectionUtils.isEmpty(invoiceLedgerDto.getFileList())){ |
| | | throw new RuntimeException("缺少文件信息"); |
| | | } |
| | | List<FileVo> fileList = invoiceLedgerDto.getFileList(); |
| | | fileList.forEach(fileVo -> { |
| | | InvoiceLedgerFile invoiceLedgerFile = new InvoiceLedgerFile(); |
| | | BeanUtils.copyProperties(fileVo, invoiceLedgerFile); |
| | | invoiceLedgerFile.setInvoiceLedgerId(invoiceLedgerDto.getId()); |
| | | invoiceLedgerFileMapper.insert(invoiceLedgerFile); |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * 开票台账查询 |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<InvoiceLedgerDto> invoiceLedgerList(InvoiceLedgerDto invoiceLedgerDto) { |
| | | return invoiceLedgerMapper.invoiceLedgerList(invoiceLedgerDto); |
| | | } |
| | | |
| | | /** |
| | | * 客户销售记录 |
| | | * @param page |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public IPage<InvoiceLedgerDto> invoiceLedgerSalesAccount(Page page, InvoiceLedgerDto invoiceLedgerDto) { |
| | | IPage<InvoiceLedgerDto> invoiceLedgerDtoIPage = invoiceLedgerMapper.invoiceLedgerSalesAccount(page, invoiceLedgerDto); |
| | | for (InvoiceLedgerDto record : invoiceLedgerDtoIPage.getRecords()) { |
| | | QueryWrapper<ReceiptPayment> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("customer_id", record.getCustomerId()); |
| | | List<ReceiptPayment> receiptPaymentList = receiptPaymentMapper.selectList(queryWrapper); |
| | | BigDecimal totalAmount = BigDecimal.ZERO; |
| | | if(!CollectionUtils.isEmpty(receiptPaymentList)){ |
| | | for (ReceiptPayment receiptPayment : receiptPaymentList) { |
| | | totalAmount = totalAmount.add(receiptPayment.getInvoiceAmount()); |
| | | } |
| | | } |
| | | BigDecimal unReceiptPaymentAmount = record.getInvoiceAmount().subtract(totalAmount); |
| | | record.setReceiptPaymentAmount(totalAmount); |
| | | record.setUnReceiptPaymentAmount(unReceiptPaymentAmount); |
| | | } |
| | | return invoiceLedgerDtoIPage; |
| | | } |
| | | |
| | | @Override |
| | | public BigDecimal getInvoiceAmount() { |
| | | LocalDate now = LocalDate.now(); |
| | | YearMonth currentMonth = YearMonth.from(now); |
| | | |
| | | // 创建LambdaQueryWrapper |
| | | LambdaQueryWrapper<InvoiceLedger> queryWrapper = new LambdaQueryWrapper<>(); |
| | | queryWrapper.ge(InvoiceLedger::getInvoiceDate, currentMonth.atDay(1).atStartOfDay()) // 大于等于本月第一天 |
| | | .lt(InvoiceLedger::getInvoiceDate, currentMonth.plusMonths(1).atDay(1).atStartOfDay()); // 小于下月第一天 |
| | | |
| | | // 执行查询并计算总和 |
| | | List<InvoiceLedger> invoiceLedgers = invoiceLedgerMapper.selectList(queryWrapper); |
| | | |
| | | BigDecimal totalContractAmount = invoiceLedgers.stream() |
| | | .map(InvoiceLedger::getInvoiceAmount) |
| | | .filter(Objects::nonNull) |
| | | .reduce(BigDecimal.ZERO, BigDecimal::add); |
| | | |
| | | return totalContractAmount; |
| | | } |
| | | |
| | | } |