Commit e6f8f1e9029658920d41d249b7990bc0080bdbad
1 parent
001b21e2
修复不能更新的bug
Showing
1 changed file
with
6 additions
and
6 deletions
src/com/fh/controller/api/V1.java
| ... | ... | @@ -1764,7 +1764,7 @@ public class V1 extends BaseController { |
| 1764 | 1764 | @RequestMapping(value = "/uploadstudenttest", produces = "application/json;charset=UTF-8") |
| 1765 | 1765 | @ResponseBody |
| 1766 | 1766 | public Object uploadstudenttest() { |
| 1767 | - event("uploadupdateTestpaper"); | |
| 1767 | + event("uploadstudenttest"); | |
| 1768 | 1768 | long cur = System.currentTimeMillis(); |
| 1769 | 1769 | PageData pd = this.getPageData(); |
| 1770 | 1770 | ResponseGson<String> res = new ResponseGson(); |
| ... | ... | @@ -1789,7 +1789,7 @@ public class V1 extends BaseController { |
| 1789 | 1789 | testPd.put("START_DATE", ""); |
| 1790 | 1790 | testPd.put("END_DATE", studentPaper.getEndDate()); |
| 1791 | 1791 | testPd.put("NAME", ""); |
| 1792 | - testPd.put("TESTPAPER_ID", get32UUID()); | |
| 1792 | + testPd.put("TESTPAPER_ID", studentPaper.getPaperId()); | |
| 1793 | 1793 | testPd.put("OTHER_SCORE", ""); |
| 1794 | 1794 | testPd.put("HIGHT_SCORE", ""); |
| 1795 | 1795 | testPd.put("LOW_SCORE", ""); |
| ... | ... | @@ -1835,14 +1835,14 @@ public class V1 extends BaseController { |
| 1835 | 1835 | stestPd.put("PAPER_ID", studentPaper.getPaperId()); |
| 1836 | 1836 | stestPd.put("TEST_ID", studentPaper.getPaperId()); |
| 1837 | 1837 | stestPd.put("SCORE", studentAnswer.getScore()); |
| 1838 | - testPd.put("LOST_TEST", studentAnswer.getLosttest()); | |
| 1838 | + stestPd.put("LOST_TEST", studentAnswer.getLosttest()); | |
| 1839 | 1839 | List<PageData> liste = studenttestService.listAll(stestPd); |
| 1840 | 1840 | if (liste == null || liste.size() == 0) { |
| 1841 | - testPd.put("STUDENTTEST_ID", get32UUID()); | |
| 1841 | + stestPd.put("STUDENTTEST_ID", get32UUID()); | |
| 1842 | 1842 | studenttestService.save(stestPd); |
| 1843 | 1843 | } else { |
| 1844 | 1844 | PageData ptd = liste.get(0); |
| 1845 | - testPd.put("STUDENTTEST_ID", ptd.get("STUDENTTEST_ID")); | |
| 1845 | + stestPd.put("STUDENTTEST_ID", ptd.get("STUDENTTEST_ID")); | |
| 1846 | 1846 | studenttestService.edit(stestPd); |
| 1847 | 1847 | } |
| 1848 | 1848 | |
| ... | ... | @@ -1886,7 +1886,7 @@ public class V1 extends BaseController { |
| 1886 | 1886 | } else { |
| 1887 | 1887 | res.setDataError(); |
| 1888 | 1888 | } |
| 1889 | - logger.info("uploadupdatetestpaper cost time:" | |
| 1889 | + logger.info("uploadstudenttest cost time:" | |
| 1890 | 1890 | + (System.currentTimeMillis() - cur)); |
| 1891 | 1891 | |
| 1892 | 1892 | return res.toJson(); | ... | ... |