|
|
|
@ -310,7 +310,7 @@ public class DBManipulationPane extends BasicBeanPane<DBManipulation> {
|
|
|
|
|
protected void setBorderAndLayout(JPanel jPanel){ |
|
|
|
|
jPanel.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
|
jPanel.setBorder(BorderFactory.createTitledBorder( |
|
|
|
|
new ModLineBorder(ModLineBorder.TOP), Inter.getLocText(new String[]{"Submit", "Condition"}))); |
|
|
|
|
new ModLineBorder(ModLineBorder.TOP), Inter.getLocText("Fine-Designer_Submit_Condition"))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void addComponent(JPanel mainPane,JScrollPane addPane){ |
|
|
|
@ -465,6 +465,11 @@ public class DBManipulationPane extends BasicBeanPane<DBManipulation> {
|
|
|
|
|
// Richie:初始化
|
|
|
|
|
int returnValue = DEFAULT_RETURN_VALUE; |
|
|
|
|
int coverNumber = 0; |
|
|
|
|
|
|
|
|
|
if (!keyColumnNameValueList.isEmpty()) { |
|
|
|
|
//如果存在先前项,设置状态为5
|
|
|
|
|
returnValue = 5 ; |
|
|
|
|
} |
|
|
|
|
for (int i = 0; i < selected.length; i++) { |
|
|
|
|
if (returnValue == 0 || returnValue == 3) { |
|
|
|
|
break; |
|
|
|
@ -526,7 +531,12 @@ public class DBManipulationPane extends BasicBeanPane<DBManipulation> {
|
|
|
|
|
for (int i = 0; i < selected.length; i++) { |
|
|
|
|
model.addKeyColumnNameValue(newKeyColumnNameValueList.get(i)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else if (returnValue == 5){ |
|
|
|
|
//新选项和原来没有重复项的情况,产品确认:只做全量增加,原有的清除
|
|
|
|
|
for (int i = 0; i < selected.length; i++) { |
|
|
|
|
model.addKeyColumnNameValue(newKeyColumnNameValueList.get(i)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Richie:初始化
|
|
|
|
|
if (keyColumnNameValueList.isEmpty()) { |
|
|
|
@ -534,12 +544,8 @@ public class DBManipulationPane extends BasicBeanPane<DBManipulation> {
|
|
|
|
|
for (int i = 0; i < selected.length; i++) { |
|
|
|
|
model.addKeyColumnNameValue(new KeyColumnNameValue(false, (ColumnName)selected[i], new ColumnValue(""), false)); |
|
|
|
|
} |
|
|
|
|
}else if (returnValue == 4){ |
|
|
|
|
//新选项和原来没有重复项的情况,产品确认:只做全量增加,原有的清除
|
|
|
|
|
for (int i = 0; i < selected.length; i++) { |
|
|
|
|
model.addKeyColumnNameValue(newKeyColumnNameValueList.get(i)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
model.fireTableDataChanged(); |
|
|
|
|
keyColumnValuesTable.validate(); |
|
|
|
|
} |
|
|
|
|