1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.web.kanban.service.internal;
 
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 java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class GltReportPrcUtils {
 
    @Autowired
    private JdbcTemplate jdbcTemplate;
 
 
    /**
     * 2023-03-25 获取IQC待检看板存储过程
     **/
    public List getPRC_KB_IQC_prc( String prc_name,Integer size, Integer page) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call " + prc_name + " (?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
 
                cs.registerOutParameter(1, java.sql.Types.INTEGER);// 输出参数 返回标识-标识
                cs.registerOutParameter(2, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(3, -10);// 输出参数 追溯数据
                cs.registerOutParameter(4, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                List<Object> cols = new ArrayList();
                List<Map<String, Object>> l2 = new ArrayList();
                List<Object> cols2 = new ArrayList();
                cs.execute();
                result.add(cs.getInt(1));
                result.add(cs.getString(2));
                if (cs.getString(1).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(3);
                    System.out.println(rs);
                    ResultSet resultSet = (ResultSet) cs.getObject(4);
                    System.out.println(resultSet);
                    try {
                        l = fitMap(rs);
                        cols=fitMapCols(rs);
 
                        l2 = fitMap(resultSet);
                        cols2=fitMapCols(resultSet);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                    result.add(l);
                    result.add(cols);
                    result.add(l2);
                    result.add(cols2);
                }
                System.out.println(l);
                System.out.println(l2);
                return result;
            }
        });
        return resultList;
    }
 
    /**
     * 获取仓库看板
     * @param prc_name   存储过程名字
     * @return
     * @throws Exception
     */
    public List getWarehouseKanban( String prc_name) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call " + prc_name + " (?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
 
                cs.registerOutParameter(1, java.sql.Types.INTEGER);// 输出参数 返回标识-标识
                cs.registerOutParameter(2, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(3, -10);// 输出参数 追溯数据
                cs.registerOutParameter(4, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {//取数据
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                List<Object> cols = new ArrayList();
                List<Map<String, Object>> l2 = new ArrayList();
                List<Object> cols2 = new ArrayList();
                cs.execute();
                result.add(cs.getInt(1));
                result.add(cs.getString(2));
                if (cs.getString(1).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(3);
                    System.out.println(rs);
                    ResultSet resultSet = (ResultSet) cs.getObject(4);
                    System.out.println(resultSet);
                    try {
                        l = fitMap(rs);
                        cols=fitMapCols(rs);
 
                        l2 = fitMap(resultSet);
                        cols2=fitMapCols(resultSet);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                    result.add(l);
                    result.add(cols);
                    result.add(l2);
                    result.add(cols2);
                }
                System.out.println(l);
                System.out.println(l2);
                return result;
            }
        });
        return resultList;
    }
 
 
    private List<Map<String, Object>> fitMap(ResultSet rs) throws Exception {
        List<Map<String, Object>> list = new ArrayList<>();
        if (null != rs) {
            Map<String, Object> map;
            int colNum = rs.getMetaData().getColumnCount();
            List<String> columnNames = new ArrayList<String>();
            for (int i = 1; i <= colNum; i++) {
                columnNames.add(rs.getMetaData().getColumnName(i));
            }
            while (rs.next()) {
                map = new HashMap<String, Object>();
                for (String columnName : columnNames) {
                    map.put(columnName, rs.getString(columnName));
                }
                list.add(map);
            }
        }
        return list;
    }
 
    /**
     * 2023-3-25   返回一个数组
     * @param rs
     * @return
     * @throws Exception
     */
    private List<List<String>> fitMap2(ResultSet rs) throws Exception {
        List<List<String>> list = new ArrayList<>();
 
        if (null != rs) {
            int colNum = rs.getMetaData().getColumnCount();
            List<String> columnNames = new ArrayList<String>();
            for (int i = 1; i <= colNum; i++) {
                columnNames.add(rs.getMetaData().getColumnName(i));
            }
            while (rs.next()) {
                List<String>  list2  =    new    ArrayList<>();
                for (String columnName : columnNames) {
                      list2.add(rs.getString(columnName));
 
                }
                list.add(list2);
            }
        }
        return list;
    }
 
    /**
     * 2021-01-29 lst 只返回列名
     **/
    private List<Object> fitMapCols(ResultSet rs) throws Exception {
        List<Object> list = new ArrayList<>();
        if (null != rs) {
            int colNum = rs.getMetaData().getColumnCount();
            List<Object> columnNames = new ArrayList<Object>();
            for (int i = 1; i <= colNum; i++) {
                columnNames.add(rs.getMetaData().getColumnName(i));
            }
            list = columnNames;
        }
        return list;
    }
}