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

This commit is contained in:
cabbage 2025-08-08 14:48:23 +08:00
parent ff4a973a08
commit a45391d798
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

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