派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
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();
    }
    
}