派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package com.qxueyou.scc.courseware.action;
 
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
import com.qxueyou.scc.admin.classes.service.IClassService;
import com.qxueyou.scc.base.dao.CommonDAO;
import com.qxueyou.scc.base.model.Result;
import com.qxueyou.scc.base.util.ClientUtils;
import com.qxueyou.scc.courseware.service.ICourceCategoryService;
import com.qxueyou.scc.courseware.service.ICourseService;
import com.qxueyou.scc.courseware.service.IOrgCourseService;
import com.qxueyou.scc.org.model.OrgCollegeCourse;
import com.qxueyou.scc.org.model.OrgCourse;
 
/**
 * ¿ÆÄ¿¹ÜÀícontroller
 * 
 * @author µÂ»¢
 * @history 2014-11-25 Ð½¨ Ïĵ»¢
 * 
 */
@Controller
@RequestMapping(value = "/org/cource")
public class CourceController {
 
    @Autowired
    private CommonDAO commonDAO;
 
    @Autowired
    private ICourceCategoryService categoryService;
 
    @Autowired
    private IOrgCourseService orgCourseService;
    
    @SuppressWarnings("unused")
    @Autowired
    private IClassService orgClassService;
    
    @Autowired
    private ICourseService service;
    
    /**
     * APP2.0: ²éѯ¿ÆÄ¿ÄÚÈÝ
     * URL:    /org/cource/queryCourseNew/{courseId}
     * 
     * @param courseId   ¿ÆÄ¿ID  
     * @return
     */
    @RequestMapping(value = "queryCourseNew/{courseId}", method = RequestMethod.GET)
    public @ResponseBody
    OrgCollegeCourse queryCourse(@PathVariable String courseId) {
 
        OrgCollegeCourse course = commonDAO.read(OrgCollegeCourse.class, courseId);
        
//        // Èç¹ûÊÇÓοͰࠠ    1:±íʾÓοͰࠠ  
//        if(orgClassService.isCurrentVistorClass()){
//            //Organization org = course.getOrg();
//            Organization org = commonDAO.read(Organization.class, course.getTopOrgId());
//            course.setOrgName(org.getName());
////            course.setOrgTel(org.getTel());
//        }
        
        return course;
    }
 
    /**
     * APP2.0: ÍƼö¿Î³Ì
     * URL:    /org/cource/recommendCourseNew
     * 
     * @return
     */
    @RequestMapping(value = "recommendCourseNew", method = RequestMethod.GET)
    public @ResponseBody
    List<OrgCollegeCourse> recommendCourse() {
 
        // 1. ²éѯ¸Ã»ú¹¹ÏÂÍÆ¼ö¿Î³Ì Ö»È¡Ç°Èý¸ö
        String hql = "select courseId,name,price,imgPath,courseCategoryId "
                + " from OrgCourse c where c.deleteFlag is false and c.recommend is true";
        
        List<Object> args = new ArrayList<Object>(1);
        // Èç¹ûÊÇÓοͰࠠ²éËùÓлú¹¹     1:±íʾÓοͰࠠ       
//        if(!orgClassService.isCurrentVistorClass()){
//             hql += " and c.org.organizationId=?";
//             args = CollectionUtils.newList(ClientUtils.getOrgId());
//        }
        
        
        List<OrgCollegeCourse> lstCourse = categoryService.queryOrgCourseList(hql, args);
 
        if (lstCourse.isEmpty()) {
            return lstCourse;
        }
 
        // Ö»È¡Ç°ÈýÏîÊý¾Ý
        List<OrgCollegeCourse> lstResultCourse = new ArrayList<OrgCollegeCourse>();
        int count = lstCourse.size() >= 3 ? 3 : lstCourse.size();
        for (int i = 0; i < count; i++) {
            lstResultCourse.add(lstCourse.get(i));
        }
 
        return lstResultCourse;
    }
    
    /******************************************************************* ÉÏÃæÎªApp½Ó¿Ú£¬ÏÂÃæÎªºǫ́½Ó¿Ú **************************/
 
