add
gdg
2020-10-30 9222b2db700cd25e46b67c2a3c05fffd3817cc64
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
package com.nanometer.smartlab.controller;
 
import java.util.Iterator;
import java.util.List;
import java.util.Map;
 
import javax.annotation.Resource;
 
import org.apache.log4j.Logger;
import org.primefaces.context.RequestContext;
import org.primefaces.model.LazyDataModel;
import org.primefaces.model.SortOrder;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
 
import com.nanometer.smartlab.entity.SysWarehouse;
import com.nanometer.smartlab.service.SysWarehouseService;
import com.nanometer.smartlab.util.Constants;
import com.nanometer.smartlab.util.FacesUtils;
 
/**
 * Created by cmower on 17/11/20.
 */
@Controller
@Scope("session")
public class WarehouseMngController extends BaseController {
 
    private static final long serialVersionUID = 101543880938627455L;
 
    private static Logger logger = Logger.getLogger(WarehouseMngController.class);
 
    @Resource
    private SysWarehouseService sysWarehouseService;
 
    /**
     * 数据源
     */
    private LazyDataModel<SysWarehouse> dataModel;
    /**
     * 数据模型
     */
    private SysWarehouse sysWarehouse;
    /**
     * 选中的list
     */
    private List<SysWarehouse> selectedList;
    private String type;
    private String name;
 
    private int action;
 
    public void onNewBtnClick() {
        this.sysWarehouse = new SysWarehouse();
        this.action = Constants.ACTION_ADD;
    }
 
    public void onEditBtnClick() {
        if (this.selectedList == null || this.selectedList.size() == 0) {
            FacesUtils.warn("请选择数据。");
            return;
        }
        if (this.selectedList.size() > 1) {
            FacesUtils.warn("只能选择一个数据进行修改。");
            return;
        }
        this.sysWarehouse = this.sysWarehouseService.getSysWarehouse(this.selectedList.get(0).getId());
        this.action = Constants.ACTION_EDIT;
        RequestContext.getCurrentInstance().execute("PF('dialog').show()");
    }
 
    public void onSaveBtnClick() {
        try {
            // 新建
            if (this.action == Constants.ACTION_ADD) {
                if (this.sysWarehouse == null) {
                    FacesUtils.warn("新建对象为空。");
                    return;
                }
 
                if (this.sysWarehouseService.isSysWarehouseExist(this.sysWarehouse.getBarCode(), null)) {
                    FacesUtils.warn("地址条码已存在。");
                    return;
                }
 
                this.sysWarehouseService.insertSysWarehouse(sysWarehouse);
 
                FacesUtils.info("新建成功。");
                RequestContext.getCurrentInstance().execute("PF('dialog').hide()");
                // 修改
            } else if (this.action == Constants.ACTION_EDIT) {
                if (this.sysWarehouse == null) {
                    FacesUtils.warn("修改对象为空。");
                    return;
                }
 
                if (this.sysWarehouseService.isSysWarehouseExist(this.sysWarehouse.getBarCode(),
                        this.sysWarehouse.getId())) {
                    FacesUtils.warn("地址条码已存在。");
                    return;
                }
 
                this.sysWarehouseService.updateSysWarehouse(sysWarehouse);
 
                FacesUtils.info("修改成功。");
                RequestContext.getCurrentInstance().execute("PF('dialog').hide()");
            }
        } catch (Exception e) {
            logger.error("操作失败。", e);
            FacesUtils.warn("操作失败。");
        }
    }
 
    public void onDeleteBtnClick() {
        try {
            if (this.selectedList == null || this.selectedList.size() == 0) {
                FacesUtils.warn("请选择数据。");
                return;
            }
 
            this.sysWarehouseService.deleteSysWarehouse(this.selectedList);
 
            FacesUtils.info("删除成功。");
        } catch (Exception e) {
            logger.error("操作失败。", e);
            FacesUtils.warn("操作失败。");
        }
    }
 
    @SuppressWarnings("serial")
    public LazyDataModel<SysWarehouse> getDataModel() {
        if (this.dataModel == null) {
            this.dataModel = new LazyDataModel<SysWarehouse>() {
                @Override
                public List<SysWarehouse> load(int first, int pageSize, String sortField, SortOrder sortOrder,
                        Map<String, Object> filters) {
                    List<SysWarehouse> list = null;
                    try {
                        int count = sysWarehouseService.getSysWarehouseTotalCount(type, name);
                        this.setRowCount(count);
                        if (count > 0) {
                            list = sysWarehouseService.getSysWarehouseList(type, name, first, pageSize);
                        }
                    } catch (Exception e) {
                        logger.error(e);
                    }
                    return list;
                }
 
                @Override
                public SysWarehouse getRowData(String rowKey) {
                    Iterator<SysWarehouse> iterator = this.iterator();
                    if (iterator != null) {
                        SysWarehouse su = null;
                        while (iterator.hasNext()) {
                            su = iterator.next();
                            if (rowKey.equals(su.getId())) {
                                return su;
                            }
                        }
                    }
                    return null;
                }
            };
        }
        return dataModel;
    }
 
    public SysWarehouse getSysWarehouse() {
        return sysWarehouse;
    }
 
    public void setSysWarehouse(SysWarehouse sysWarehouse) {
        this.sysWarehouse = sysWarehouse;
    }
 
    public List<SysWarehouse> getSelectedList() {
        return selectedList;
    }
 
    public void setSelectedList(List<SysWarehouse> selectedList) {
        this.selectedList = selectedList;
    }
 
    public int getAction() {
        return action;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}