|
|
@@ -308,6 +308,19 @@ public class IBPSRepository {
|
|
|
return retVal;
|
|
|
}
|
|
|
|
|
|
+ public String getPosiByName(String positionName) {
|
|
|
+ String retVal = positionName;
|
|
|
+ for (Map<String, Object> map : posiList) {
|
|
|
+ Object nameObj = map.get("NAME_");
|
|
|
+ if (nameObj != null && String.valueOf(nameObj).contains(positionName)) {
|
|
|
+ Object idObj = map.get("ID_");
|
|
|
+ retVal = idObj != null ? String.valueOf(idObj) : "-1";
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retVal;
|
|
|
+ }
|
|
|
+
|
|
|
public List<Map<String, Object>> getUndoQualityIndicator(){
|
|
|
List<Map<String, Object>> retList = new ArrayList<>();
|
|
|
String sqlStr = "select id_,bian_zhi_shi_jian,zhi_liang_mu_biao,zhi_liang_zhi_bia,yuan_shi_shu_ju_,bei_zhu_ from t_zlzbpjzb where zhuang_tai_='待处理' and bei_zhu_ like 'LIS导入%'";
|