Browse Source

fix 注释

master
张江玮 1 year ago
parent
commit
79fcd718b5
  1. 8
      lms/nladmin-system/src/main/java/org/nl/wms/sch/task/util/TaskUtils.java

8
lms/nladmin-system/src/main/java/org/nl/wms/sch/task/util/TaskUtils.java

@ -23,12 +23,6 @@ import java.util.regex.Pattern;
*/ */
public class TaskUtils { public class TaskUtils {
public static void isEmptyPoint(JSONObject point) {
if (PointStatus.NOT_EMPTY.value().equals(point.getString("point_status"))) {
throw new BadRequestException("[" + point.getString("point_code") + "] 上有货!");
}
}
public static void isNotEmptyPoint(JSONObject point) { public static void isNotEmptyPoint(JSONObject point) {
if (PointStatus.EMPTY.value().equals(point.getString("point_status"))) { if (PointStatus.EMPTY.value().equals(point.getString("point_status"))) {
throw new BadRequestException("[" + point.getString("point_code") + "] 上无货!"); throw new BadRequestException("[" + point.getString("point_code") + "] 上无货!");
@ -243,7 +237,7 @@ public class TaskUtils {
static String[] month = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "N", "D"}; static String[] month = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "N", "D"};
/** /**
* 生成喷码内容 * 生成喷码内容祥见 SVN 项目文档信息
* *
* @param vd 组盘对象 * @param vd 组盘对象
* @param yjCode 压机编码 * @param yjCode 压机编码

Loading…
Cancel
Save