智慧农业后台管理
zengh
2022-07-19 64ce8e808e8b7dc95c79eecd9201d302d4335dfa
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
 *      Copyright (c) 2018-2028, Chill Zhuang 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 dreamlu.net 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: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.stockrecord.controller;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import lombok.AllArgsConstructor;
 
import javax.validation.Valid;
 
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springblade.modules.soldr.entity.Soldr;
import org.springblade.modules.soldr.service.ISoldrService;
import org.springblade.modules.soldr.vo.SoldrVO;
import org.springblade.modules.soldrecord.entity.Soldrecord;
import org.springblade.modules.soldrecord.service.ISoldrecordService;
import org.springblade.modules.stock.entity.Stock;
import org.springblade.modules.stock.service.IStockService;
import org.springblade.modules.system.entity.DictBiz;
import org.springblade.modules.system.service.IDictBizService;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.RequestParam;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.modules.stockrecord.entity.Stockrecord;
import org.springblade.modules.stockrecord.vo.StockrecordVO;
import org.springblade.modules.stockrecord.service.IStockrecordService;
import org.springblade.core.boot.ctrl.BladeController;
 
import java.util.List;
import java.util.Map;
 
/**
 * 出入库记录 控制器
 *
 * @author BladeX
 * @since 2022-05-12
 */
@RestController
@AllArgsConstructor
@RequestMapping("/stockrecord/stockrecord")
@Api(value = "出入库记录", tags = "出入库记录接口")
public class StockrecordController extends BladeController {
 
    private final IStockrecordService stockrecordService;
    private final IStockService stockService;
    private final IDictBizService dictService;
    private final ISoldrecordService soldrecordService;
    private final ISoldrService soldrService;
 
    /**
     * 详情
     */
    @GetMapping("/detail")
    @ApiOperationSupport(order = 1)
    @ApiOperation(value = "详情", notes = "传入stockrecord")
    public R<Stockrecord> detail(Stockrecord stockrecord) {
        Stockrecord detail = stockrecordService.getOne(Condition.getQueryWrapper(stockrecord));
        return R.data(detail);
    }
 
    /**
     * 分页 出入库记录
     */
    @GetMapping("/list")
    @ApiOperationSupport(order = 2)
    @ApiOperation(value = "分页", notes = "传入stockrecord")
    public R<IPage<Stockrecord>> list(Stockrecord stockrecord, Query query) {
        IPage<Stockrecord> pages = stockrecordService.page(Condition.getPage(query), Condition.getQueryWrapper(stockrecord));
        return R.data(pages);
    }
 
    /**
     * 自定义分页 出入库记录
     */
    @GetMapping("/page")
    @ApiOperationSupport(order = 3)
    @ApiOperation(value = "分页", notes = "传入stockrecord")
    public R<IPage<StockrecordVO>> page(StockrecordVO stockrecord, Query query) {
        IPage<StockrecordVO> pages = stockrecordService.seletStockRecordList(Condition.getPage(query), stockrecord);
        for (int i = 0; i < pages.getRecords().size(); i++) {
            String specs = pages.getRecords().get(i).getSpecs1();
            String dic1 = pages.getRecords().get(i).getDic1();
            String dic2 = pages.getRecords().get(i).getDic2();
            String s = specs + dic1 + "/" + dic2;
            //出库
            if (pages.getRecords().get(i).getStockType1() == 0) {
                String count = "-" + pages.getRecords().get(i).getAmount1() + dic2;
                pages.getRecords().get(i).setCount(count);
            } else {
                String count = "+" + pages.getRecords().get(i).getAmount1() + dic2;
                pages.getRecords().get(i).setCount(count);
            }
            pages.getRecords().get(i).setSpn(s);
            //获取农资出入库类型 0:出库 1:入库
            Integer stockType1 = pages.getRecords().get(i).getStockType1();
            String type1 = pages.getRecords().get(i).getType1();
            if (stockType1 == 0) {
                List<DictBiz> tree = dictService.getList("stockPurchase1");
                for (int j = 0; j < tree.size(); j++) {
                    if (tree.get(j).getDictKey().equals(type1)) {
                        pages.getRecords().get(i).setType1(tree.get(j).getDictValue());
                    }
                }
 
            } else {
                List<DictBiz> tree = dictService.getList("stockPurchase");
                for (int j = 0; j < tree.size(); j++) {
                    if (tree.get(j).getDictKey().equals(type1)) {
                        pages.getRecords().get(i).setType1(tree.get(j).getDictValue());
                    }
                }
            }
 
        }
        return R.data(pages);
    }
 
