From a23eed7d5635c5cef8ad60762f572cb2eef1ead1 Mon Sep 17 00:00:00 2001 From: futian.liu <liufutianyoo@163.com> Date: 星期五, 22 十二月 2023 14:35:55 +0800 Subject: [PATCH] 物品统计表中总数量改为在库数量+报废数量 --- consum-base/src/main/java/com/consum/base/service/LOrgSupplierServiceImpl.java | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/consum-base/src/main/java/com/consum/base/service/LOrgSupplierServiceImpl.java b/consum-base/src/main/java/com/consum/base/service/LOrgSupplierServiceImpl.java index 6838105..3575907 100644 --- a/consum-base/src/main/java/com/consum/base/service/LOrgSupplierServiceImpl.java +++ b/consum-base/src/main/java/com/consum/base/service/LOrgSupplierServiceImpl.java @@ -1,18 +1,20 @@ package com.consum.base.service; -import com.walker.jdbc.service.BaseServiceImpl; -import lombok.extern.slf4j.Slf4j; -import org.apache.commons.lang3.StringUtils; -import org.springframework.stereotype.Service; -import org.springframework.util.CollectionUtils; - import java.util.HashMap; import java.util.List; import java.util.Map; +import org.apache.commons.lang3.StringUtils; +import org.springframework.stereotype.Service; +import org.springframework.util.CollectionUtils; + +import com.walker.jdbc.service.BaseServiceImpl; + +import lombok.extern.slf4j.Slf4j; + /** * @ClassName LOrgSupplierServiceImpl - + * * @Date 2023/11/1 * @Description * @Version 1.0 -- Gitblit v1.9.1