zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.qm.proc.controller;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
import com.shlanbao.tzsc.base.controller.BaseController;
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.Json;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.base.model.SessionInfo;
import com.shlanbao.tzsc.pms.qm.proc.beans.QmProcFileBean;
import com.shlanbao.tzsc.pms.qm.proc.beans.QmProcManageBean;
import com.shlanbao.tzsc.pms.qm.proc.service.QmProcManageService;
import com.shlanbao.tzsc.utils.tools.WebContextUtil;
 
/**
 * 工艺规程控制器
 * <li>@author luther.zhang
 * <li>@create 2014-12-25
 */
@Controller
@RequestMapping("/pms/procManage")
public class QmProcManageController extends BaseController{
    @Autowired
    private QmProcManageService service;
    /** 查询*/
    @ResponseBody
    @RequestMapping("/getList")
    public DataGrid getList(QmProcManageBean bean,PageParams pageParams){
        try {
            DataGrid grid = service.queryList(bean,pageParams);
            return grid;
        } catch (Exception e) {
            log.error(message, e);
        }
        return null;
    }
    /** 根据ID查询*/
    @ResponseBody
    @RequestMapping("/getListById")
    public DataGrid getListById(String proManageId,PageParams pageParams){
        try {
            DataGrid grid = service.queryListById(proManageId,pageParams);
            return grid;
        } catch (Exception e) {
            log.error(message, e);
        }
        return null;
    }
    
    /**
     * 新增修改页面
     * @param id
     * @param request
     * @return
     */
    @RequestMapping("/goEditJsp")
    public String goEditJsp(String id,HttpServletRequest request){
        try {
            if(null!=id&&!"".equals(id)){
                request.setAttribute("bean", service.getBeanById(id));
            }else{
                request.setAttribute("bean", new QmProcManageBean());//表示新增
            }
        } catch (Exception e) {
            log.error("跳转到工艺规程编辑页面失败", e);
        }
        return "/pms/quality/proc/procManageEdit";
    }
    /**
     * 新建修改
     */
    @ResponseBody
    @RequestMapping("/editProcManage")
    public Json editProcManage(QmProcManageBean bean,HttpServletRequest request){
        Json json=new Json();
        String type = request.getParameter("type");
        SessionInfo info = (SessionInfo) WebContextUtil.getSessionValue(
                request.getSession(), WebContextUtil.SESSION_INFO);//用户信息
        try {
            if("insert".equals(type)){
                bean.setAddUserId(info.getUser().getId());
                bean.setModifyUserId(info.getUser().getId());
                service.addBean(bean);
                json.setMsg("新增工艺规程成功!");
            }else{
                bean.setModifyUserId(info.getUser().getId());
                bean.setReviewUserId(info.getUser().getId());
                service.editBean(bean);
                json.setMsg("编辑工艺规程成功!");
            }
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            if("insert".equals(type)){
                json.setMsg("新增工艺规程失败!");
            }else{
                json.setMsg("编辑工艺规程失败!");
            }    
            json.setSuccess(false);
        }
        return json;
    }
    /**
     * 上传
     */
    @ResponseBody
    @RequestMapping("/uploadProcManage")
    public Json uploadProcManage(QmProcManageBean bean,HttpServletRequest request){
        Json json=new Json();
        String type = request.getParameter("type");
        SessionInfo info = (SessionInfo) WebContextUtil.getSessionValue(
                request.getSession(), WebContextUtil.SESSION_INFO);//用户信息
        try {
            if("insert".equals(type)){
                bean.setAddUserId(info.getUser().getId());
                bean.setModifyUserId(info.getUser().getId());
                service.addBean(bean);
                json.setMsg("新增工艺规程成功!");
            }else{
                bean.setModifyUserId(info.getUser().getId());
                bean.setReviewUserId(info.getUser().getId());
                service.editBean(bean);
                json.setMsg("编辑工艺规程成功!");
            }
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            if("insert".equals(type)){
                json.setMsg("新增工艺规程失败!");
            }else{
                json.setMsg("编辑工艺规程失败!");
            }    
            json.setSuccess(false);
        }
        return json;
    }
    
    /**
     * 批量删除
     */
    @ResponseBody
    @RequestMapping("/deleteProcManage")
    public Json deleteProcManage(String ids){
        Json json=new Json();
        try {
            service.batchDeleteByIds(ids);
            json.setMsg("删除工艺规程成功!");
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            json.setMsg("删除工艺规程失败!");
            json.setSuccess(false);
        }
        return json;
    }
    
    @RequestMapping("/uploadJsp")
    public String goTofileUploadJsp(HttpServletRequest request){
        return "/pms/quality/proc/fileUpload";
    }
    /**
     * 文件上传
     */
    @ResponseBody
    @RequestMapping("/updateFile")
    public Json fileUpdate(String procManageId,HttpSession session,
             HttpServletRequest request,QmProcFileBean fmBean) {
        Json json = new Json();
        try {
            service.fileUpdate(procManageId,session,request,fmBean);
            json.setMsg("文件上传成功!");
            json.setSuccess(true);
        } catch (Exception e) {
            log.error("文件上传异常", e);
            json.setMsg("文件上传失败!");
            json.setSuccess(false);
        }
        return json;
    }
    
    /**
     * 审核
     */
    @ResponseBody
    @RequestMapping("/reviewProcManage")
    public Json reviewProcManage(String ids,String status,HttpSession session){
        Json json=new Json();
        try {
            service.editReview(ids,status,session);
            json.setMsg("审核工艺规程成功!");
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            json.setMsg("审核工艺规程失败!");
            json.setSuccess(false);
        }
        return json;
    }
    /**
     * 下发
     */
    @ResponseBody
    @RequestMapping("/sendProcManage")
    public Json sendProcManage(String ids,String status,HttpSession session){
        Json json=new Json();
        try {
            service.editSend(ids,status,session);
            json.setMsg("下发工艺规程成功!");
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            json.setMsg("下发工艺规程失败!");
            json.setSuccess(false);
        }
        return json;
    }
    /**
     * 批量删除
     */
    @ResponseBody
    @RequestMapping("/deleteProcFile")
    public Json deleteProcFile(String ids,HttpSession session){
        Json json=new Json();
        try {
            service.deleteFiles(ids,session);
            json.setMsg("删除工艺规程文档成功!");
            json.setSuccess(true);
        } catch (Exception e) {
            log.error(message, e);
            json.setMsg("删除工艺规程文档失败!");
            json.setSuccess(false);
        }
        return json;
    }
}