From be9e92d2c30fdfeed4bdd3a5aea2c84bd93f61f4 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期三, 15 十月 2025 16:23:24 +0800
Subject: [PATCH] bug修改

---
 ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TErpClinicWarehousingServiceImpl.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TErpClinicWarehousingServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TErpClinicWarehousingServiceImpl.java
index 587e81a..e8fe9f1 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TErpClinicWarehousingServiceImpl.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TErpClinicWarehousingServiceImpl.java
@@ -266,8 +266,8 @@
                     .last("LIMIT 1"));
             supplierClinicId = crmClinic.getId();
         }
-        // 获取当前时间后9个月的时间
-        LocalDateTime nineMonthLater = LocalDateTime.now().plusMonths(9);
+        // 获取当前时间后1个月的时间
+        LocalDateTime nineMonthLater = LocalDateTime.now().plusMonths(1);
 
         PageInfo<ValidityPeriodWarningVo> pageInfo = new PageInfo<>(query.getPageNum(), query.getPageSize());
 
@@ -410,7 +410,7 @@
             }
 
 
-            totalPrice = totalPrice.add(dto.getSalesAmount().multiply(new BigDecimal(dto.getPurchaseCount())));
+            totalPrice = totalPrice.add(dto.getUnitAmount().multiply(new BigDecimal(dto.getPurchaseCount())));
         }
         tErpClinicWarehousing.setTotalPrice(totalPrice);
         String name = names.stream().collect(Collectors.joining(","));

--
Gitblit v1.7.1