|
@@ -5,11 +5,28 @@
|
|
|
package com.tofly.monitor.service.impl;
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.tofly.monitor.common.Constant;
|
|
|
+import com.tofly.monitor.common.em.FileTableEnum;
|
|
|
+import com.tofly.monitor.common.entity.vo.FileInfo;
|
|
|
+import com.tofly.monitor.common.service.IFileInfoService;
|
|
|
+import com.tofly.monitor.service.QrcodeService;
|
|
|
import com.tofly.monitor.service.TfStocksInstockInfoService;
|
|
|
+import com.tofly.monitor.service.export.ExportCommonCodeService;
|
|
|
+import com.tofly.pojo.Device;
|
|
|
import com.tofly.pojo.TfStocksInstockInfo;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.tofly.monitor.mapper.TfStocksInstockInfoMapper;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
* 库存入库信息表
|
|
@@ -20,4 +37,42 @@ import com.tofly.monitor.mapper.TfStocksInstockInfoMapper;
|
|
|
@Service("tfStocksInstockInfoService")
|
|
|
public class TfStocksInstockInfoServiceImpl extends ServiceImpl<TfStocksInstockInfoMapper, TfStocksInstockInfo> implements TfStocksInstockInfoService {
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IFileInfoService iFileInfoService;
|
|
|
+
|
|
|
+ @Value("${snws.ftp.stocksInstockInfo}")
|
|
|
+ private String path;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean saveStocksInstockInfo(TfStocksInstockInfo entity, List<MultipartFile> fileIds) {
|
|
|
+ List<FileInfo> fileInfos = iFileInfoService.saveFileList(fileIds, path, FileTableEnum.tf_ywpn_monitor_device_w.getTableName());
|
|
|
+ entity.setAnnex(JSON.toJSONString(fileInfos));
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
+ entity.setInstockNo("RK" + sdf.format(new Date()) + "0001");
|
|
|
+
|
|
|
+ this.save(entity);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean updateStocksInstockInfoById(TfStocksInstockInfo entity, List<MultipartFile> fileIds) {
|
|
|
+ TfStocksInstockInfo entityQuery = this.getById(entity.getId());
|
|
|
+
|
|
|
+ String tableName = FileTableEnum.tf_ywpn_monitor_device_w.getTableName();
|
|
|
+
|
|
|
+ entity.setAnnex(iFileInfoService.getNewAnnex(entity.getAnnex(),fileIds,entityQuery.getAnnex(),path,tableName));
|
|
|
+ this.updateById(entity);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean deleteStocksInstockInfo(String ids) {
|
|
|
+ List<Long> idList = Arrays.stream(ids.split(Constant.CSV)).map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());
|
|
|
+ idList.forEach(info ->{
|
|
|
+ TfStocksInstockInfo entity = this.getById(info);
|
|
|
+ iFileInfoService.removeFileList(JSON.parseArray(entity.getAnnex(),FileInfo.class));
|
|
|
+ });
|
|
|
+ this.removeByIds(idList);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|