XMTT 6 gadi atpakaļ
vecāks
revīzija
37769df3df

+ 3 - 3
src/main/java/com/ekexiu/project/platform/views/handler/db/TimeLogHandler.java

@ -121,11 +121,11 @@ public class TimeLogHandler extends DbLogHandler {
121 121
122 122
    }
123 123
124
    public void insertSum(String id) throws SQLException {
124
    public void insertSum(String id,int pv) throws SQLException {
125 125
        PreparedStatement ps = this.con.prepareStatement(this.insertSumSql);
126 126
        try {
127 127
            ps.setString(1, id);
128
            ps.setInt(2, 1);
128
            ps.setInt(2, pv);
129 129
            ps.executeUpdate();
130 130
        } finally {
131 131
            try {
@ -145,7 +145,7 @@ public class TimeLogHandler extends DbLogHandler {
145 145
            String id = day.substring(9);
146 146
            day = day.substring(0, 8);
147 147
            if (!this.updateSum(id, pv)) {
148
                this.insertSum(id);
148
                this.insertSum(id,pv);
149 149
            }
150 150
            if (!this.update(id, day, source, pv)) {
151 151
                this.insert(id, day, source, pv);

+ 10 - 0
src/main/java/com/ekexiu/project/platform/views/service/Main.java

@ -23,6 +23,7 @@ import org.jfw.util.jdbc.PreparedStatementConfig;
23 23
import java.sql.Connection;
24 24
import java.sql.PreparedStatement;
25 25
import java.sql.SQLException;
26
import java.util.HashMap;
26 27
import java.util.List;
27 28
import java.util.Map;
28 29
@ -172,4 +173,13 @@ public class Main {
172 173
            }
173 174
        });
174 175
    }
176
177
    @Get
178
    @Path("/company")
179
    public Map<String,Object> company(@JdbcConn Connection con)throws SQLException {
180
        Map<String, Object> result = new HashMap<>();
181
        result.put("actived", JdbcUtil.queryInt(con,"SELECT COUNT(1) FROM COMPANY WHERE ACTIVED = '1'",0));
182
        result.put("count", JdbcUtil.queryInt(con,"SELECT COUNT(1) FROM COMPANY",0));
183
        return result;
184
    }
175 185
}