4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package com.web.pda.gltPda_wdPda.service.internal;
 
import com.app.base.data.ApiResponseResult;
import com.web.pda.gltPda_wdPda.service.CreateService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.CallableStatementCallback;
import org.springframework.jdbc.core.CallableStatementCreator;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
 
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.*;
 
@Service(value = "CreateService")
@Transactional(propagation = Propagation.REQUIRED)
public class CreateImpl implements CreateService {
 
    @Autowired
    private JdbcTemplate jdbcTemplate;
 
    /**
     * 根据设备号获取信息
     * @param device
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult afterDevice(String device) throws Exception {
        if(StringUtils.isEmpty(device)){
            return ApiResponseResult.failure("设备号不能为空!");
        }
 
        //List<String> resultList = this.doPrc(device, "prc_eq_getproc");
        List<Object> a  = this.getListRf("10000", "1000",device,"App_Peiliao_Shebei_Select");
        
        if(true){
            //001[M-FA-PE-515,ZJ002-1,TL0001{
            String s = a.get(0).toString();//resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + s);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("系统错误:" + s);
            }
            //封装数据
            Map<String, Object> map = new HashMap<>();
            //map.put("list", a.get(1));
            //20200424-fyx
            String[] strs_1 = strs[1].split(",",-1);
            if(strs_1.length>=2){
                map.put("station", strs_1[1]);
            }else{
                map.put("station", "");
            }
            if(strs_1.length>=3){
                String[] list_strs = strs_1[2].split("\\{");
                map.put("order", list_strs);
            }else{
                map.put("order", "");
            }
            
            return ApiResponseResult.success("获取数据成功!").data(map);
        }
 
        return ApiResponseResult.failure("获取数据失败!");
    }
 
    /**
     * 根据工位获取信息
     * @param station
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult afterStation(String station) throws Exception{
        if(StringUtils.isEmpty(station)){
            return ApiResponseResult.failure("设备号不能为空!");
        }
 
        List<String> resultList = this.doPrc(station, "Prc_Check_ProcLine");
 
        if(resultList.size() > 0){
            String s = resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + resultList);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("系统错误:" + resultList);
            }
            //获取列表
            //例如:001[1015-15,{ZBK2014042103-2
            //String station = "";
            List<String> list = new ArrayList<>();
            if(StringUtils.isEmpty(strs[1])){
                return ApiResponseResult.failure("获取数据失败:" + resultList);
            }
            String[] orderArray = strs[1].split(",");
            if(orderArray.length < 1){
                return ApiResponseResult.failure("获取数据失败:" + resultList);
            }
            if(orderArray.length < 2){
                //station = orderArray[0];
            }else{
                //station = orderArray[0];
                String[] orderArray1 = replaceNull(orderArray[1].split("\\{"));
                if(orderArray1 != null && orderArray1.length > 0){
                    //数据转换
                    list = Arrays.asList(orderArray1);
                }
            }
 
            //封装数据
            Map<String, Object> map = new HashMap<>();
            //map.put("station", station);
            map.put("list", list);
 
            return ApiResponseResult.success("获取数据成功!").data(map);
        }
 
 
        return null;
    }
 
    /**
     * 根据工号获取信息
     * @param userCode
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult afterJob(String userCode) throws Exception{
        if(StringUtils.isEmpty(userCode)){
            return ApiResponseResult.failure("工号不能为空!");
        }
 
        List<String> resultList = this.doPrc(userCode, "Prc_Check_Gonghao");
        if(resultList.size() > 0){
            String s = resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + resultList);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("系统错误:" + resultList);
            }
            //获取信息
            String classes = "";
            if(StringUtils.isEmpty(strs[1])){
                return ApiResponseResult.failure("获取数据失败:" + resultList);
            }
            classes = strs[1];
 
            //封装数据
            Map<String, Object> map = new HashMap<>();
            map.put("classes", classes);//班次
 
            return ApiResponseResult.success("获取数据成功!").data(map);
        }
 
        return ApiResponseResult.failure("获取数据失败!");
    }
 
    /**
     * 根据工单获取信息
     * @param order
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult afterOrder(String order) throws Exception{
        if(StringUtils.isEmpty(order)){
            return ApiResponseResult.failure("工单不能为空!");
        }
 
        List<String> resultList = this.doPrc(order, "Prc_Col_Tl01");
 
        if(resultList.size() > 0){
            String s = resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + resultList);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("系统错误:" + resultList);
            }
            //获取信息
            String planQty = "";
            if(StringUtils.isEmpty(strs[1])){
                return ApiResponseResult.failure("获取数据失败:" + resultList);
            }
            String[] tempArray = strs[1].split(",");
            if(tempArray.length > 0){
                planQty = tempArray[0];
            }
 
            //封装数据
            Map<String, Object> map = new HashMap<>();
            map.put("planQty", planQty);//计划数量(用“,”隔开)
 
            return ApiResponseResult.success("获取数据成功!").data(map);
        }
 
        return ApiResponseResult.failure("获取数据失败!");
    }
 
    /**
     * 根批量获取信息
     * @param param
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult afterBatch(String param) throws Exception{
        if(StringUtils.isEmpty(param)){
            return ApiResponseResult.failure("批量不能为空!");
        }
 
        List<Object> a  = this.getListRf("10000", "1000",param,"App_Peiliao_Jiaoban_Add");
        
        if(true){
            String s = a.get(0).toString();//resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + s);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("系统错误:" + s);
            }
            //封装数据
            Map<String, Object> map = new HashMap<>();
            map.put("list", a.get(1));
 
            return ApiResponseResult.success("获取数据成功!").data(map);
        }
 
        return ApiResponseResult.failure("获取数据失败!");
    }
 
    /**
     * 删除
     * @param order
     * @return
     * @throws Exception
     */
    @Override
    @Transactional
    public ApiResponseResult delete(String order) throws Exception{
        if(StringUtils.isEmpty(order)){
            return ApiResponseResult.failure("工单不能为空!");
        }
 
        List<String> resultList = this.doPrc(order, "Prc_Jiaoban_Del");
 
        if(resultList.size() > 0){
            String s = resultList.get(0).substring(0);
            String[] strs = s.split("\\[");
            if(strs.length < 1){
                return ApiResponseResult.failure("返回值的格式不正确:" + resultList);
            }
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("002")){
                return ApiResponseResult.failure("删除数据失败:" + resultList);
            }
 
            return ApiResponseResult.success("删除数据成功!");
        }
 
