CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
package com.ld.igds.n2.service;
 
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import com.ld.igds.models.N2IntelTask;
import com.ld.igds.n2.dto.N2Param;
import org.apache.commons.lang3.StringUtils;
import org.hibernate.Session;
import org.springframework.stereotype.Component;
 
import com.bstek.bdf2.core.orm.hibernate.HibernateDao;
import com.ld.igds.models.N2Auto;
import com.ld.igds.models.N2IntelConf;
import com.ld.igds.n2.N2Util;
import com.ld.igds.util.ContextUtil;
 
@Component
public class HN2Service extends HibernateDao {
 
    public List<N2IntelConf> listIntelConf() {
 
        String hql = " from " + N2IntelConf.class.getName()
                + " where companyId=:companyId order by depotId + 0";
 
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("companyId", ContextUtil.getCompanyId());
 
        return this.query(hql, args);
    }
 
    public void saveIntelConf(N2IntelConf data) {
        data.setUpdateTime(new Date());
        data.setUpdateUser(ContextUtil.getLoginUserCName());
        Session session = this.getSessionFactory().openSession();
        
        if(null != data.getPressureStart()){
            data.setPressureEnd(data.getPressureStart()/2);
        }
        
        try {
            if (null == data.getId()) {
                data.setId(ContextUtil.getUUID());
                session.save(data);
            } else {
                session.update(data);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.flush();
            session.close();
        }
    }
 
    public String delIntelConf(N2IntelConf data) {
        Session session = this.getSessionFactory().openSession();
        try {
            if (null != data.getId()) {
                session.delete(data);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.flush();
            session.close();
        }
 
        return null;
 
    }
 
    public String delIntel(N2IntelTask data) {
        Session session = this.getSessionFactory().openSession();
        try {
            if (null != data.getId()) {
                session.delete(data);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.flush();
            session.close();
        }
        return null;
    }
 
    public void saveIntelTask(N2IntelTask data) {
        if (null == data.getCompanyId()) {
            data.setCompanyId(ContextUtil.getCompanyId());
        }
        if (null == data.getStatus()) {
            data.setStatus(N2Util.TASK_STATUS_01);
        }
        if (null == data.getId()) {
            data.setId(ContextUtil.getUUID());
        }
 
        Session session = this.getSessionFactory().openSession();
        try {
            session.save(data);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.flush();
            session.close();
        }
 
    }
 
    public void updateIntelTask(N2IntelTask data) {
        if (null == data.getCompanyId()) {
            data.setCompanyId(ContextUtil.getCompanyId());
        }
        if (null == data.getStatus()) {
            data.setStatus(N2Util.TASK_STATUS_01);
        }
        Session session = this.getSessionFactory().openSession();
        try {
            session.update(data);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            session.flush();
            session.close();
        }
    }
 
    public List<N2IntelTask> listTask(String parentId) {
        String hql = " from " + N2IntelTask.class.getName()
                + " where companyId=:companyId";
 
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("companyId", ContextUtil.getCompanyId());
 
        if (null != parentId) {
            hql += " and parentId=:parentId";
            args.put("parentId", parentId);
        } else {
            hql += " and parentId is null ";
        }
 
        hql += " order by start desc ";
 
        return this.query(hql, args);
    }
 
    public List<N2Auto> listN2Auto(String depotId) {
 
        String hql = " from " + N2Auto.class.getName()
                + " where companyId=:companyId";
 
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("companyId", ContextUtil.getCompanyId());
 
        if (StringUtils.isNotEmpty(depotId)) {
            hql += " and depotId =:depotId ";
            args.put("depotId", depotId);
        }
 
        hql += " order by name";
 
        return this.query(hql, args);
    }
 
    public String taskRun(N2IntelTask data) {
        return "参数信息不完整,不支持执行!";
    }
 
    public String taskStop(N2IntelTask data) {
        return "参数信息不完整,不支持执行!";
    }
 
    /**
     * 根据组织编码和仓库编码获取当前仓库的智能气调配置信息
     *
     * @param param
     * @return
     */
    public N2IntelConf getN2IntelConf(N2Param param) {
 
        if (null == param) return null;
 
        if (null == param.getCompanyId() || null == param.getDepotId()) return null;
 
        String hql = " from " + N2IntelConf.class.getName()
                + " where companyId=:companyId and depotId=:depotId";
 
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("companyId", param.getCompanyId());
        args.put("depotId", param.getDepotId());
 
        List<N2IntelConf> list = this.query(hql, args);
 
        if (null == list) return null;
 
        return list.get(0);
    }
 
}