油漆线到货梯

This commit is contained in:
qinx
2023-02-18 17:25:16 +08:00
parent 2e70333818
commit f0c910718b
2 changed files with 4 additions and 2 deletions

View File

@@ -54,7 +54,7 @@
AND is_used = '1'
AND is_delete = '0'
AND point_status = '1'
and (point_code = 'SSX01A2' or point_code = 'SSX02A1')
and (point_code = 'SSX01B1' or point_code = 'SSX02B1')
ENDSELECT
ENDQUERY
ENDIF
@@ -66,6 +66,8 @@
SCH_BASE_Point p
WHERE
region_code = 'SSX01'
and point_code <>'SSX01'
and point_code <>'SSX02'
ENDSELECT
ENDQUERY
ENDIF

View File

@@ -36,7 +36,7 @@ public class PointUpdateUtil {
pointTable.update(pointObj2);
} else if (pointObj2.getString("region_code").equals(RegionTypeEnum.SSX.getCode())) {
String move = pointObj.getString("move");
pointObj2.put("point_status", Integer.getInteger(move) + 1);
pointObj2.put("point_status", Integer.parseInt(move) + 1);
pointTable.update(pointObj2);
}
}