## 产品列表添加仓储编号显示及查询条件;

This commit is contained in:
cabbage 2025-08-08 14:48:23 +08:00
parent ac582f5ac1
commit c0676a754f
2 changed files with 2 additions and 2 deletions

View File

@ -429,7 +429,7 @@
<select id="listProductShippingDetail" resultType="com.hzs.report.member.vo.ProductShippingDetailsVO">
select #{param.wmsCode} wmsCode,
soi.pk_product,
so.order_type,
so.order_type specialArea,
soi.is_maker_gift,
sum(soi.quantity) quantity
from sa_order so

View File

@ -33,7 +33,7 @@ public enum EWaresType {
private final String key;
public static String getLabelByValue(Integer value) {
if (null != value) {
if (null == value) {
return "";
}
for (EWaresType enums : EWaresType.values()) {