李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
/*
 *    Copyright (c) 2018-2025, ztt All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 * Neither the name of the pig4cloud.com developer nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 * Author: ztt
 */
 
package com.chinaztt.mes.basic.controller;
 
import com.alibaba.excel.EasyExcel;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.chinaztt.mes.basic.dto.LocationDTO;
import com.chinaztt.mes.basic.entity.Location;
import com.chinaztt.mes.basic.entity.Warehouse;
import com.chinaztt.mes.basic.excel.LocationData;
import com.chinaztt.mes.basic.excel.LocationUploadListener;
import com.chinaztt.mes.basic.service.LocationService;
import com.chinaztt.mes.basic.service.WarehouseService;
import com.chinaztt.mes.common.wrapper.QueryWrapperUtil;
import com.chinaztt.ztt.common.core.util.R;
import com.chinaztt.ztt.common.log.annotation.SysLog;
import com.chinaztt.ztt.common.security.annotation.Inner;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.AllArgsConstructor;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
 
 
/**
 * 库位基础数据
 *
 * @author sunxl
 * @date 2020-09-21 08:18:12
 */
@RestController
@AllArgsConstructor
@RequestMapping("/location")
@Api(value = "location", tags = "库位基础数据管理")
public class LocationController {
    private final LocationService locationService;
    private final WarehouseService warehouseService;
 
    /**
     * 分页查询
     *
     * @param page     分页对象
     * @param location 库位基础数据
     * @return
     */
    @ApiOperation(value = "分页查询", notes = "分页查询")
    @GetMapping("/page")
    @PreAuthorize("@pms.hasPermission('basic_location_view')")
    public R getLocationPage(Page page, LocationDTO location) {
        return R.ok(locationService.getLoc(page, QueryWrapperUtil.gen(location)));
    }
 
    /**
     * 分页查询
     *
     * @param page        分页对象
     * @param locationDTO 库位
     * @return
     */
    @ApiOperation(value = "分页查询", notes = "分页查询")
    @GetMapping("/pageDto")
    @PreAuthorize("@pms.hasPermission('basic_location_view')")
    public R getLocationDtoPage(Page page, LocationDTO locationDTO) {
        return R.ok(locationService.getLocationDtoPage(page, QueryWrapperUtil.gen(locationDTO)));
    }
 
 
    /**
     * 通过id查询库位基础数据
     *
     * @param id id
     * @return R
     */
    @ApiOperation(value = "通过id查询", notes = "通过id查询")
    @GetMapping("/{id}")
    @PreAuthorize("@pms.hasPermission('basic_location_view')")
    public R getById(@PathVariable("id") Long id) {
        return R.ok(locationService.getById(id));
    }
 
    /**
     * 新增库位基础数据
     *
     * @param location 库位基础数据
     * @return R
     */
    @ApiOperation(value = "新增库位基础数据", notes = "新增库位基础数据")
    @SysLog("新增库位基础数据")
    @PostMapping
    @PreAuthorize("@pms.hasPermission('basic_location_add')")
    public R save(@RequestBody Location location) {
        Location locationByFind = locationService.getOne(Wrappers.<Location>lambdaQuery().eq(Location::getLocNo, location.getLocNo()));
        if (locationByFind != null) {
            throw new RuntimeException("仓库编号重复:" + locationByFind.getLocNo() + "-" + locationByFind.getLocGroup());
        }
        return R.ok(locationService.save(location));
    }
 
