Browse Source

2024.9.3 一、加工中心上传SOP(第一版)

二、生产订单-生产通知单(第一版)
master
yuejiayang 1 year ago
parent
commit
f8f7915df5
  1. 2
      src/main/java/com/gaotao/modules/base/service/Impl/BaseServiceImpl.java

2
src/main/java/com/gaotao/modules/base/service/Impl/BaseServiceImpl.java

@ -2813,7 +2813,7 @@ public class BaseServiceImpl implements BaseService {
String newFileName = RandomUtil.getOrderNoByAtomic1("file") + suffix; String newFileName = RandomUtil.getOrderNoByAtomic1("file") + suffix;
String basePath = filePath; String basePath = filePath;
String baseDatePath = DateUtils.format(new Date()); String baseDatePath = DateUtils.format(new Date());
File baseFilePath = new File(basePath + "\\" + baseDatePath + "\\" + inData.getFolder());
File baseFilePath = new File(basePath + "\\" + baseDatePath);
if (!baseFilePath.exists()) { if (!baseFilePath.exists()) {
baseFilePath.mkdirs(); baseFilePath.mkdirs();
} }

Loading…
Cancel
Save