|
1
2
|
package com.huaheng.pc.config.cycleCountPreference.service;
|
|
3
4
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
5
6
|
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
|
|
7
|
import com.huaheng.pc.config.containerType.domain.ContainerType;
|
|
8
9
|
import com.huaheng.pc.inventory.cycleCountDetail.domain.CycleCountDetail;
import com.huaheng.pc.inventory.cycleCountDetail.service.CycleCountDetailService;
|
|
10
|
import com.huaheng.pc.receipt.receiptHeader.domain.ReceiptHeader;
|
|
11
12
|
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
|
|
13
|
import java.text.SimpleDateFormat;
|
|
14
|
import java.util.Date;
|
|
15
16
17
18
|
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.config.cycleCountPreference.mapper.CycleCountPreferenceMapper;
import com.huaheng.pc.config.cycleCountPreference.domain.CycleCountPreference;
|
|
19
20
|
import org.springframework.transaction.annotation.Transactional;
|
|
21
22
23
|
@Service
public class CycleCountPreferenceService extends ServiceImpl<CycleCountPreferenceMapper, CycleCountPreference> {
|
|
24
25
26
27
28
29
30
31
|
/**
*新增盘点首选项
* @param cycleCountPreference
* @return
*/
@Transactional
public AjaxResult addSave (CycleCountPreference cycleCountPreference){
|
|
32
|
cycleCountPreference.setCode(newCode());
|
|
33
34
35
36
37
38
39
40
41
|
cycleCountPreference.setWarehouseCode(ShiroUtils.getWarehouseCode());
cycleCountPreference.setCreatedBy(ShiroUtils.getLoginName());
cycleCountPreference.setCreated(new Date());
cycleCountPreference.setLastUpdatedBy(ShiroUtils.getLoginName());
this.save(cycleCountPreference);
return AjaxResult.success("新增完成!");
}
|
|
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
|
/**
* 自动生成盘点首选项Code
* 使用特定字段和ID组合成Code
*/
public String newCode(){
//先查询前一个ID生成当前的数字,再拼接
String code = null;
Date now = new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
LambdaQueryWrapper<CycleCountPreference> lambda = Wrappers.lambdaQuery();
lambda.select(CycleCountPreference::getCode)
.orderByDesc(CycleCountPreference::getId).last("Limit 1");
// code = ccp + 日期 + (排序号 + 1)
String maxCode = null;
CycleCountPreference cycleCountPreference = this.getOne(lambda);
if ( cycleCountPreference != null){
maxCode = this.getOne(lambda).getCode();
}
if (maxCode != null && maxCode.substring(maxCode.length() - 13, maxCode.length() - 5).equals(df.format(now))) {
Integer Count = Integer.valueOf(maxCode.substring(maxCode.length() - 5 ));
code = "ccp" + df.format(now) + String.format("%05d", Count + 1);
} else {
code = "ccp" + df.format(now) +"00001";
}
return code;
}
|
|
69
70
71
72
73
74
75
|
/**
* 复制盘点首选项表
*
* @param warehouseCode 原仓库编码
* @param newWarehouseCode 新仓库编码
* @return 是否复制成功
*/
|
|
76
|
@Transactional
|
|
77
78
79
80
81
82
83
84
|
public boolean cycleCountPreferenceCopy(String warehouseCode, String newWarehouseCode) {
log.trace("开始复盘点首选项表");
LambdaQueryWrapper<CycleCountPreference> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(CycleCountPreference::getWarehouseCode, newWarehouseCode);
if (!this.list(lambdaQueryWrapper).isEmpty()){
log.error(newWarehouseCode+"仓库已存在");
return false;
}
|
|
85
86
|
lambdaQueryWrapper = Wrappers.lambdaQuery();
|
|
87
88
89
90
91
92
93
|
lambdaQueryWrapper.eq(CycleCountPreference::getWarehouseCode, warehouseCode);
List<CycleCountPreference> cycleCountPreferenceList = this.list(lambdaQueryWrapper);
for ( CycleCountPreference countPreference : cycleCountPreferenceList) {
countPreference.setId(null);
countPreference.setWarehouseCode(newWarehouseCode);
}
|
|
94
|
|
|
95
96
97
98
99
100
101
|
if ( this.saveBatch(cycleCountPreferenceList) ){
log.trace("复制盘点首选项表成功,新仓库编码是:"+newWarehouseCode);
return true;
} else {
return false;
}
}
|
|
102
103
|
|
|
104
105
106
107
108
109
|
|
|
110
|
}
|