流程管家放MOVENO的BUG

yun-zuoyi
许心洁 6 years ago
parent 02734d33f9
commit f6bf244b12

@ -896,12 +896,15 @@ public class WmsEnumUtil {
} }
public static STOCK_SN_QC_STATUS codeOf(Integer value) { public static STOCK_SN_QC_STATUS codeOf(Integer value) {
int tmp = 1; if (value == null) {
return null;
} else {
for (int i = 0; i < values().length; i++) { for (int i = 0; i < values().length; i++) {
if (values()[i].value == value) { if (values()[i].value == value) {
return values()[i]; return values()[i];
} }
} }
}
return null; return null;
} }
} }

Loading…
Cancel
Save