| | |
| | | JComboBox<JComboBoxItem> comboBox1 = new JComboBox<>(statusList); |
| | | comboBox1.setPreferredSize(new Dimension(185, 28)); |
| | | if (data.getCurrentStatus() != null) { |
| | | comboBox0.setSelectedItem(new JComboBoxItem(data.getCurrentStatus().longValue(), statusMap.get(data.getCurrentStatus()))); |
| | | comboBox1.setSelectedItem(statusList[data.getCurrentStatus()]); |
| | | } |
| | | |
| | | |
| | |
| | | JComboBox<JComboBoxItem> comboBox2 = new JComboBox<>(hasDelayRiskList); |
| | | comboBox2.setPreferredSize(new Dimension(185, 28)); |
| | | if (data.getHasDelayRisk() != null) { |
| | | comboBox0.setSelectedItem(new JComboBoxItem(data.getHasDelayRisk().longValue(), hasDelayRiskMap.get(data.getHasDelayRisk()))); |
| | | comboBox2.setSelectedItem(hasDelayRiskList[data.getHasDelayRisk()]); |
| | | } |
| | | |
| | | |
| | |
| | | data.setProblem(problem.getText()); |
| | | data.setFollowupPlan(plan.getText()); |
| | | data.setRemark(remark.getText()); |
| | | Long id = djJdgzTrackRecordService.save(data); |
| | | Long id = djJdgzTrackRecordService.save(data,"save"); |
| | | uploadFile.save(id); |
| | | List<DjJdgzTrackRecord> list = djJdgzTrackRecordService.getList(level1Id, level3.getDeptId(), null, null, level3.getType(), 0,0, null); |
| | | CommonTable.refreshTable(list, columnDto, table); |