    /**
     * excel上传
     *
     * @return
     */
    @PostMapping("/upload")
    public R upload(@RequestParam("file") MultipartFile file) {
        try {
            List<Warehouse> warehouseList = warehouseService.list();
            Map<String, Warehouse> map = warehouseList.stream().collect(Collectors.toMap(Warehouse::getWarehouseName, warehouse -> warehouse, (k1, k2) -> k1));
            EasyExcel.read(file.getInputStream(), LocationData.class, new LocationUploadListener(locationService, map)).sheet().doRead();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return R.ok();
    }
 
    /**
     * 修改库位基础数据
     *
     * @param location 库位基础数据
     * @return R
     */
    @ApiOperation(value = "修改库位基础数据", notes = "修改库位基础数据")
    @SysLog("修改库位基础数据")
    @PutMapping
    @PreAuthorize("@pms.hasPermission('basic_location_edit')")
    public R updateById(@RequestBody Location location) {
        Location locationByFind = locationService.getOne(Wrappers.<Location>lambdaQuery().eq(Location::getLocNo, location.getLocNo()).ne(Location::getId, location.getId()));
        if (locationByFind != null) {
            throw new RuntimeException("仓库编号重复:" + locationByFind.getLocNo() + "-" + locationByFind.getLocGroup());
        }
 
        return R.ok(locationService.updateById(location));
    }
 
    /**
     * 通过id删除库位基础数据
     *
     * @param id
     * @return R
     */
    @ApiOperation(value = "通过id删除库位基础数据", notes = "通过id删除库位基础数据")
    @SysLog("通过id删除库位基础数据")
    @DeleteMapping("/{id}")
    @PreAuthorize("@pms.hasPermission('basic_location_del')")
    public R removeById(@PathVariable Long id) {
        return R.ok(locationService.removeById(id));
    }
 
    /**
     * @param warehouse
     * @return
     */
    @GetMapping("/warehouse")
    public List<Warehouse> loadWarehouse(Warehouse warehouse) {
        return warehouseService.list(Wrappers.query(warehouse));
    }
 
    /**
     * @param location
     * @return
     */
    @GetMapping("/location")
    @Inner(value = false)
    public R loadLocation(Location location) {
        return R.ok(locationService.list(Wrappers.query(location)));
    }
 
    /**
     * @param location
     * @return
     */
    @GetMapping("/prepareLocation")
    public R loadPrepareLocation(Location location) {
        return R.ok(locationService.getPrepare(location));
    }
 
    /**
     * PDA查询所有
     *
     * @param locationDTO 库位
     * @return
     */
    @ApiOperation(value = "PDA查询所有", notes = "PDA查询所有")
    @GetMapping("/pda/list")
    @Inner(false)
    public R pdaList(LocationDTO locationDTO) {
        return R.ok(locationService.pdaList(QueryWrapperUtil.gen(locationDTO)));
    }
 
 
    /**
     * 查询退库默认库位
     *
     * @return
     */
    @ApiOperation(value = "查询退库默认库位", notes = "查询退库默认库位")
    @GetMapping("/getDeaultLocation")
    @Inner(false)
    public R getDeaultLocation() {
        return R.ok(locationService.getDeaultLocation());
    }
 
    /**
     * 查询ifs库位数据
     *
     * @return
     */
    @ApiOperation(value = "查询ifs库位数据", notes = "查询ifs库位数据")
    @GetMapping("/getIfsLocation")
    public R getIfsLocation(String locationGroup, String locationNo, String locationDesc) {
        return locationService.getIfsLocation(locationGroup, locationNo, locationDesc);
    }
 
    /**
     * 查询ifs库位分组数据
     *
     * @return
     */
    @ApiOperation(value = "查询ifs库位分组接口", notes = "查询ifs库位分组接口")
    @GetMapping("/getIfsLocationGroup")
    public R getIfsLocationGroup() {
        return locationService.getIfsLocationGroup();
    }
 
 
    /**
     * 通过所属仓库分组查询库位号
     *
     * @param id id
     * @return R
     */
    @ApiOperation(value = "通过所属仓库分组查询库位号", notes = "通过所属仓库分组查询库位号")
    @GetMapping("/getLocationByGroups")
    public R getLocationByGroups(@RequestParam List<Long> localGroups) {
        return R.ok(locationService.getLocationByGroups(localGroups));
    }
 
 
 
 
}