    /**
     * ¿ÆÄ¿Áбí
     * 
     * @return
     */
    @RequestMapping(method = RequestMethod.GET)
    public String list() {
        return "/org/Course";
    }
 
    /**
     * »ñÈ¡ÁбíÊý¾Ý
     * 
     * @return
     */
    @RequestMapping(value = "/data", method = RequestMethod.GET)
    public @ResponseBody
    List<OrgCollegeCourse> data() {
 
        return orgCourseService.queryCourseList(ClientUtils.getOrgId());
 
    }
 
    /**
     * ¸ù¾Ý¿ÆÄ¿ID²éѯ¿ÆÄ¿
     * 
     * @return
     */
    @RequestMapping(value = "/read/{courseId}", method = RequestMethod.GET)
    public @ResponseBody
    OrgCollegeCourse read(@PathVariable String courseId) {
        return commonDAO.read(OrgCollegeCourse.class, courseId);
    }
 
    /**
     * ×¨Òµ±à¼­ - Ñ¡Ôñ¿ÆÄ¿Àà±ðºó¼ÓÔØ×¨ÒµÁбí
     * 
     * @return
     */
    @RequestMapping(value = "/loadCourse", method = RequestMethod.GET)
    public @ResponseBody
    List<OrgCourse> loadCourse( String courseCategoryId,String courseId) {
        
        List<OrgCourse> orgCourse = orgCourseService.loadCourse(courseCategoryId, courseId);
        
        return orgCourse;
    }
    
    /**
     * ÐÂÔö
     * 
     * @return
     */
    @RequestMapping(value = "/add", method = RequestMethod.POST)
    public @ResponseBody
    Result add(OrgCollegeCourse course) {
 
        return orgCourseService.insertCourse(course);
 
    }
 
    /**
     * ±à¼­
     * 
     * @return
     */
    @RequestMapping(value = "/edit", method = RequestMethod.GET)
    public String edit() {
 
        return "/org/CourseEdit";
    }
 
    /**
     * É¾³ý
     * 
     * @return
     */
    @RequestMapping(value = "/delete", method = RequestMethod.POST)
    public @ResponseBody
    Result delete(String courseIds) {
 
        // ±£´æµ½·þÎñÆ÷
        return orgCourseService.deleteCourses(courseIds.split(","));
 
    }
    
    /**
     * ÍƼö
     * 
     * @return
     */
    @RequestMapping(value = "/recommend", method = RequestMethod.POST)
    public @ResponseBody
    Result recommend(String courseIds) {
 
        // ±£´æµ½·þÎñÆ÷
        return orgCourseService.doRecommend(courseIds.split(","));
 
    }
    
    /**
     * È¡ÏûÍÆ¼ö
     * 
     * @return
     */
    @RequestMapping(value = "/unrecommend", method = RequestMethod.POST)
    public @ResponseBody
    Result unrecommend(String courseIds) {
 
        // ±£´æµ½·þÎñÆ÷
        return orgCourseService.doUnRecommend(courseIds.split(","));
 
    }
 
    /**
     * ¸üÐÂ
     * 
     * @return
     */
    @RequestMapping(value = "/update", method = RequestMethod.POST)
    public @ResponseBody
    Result update(OrgCollegeCourse course) {
        return orgCourseService.updateCourse(course);
    }
 
    /**
     * ¿ÆÄ¿½éÉÜÔ¤ÀÀ
     * @param orgClass
     * @param mobilePhone
     * @return
     */
//    @RequestMapping(value = "/preview", method = RequestMethod.POST)
//    public @ResponseBody Result doPreviewNotice(OrgCollegeCourse orgCourse,String mobilePhone) {
//        return orgCourseService.doPreviewCourse(orgCourse,mobilePhone);
//    }
    
    
    /**
     * ²éѯËùÓлú¹¹ÏîÄ¿
     * @return
     */
    @RequestMapping(value="/allCourseName",method=RequestMethod.GET)
    @ResponseBody
    public List<Map<String, Object>> getCourseName() {
        return  service.queryCourseName();
    }
    
}