    /**
     * 新增 出入库记录
     */
    @PostMapping("/save")
    @ApiOperationSupport(order = 4)
    @ApiOperation(value = "新增", notes = "传入stockrecord")
    public R save(@Valid @RequestBody StockrecordVO stockrecord) {
        Integer stockType1 = stockrecord.getStockType1();
        //出库
        if (stockType1 == 0) {
            //库存量
            Integer num = stockrecord.getNum();
            //出库量
            Integer amount1 = stockrecord.getAmount1();
            //规格
            String specs1 = stockrecord.getSpecs1();
            int spe = Integer.parseInt(specs1);
            //当前总量
            int i = num - amount1;
            Stock stock = new Stock();
            stock.setId(stockrecord.getSid());
            stock.setAmount(i);
            //统计公斤
            Integer specsValue1 = stockrecord.getSpecsVal1();
            double v = 0;
            //克
            if (specsValue1 == 0) {
                v = amount1* spe * 0.001;
            }
            //斤
            if (specsValue1 == 1) {
                v = amount1* spe * 0.5;
            }
            //公斤
            if (specsValue1 == 2) {
                v = amount1* spe;
            }
            //吨
            if (specsValue1 == 3) {
                v = amount1 * spe * 1000;
            }
            //毫升
            if (specsValue1 == 4) {
                //毫升换成升
                double s = amount1* spe * 0.001;
                //升换成公斤
                v = s;
            }
            //升
            if (specsValue1 == 5) {
                v = amount1* spe;
            }
            stockrecord.setCensus(v);
            if (i == 0) {
                stock.setState("1");
                stockService.UpdaeAmountc(stock);
                //同时删除所有农资记录
                soldrecordService.delc(stockrecord.getStockId1());
                soldrService.del(stockrecord.getSid());
            } else {
                stock.setState("0");
                stockService.UpdaeAmountc(stock);
            }
            //已出库农资记录
            Soldrecord soldrecord = new Soldrecord();
            soldrecord.setStockId1(stockrecord.getStockId1());
            soldrecord.setAmount1(amount1);
            soldrecord.setSpecs1(stockrecord.getSpecs1());
            soldrecord.setSpecsVal1(stockrecord.getSpecsVal1());
            soldrecord.setSpecsVal2(stockrecord.getSpecsVal2());
            soldrecord.setType(stockrecord.getType1());
            soldrecord.setSid(stockrecord.getSid());
            String type1 = stockrecord.getType1();
            if (type1.equals("0")) {
                //已出库农资数量记录
                Soldr soldr = new Soldr();
                soldr.setSid(stockrecord.getSid());
                soldr.setStockId1(stockrecord.getStockId1());
                soldr.setAmount1(amount1);
                soldr.setSpecs1(stockrecord.getSpecs1());
                soldr.setSpecsVal1(stockrecord.getSpecsVal1());
                soldr.setSpecsVal2(stockrecord.getSpecsVal2());
                soldr.setType(stockrecord.getType1());
                soldr.setCensus(v);
                //已出库农资数量
                List<Map<String, Object>> maps = soldrService.selectCz(stockrecord.getSid());
                if (maps.size()!=0) {
                    String a = maps.get(0).get("amount1").toString();
                    Integer amount11=Integer.parseInt(a);
                    String amount12 = maps.get(0).get("amount1").toString();
                    Double census = Double.parseDouble(amount12);
                    String sid = maps.get(0).get("sid").toString();
                    Long si=Long.valueOf(sid);
                    soldrecordService.updateSold(amount11 + amount1, si,census+v);
                } else {
                    soldrService.save(soldr);
                }
                //已出库农资
                soldrecordService.save(soldrecord);
            }
        }
        //入库
        else {
            //库存量
            Integer num = stockrecord.getNum();
            //入库量
            Integer amount1 = stockrecord.getAmount1();
            String specs1 = stockrecord.getSpecs1();
            int spe=Integer.parseInt(specs1);
            //当前总量
            int i = num + amount1;
            Stock stock = new Stock();
            stock.setId(stockrecord.getSid());
            stock.setAmount(i);
            stock.setState("0");
            stockService.UpdaeAmountc(stock);
            //统计公斤
            Integer specsValue1 = stockrecord.getSpecsVal1();
            double v = 0;
            //克
            if (specsValue1 == 0) {
                v = amount1*spe * 0.001;
            }
            //斤
            if (specsValue1 == 1) {
                v = amount1*spe * 0.5;
            }
            //公斤
            if (specsValue1 == 2) {
                v = amount1*spe;
            }
            //吨
            if (specsValue1 == 3) {
                v = amount1*spe * 1000;
            }
            //毫升
            if (specsValue1 == 4) {
                //毫升换成升
                double s = amount1*spe * 0.001;
                //升换成公斤
                v = s;
            }
            //升
            if (specsValue1 == 5) {
                v = amount1*spe;
            }
            stockrecord.setCensus(v);
        }
        return R.status(stockrecordService.save(stockrecord));
    }
 
    /**
     * 修改 出入库记录
     */
    @PostMapping("/update")
    @ApiOperationSupport(order = 5)
    @ApiOperation(value = "修改", notes = "传入stockrecord")
    public R update(@Valid @RequestBody Stockrecord stockrecord) {
        return R.status(stockrecordService.updateById(stockrecord));
    }
 
    /**
     * 新增或修改 出入库记录
     */
    @PostMapping("/submit")
    @ApiOperationSupport(order = 6)
    @ApiOperation(value = "新增或修改", notes = "传入stockrecord")
    public R submit(@Valid @RequestBody Stockrecord stockrecord) {
        return R.status(stockrecordService.saveOrUpdate(stockrecord));
    }
 
 
    /**
     * 删除 出入库记录
     */
    @PostMapping("/remove")
    @ApiOperationSupport(order = 7)
    @ApiOperation(value = "逻辑删除", notes = "传入ids")
    public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
        return R.status(stockrecordService.deleteLogic(Func.toLongList(ids)));
    }
 
 
}