fix:逻辑优化

This commit is contained in:
zhengxuming
2025-08-27 15:57:42 +08:00
parent 2a83b23108
commit 0203a6618e

View File

@@ -357,7 +357,7 @@ public class PdaIosOutServiceImpl implements PdaIosOutService {
@Override
public PdaResponse pickUp(JSONObject whereJson) {
if (!"1".equals(whereJson.getString("point_status")) && "2".equals(whereJson.getString("point_status"))) {
if (!"1".equals(whereJson.getString("point_status")) && !"2".equals(whereJson.getString("point_status"))) {
throw new BadRequestException("确认取货功能只能将点位设置成空载具/空位");
}