        return ApiResponseResult.failure("删除数据失败!");
    }
    @Override
    public ApiResponseResult getList(String device, int page) throws Exception {
        // TODO Auto-generated method stub
        List<Object> a  = this.getAllListRf("10000", "1000",device,5,page,"app_peiliao_shebei_selecthis");
        /*if(!a.get(0).toString().equals("0")){
            return ApiResponseResult.failure(a.get(1).toString());
        }*/
         String s = a.get(0).toString();//resultList.get(0).substring(0);
         String[] strs = s.split("\\[");
         if(strs.length < 1){
             return ApiResponseResult.failure("返回值的格式不正确:" + s);
         }
         //判断取值是否成功
         String str = strs[0];
         if(str.equals("002")){
             return ApiResponseResult.failure("系统错误:" + s);
         }
        
        return ApiResponseResult.success().data(a.get(1));
    }
 
    //执行存储获取数据
    public List<String> doPrc(String param,String prc_name){
        List<String> resultList = (List<String>) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call "+prc_name+"(?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, param);
                cs.registerOutParameter(2,java.sql.Types.VARCHAR);// 注册输出参数 返回类型
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<String> result = new ArrayList<String>();
                cs.execute();
                result.add(cs.getString(2));
                return result;
            }
        });
 
        return resultList;
    }
    //去除List数组中为空的元素
    private String[] replaceNull(String[] str){
        //用StringBuffer来存放数组中的非空元素,用“;”分隔
        StringBuffer sb = new StringBuffer();
        for(int i=0; i<str.length; i++) {
            if("".equals(str[i])) {
                continue;
            }
            sb.append(str[i]);
            if(i != str.length - 1) {
                sb.append(";");
            }
        }
        //用String的split方法分割,得到数组
        if(StringUtils.isEmpty(sb)){
            return null;
        }
        str = sb.toString().split(";");
        return str;
    }
    
  //执行存储获取数据
    public List<Object> getListRf(String factory,String company,String in_str,String prc_name) {
        List<Object> resultList = (List<Object>) jdbcTemplate.execute(new CallableStatementCreator() {
        @Override
        public CallableStatement createCallableStatement(Connection con) throws SQLException {
        String storedProc = "{call "+prc_name+"(?,?,?,?,?,?)}";// 调用的sql
        CallableStatement cs = con.prepareCall(storedProc);
        cs.setString(1, factory);
        cs.setString(2, company);
        cs.setString(3, in_str);
        cs.registerOutParameter(4,java.sql.Types.INTEGER);// 注册输出参数 返回类型
        cs.registerOutParameter(5,java.sql.Types.VARCHAR);// 注册输出参数 返回类型
        cs.registerOutParameter(6,-10);// 注册输出参数 返回类型
        return cs;
        }
        }, new CallableStatementCallback() {
        public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
            List<Object> result = new ArrayList<Object>();
            cs.execute();
            result.add(cs.getString(5));
            
            String[] strs = cs.getString(5).split("\\[");
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("001")){
                //游标处理
                ResultSet rs = (ResultSet)cs.getObject(6);
                List l = new ArrayList();
    
                while(rs.next()){
                    Map m = new HashMap();    
                    m.put("MID", rs.getString("MID"));
                    m.put("ID", rs.getString("ID"));
                    m.put("TASK_NO", rs.getString("TASK_NO"));
                    m.put("PLAN_QTY", rs.getString("PLAN_QTY"));
                    m.put("FPUT_QTY", rs.getString("FPUT_QTY"));
                    l.add(m);
                     }
                result.add(l);
            }
    
            return result;
            }
        });
        return resultList;
        }
    
  //执行存储获取数据
    public List<Object> getAllListRf(String factory,String company,String in_str,int page,int size,String prc_name) {
        List<Object> resultList = (List<Object>) jdbcTemplate.execute(new CallableStatementCreator() {
        @Override
        public CallableStatement createCallableStatement(Connection con) throws SQLException {
        String storedProc = "{call "+prc_name+"(?,?,?,?,?,?,?,?)}";// 调用的sql
        CallableStatement cs = con.prepareCall(storedProc);
        cs.setString(1, factory);
        cs.setString(2, company);
        cs.setString(3, in_str);
        cs.setInt(4, page);
        cs.setInt(5, size);
        cs.registerOutParameter(6,java.sql.Types.INTEGER);// 注册输出参数 返回类型
        cs.registerOutParameter(7,java.sql.Types.VARCHAR);// 注册输出参数 返回类型
        cs.registerOutParameter(8,-10);// 注册输出参数 返回类型
        return cs;
        }
        }, new CallableStatementCallback() {
        public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
            List<Object> result = new ArrayList<Object>();
            cs.execute();
            result.add(cs.getString(7));
            
            String[] strs = cs.getString(7).split("\\[");
            //判断取值是否成功
            String str = strs[0];
            if(str.equals("001")){
                //游标处理
                ResultSet rs = (ResultSet)cs.getObject(8);
                List l = new ArrayList();
    
                while(rs.next()){
                    Map m = new HashMap();    
                    m.put("MID", rs.getString("MID"));
                    m.put("ID", rs.getString("ID"));
                    m.put("TASK_NO", rs.getString("TASK_NO"));
                    m.put("PLAN_QTY", rs.getString("PLAN_QTY"));
                    m.put("FPUT_QTY", rs.getString("FPUT_QTY"));
                    m.put("CREATE_DATE", rs.getString("CREATE_DATE"));
                    m.put("CREATE_BY", rs.getString("CREATE_BY"));
                    l.add(m);
                     }
                result.add(l);
            }
    
            return result;
            }
        });
        return resultList;
        }
 
}