yuansh 1 ヶ月 前
コミット
3fecbd90af

+ 108 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/CommonController.java

@@ -120,6 +120,114 @@ public class CommonController {
         return result;
     }
 
+    /**
+     * 文件上传统一方法(修改版 固定上传至template文件夹,用于导出模板设置)
+     * @param request
+     * @param response
+     * @return
+     */
+    @PostMapping(value = "/upload2")
+    public Result<?> upload2(HttpServletRequest request, HttpServletResponse response) throws Exception {
+        Result<?> result = new Result<>();
+        String savePath = "";
+        String bizPath = request.getParameter("biz");
+
+        //LOWCOD-2580 sys/common/upload接口存在任意文件上传漏洞
+        if (oConvertUtils.isNotEmpty(bizPath)) {
+            if(bizPath.contains(SymbolConstant.SPOT_SINGLE_SLASH) || bizPath.contains(SymbolConstant.SPOT_DOUBLE_BACKSLASH)){
+                throw new JeecgBootException("上传目录bizPath,格式非法!");
+            }
+        }
+
+        MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
+        // 获取上传文件对象
+        MultipartFile file = multipartRequest.getFile("file");
+        if(oConvertUtils.isEmpty(bizPath)){
+            if(CommonConstant.UPLOAD_TYPE_OSS.equals(uploadType)){
+                //未指定目录,则用阿里云默认目录 upload
+                bizPath = "upload";
+                //result.setMessage("使用阿里云文件上传时,必须添加目录!");
+                //result.setSuccess(false);
+                //return result;
+            }else{
+                bizPath = "";
+            }
+        }
+        if(CommonConstant.UPLOAD_TYPE_LOCAL.equals(uploadType)){
+            //update-begin-author:liusq date:20221102 for: 过滤上传文件类型
+            SsrfFileTypeFilter.checkUploadFileType(file);
+            //update-end-author:liusq date:20221102 for: 过滤上传文件类型
+            //update-begin-author:lvdandan date:20200928 for:修改JEditor编辑器本地上传
+            savePath = this.uploadLocal2(file,bizPath);
+            //update-begin-author:lvdandan date:20200928 for:修改JEditor编辑器本地上传
+            /**  富文本编辑器及markdown本地上传时,采用返回链接方式
+            //针对jeditor编辑器如何使 lcaol模式,采用 base64格式存储
+            String jeditor = request.getParameter("jeditor");
+            if(oConvertUtils.isNotEmpty(jeditor)){
+                result.setMessage(CommonConstant.UPLOAD_TYPE_LOCAL);
+                result.setSuccess(true);
+                return result;
+            }else{
+                savePath = this.uploadLocal(file,bizPath);
+            }
+            */
+        }else{
+            //update-begin-author:taoyan date:20200814 for:文件上传改造
+            savePath = CommonUtils.upload(file, bizPath, uploadType);
+            //update-end-author:taoyan date:20200814 for:文件上传改造
+        }
+        if(oConvertUtils.isNotEmpty(savePath)){
+            result.setMessage(savePath);
+            result.setSuccess(true);
+        }else {
+            result.setMessage("上传失败!");
+            result.setSuccess(false);
+        }
+        return result;
+    }
+
+    /**
+     * 本地文件上传
+     * @param mf 文件
+     * @param bizPath  自定义路径
+     * @return
+     */
+    private String uploadLocal2(MultipartFile mf,String bizPath){
+        try {
+            String ctxPath = uploadpath+"/template";
+            String fileName = null;
+            File file = new File(ctxPath + File.separator + bizPath + File.separator );
+            if (!file.exists()) {
+                // 创建文件根目录
+                file.mkdirs();
+            }
+            // 获取文件名
+            String orgName = mf.getOriginalFilename();
+            orgName = CommonUtils.getFileName(orgName);
+            if(orgName.indexOf(SymbolConstant.SPOT)!=-1){
+                fileName = orgName.substring(0, orgName.lastIndexOf(".")) + "_" + System.currentTimeMillis() + orgName.substring(orgName.lastIndexOf("."));
+            }else{
+                fileName = orgName+ "_" + System.currentTimeMillis();
+            }
+            String savePath = file.getPath() + File.separator + fileName;
+            File savefile = new File(savePath);
+            FileCopyUtils.copy(mf.getBytes(), savefile);
+            String dbpath = null;
+            if(oConvertUtils.isNotEmpty(bizPath)){
+                dbpath = bizPath + File.separator + fileName;
+            }else{
+                dbpath = fileName;
+            }
+            if (dbpath.contains(SymbolConstant.DOUBLE_BACKSLASH)) {
+                dbpath = dbpath.replace(SymbolConstant.DOUBLE_BACKSLASH, SymbolConstant.SINGLE_SLASH);
+            }
+            return dbpath;
+        } catch (IOException e) {
+            log.error(e.getMessage(), e);
+        }
+        return "";
+    }
+
     /**
      * 本地文件上传
      * @param mf 文件

+ 3 - 0
srm-module-code/src/main/java/org/jeecg/modules/cuspCode/entity/CuspCustomerProfile.java

@@ -111,14 +111,17 @@ public class CuspCustomerProfile implements Serializable {
 	/**币种*/
 	@Excel(name = "币种", width = 15)
     @ApiModelProperty(value = "币种")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String currency;
 	/**国家*/
 	@Excel(name = "国家(country)", width = 15)
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     @ApiModelProperty(value = "国家")
     private String country;
 	/**付款条件*/
 	@Excel(name = "付款条件(payment terms)", width = 15)
     @ApiModelProperty(value = "付款条件")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String paymentTerms;
 	/**信用额度*/
 	@Excel(name = "信用额度(credit limit)", width = 15)

+ 3 - 0
srm-module-code/src/main/java/org/jeecg/modules/cuspCode/entity/CuspSupplierProfile.java

@@ -154,12 +154,14 @@ public class CuspSupplierProfile implements Serializable {
      */
     @Excel(name = "国家(country)", width = 15)
     @ApiModelProperty(value = "国家")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String country;
     /**
      * 币种
      */
 //	@Excel(name = "币种", width = 15)
     @ApiModelProperty(value = "币种")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String currency;
     /**
      * 国外供应商
@@ -190,6 +192,7 @@ public class CuspSupplierProfile implements Serializable {
      */
     @Excel(name = "付款条件(payment terms)", width = 15)
     @ApiModelProperty(value = "付款条件")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String paymentTerms;
     /**
      * 银行代码

+ 5 - 0
srm-module-code/src/main/java/org/jeecg/modules/purCode/controller/PurOrderController.java

@@ -257,7 +257,12 @@ public class PurOrderController {
         }
         //提交(submit)1是0否
         String submit = purOrderEntity.getSubmit();
+        //关闭(close)1是0否
+        String close = purOrderEntity.getClose();
 
+        if (StringUtils.isNotBlank(close) && close.equals("1")) {
+            return Result.error("已关闭的单据不能进行修订!");
+        }
         if (submit == null || submit == "" || !submit.equals("1")) {
             return Result.error("未提交的单据不能进行修订!");
         }

+ 1 - 0
srm-module-code/src/main/java/org/jeecg/modules/purCode/entity/PurPaymentRequest.java

@@ -114,6 +114,7 @@ public class PurPaymentRequest implements Serializable {
 	/**币种(currency)*/
 	@Excel(name = "币种(currency)", width = 15)
     @ApiModelProperty(value = "币种(currency)")
+    @Dict(dictTable = "sys_dict_item", dicCode = "item_value", dicText = "item_text")
     private String currency;
 	/**委托收款证明(Entrusted Collection Certificate)*/
 	@Excel(name = "委托收款证明(Entrusted Collection Certificate)", width = 15)

+ 10 - 4
srm-module-code/src/main/java/org/jeecg/modules/purCode/service/impl/PurPaymentRequestServiceImpl.java

@@ -37,15 +37,21 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
 	@Transactional(rollbackFor = Exception.class)
 	public void saveMain(PurPaymentRequest purPaymentRequest, List<PurPaymentRequestDetails> purPaymentRequestDetailsList) {
 
+		String sourceCode = "";
 		BigDecimal approveMoney = BigDecimal.ZERO;
 		if(purPaymentRequestDetailsList!=null && purPaymentRequestDetailsList.size()>0) {
 			for(PurPaymentRequestDetails entity:purPaymentRequestDetailsList) {
-
+				String source = entity.getPurchaseCode();
+				if(StringUtils.isEmpty(sourceCode)){
+					sourceCode = source;
+				}else{
+					sourceCode = sourceCode+","+source;
+				}
 				BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();
 				approveMoney = approveMoney.add(applyMoney);
 			}
 		}
-
+		purPaymentRequest.setSourceCode(sourceCode);
 		purPaymentRequest.setApproveMoney(approveMoney);
 
 		purPaymentRequestMapper.insert(purPaymentRequest);
@@ -74,7 +80,7 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
 
 					totalAmountUsed = applyMoney.add(totalAmountUsed);
 
-					if(totalAmount.compareTo(totalAmountUsed) < 1){
+					if(totalAmount.compareTo(totalAmountUsed) < 0){
 						throw new RuntimeException(order.getBillCode()+"金额不足(剩余:"+totalAmount.subtract(order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed())+"),请重新填写申请金额!");
 					}
 
@@ -165,7 +171,7 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
 
 					totalAmountUsed = applyMoney.add(totalAmountUsed);
 
-					if(totalAmount.compareTo(totalAmountUsed) < 1){
+					if(totalAmount.compareTo(totalAmountUsed) < 0){
 						throw new RuntimeException(order.getBillCode()+"金额不足(剩余:"+totalAmount.subtract(order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed())+"),请重新填写申请金额!");
 					}
 

+ 6 - 0
srm-module-code/src/main/java/org/jeecg/modules/saleCode/controller/SaleContractController.java

@@ -204,6 +204,12 @@ public class SaleContractController {
             return Result.error("未提交的单据不能进行修订!");
         }
 
+        //关闭(close)1是0否
+        Integer close = saleContractEntity.getIsClose();
+
+        if (close != null && close == 1) {
+            return Result.error("已关闭的单据不能进行修订!");
+        }
         String version = saleContractEntity.getVersion();
         int newV = Integer.valueOf(version) + 1;
 

+ 23 - 0
srm-module-code/src/main/java/org/jeecg/modules/saleCode/controller/SaleDeliveryController.java

@@ -140,7 +140,30 @@ public class SaleDeliveryController {
     }
 
     /**
+     * 分页列表查询(销售出库整单参照使用)
      *
+     * @param saleDelivery
+     * @param pageNo
+     * @param pageSize
+     * @param req
+     * @return
+     */
+    //@AutoLog(value = "发货通知单(delivery notice)-分页列表查询")
+    @ApiOperation(value = "发货通知单(delivery notice)-分页列表查询", notes = "发货通知单(delivery notice)-分页列表查询")
+    @GetMapping(value = "/listAlert")
+    @PermissionData(pageComponent="saleCode/deliveryNotice/deliveryNoticeList")
+    public Result<IPage<SaleDelivery>> queryPageListAlert(SaleDelivery saleDelivery,
+                                                     @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+                                                     @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
+                                                     HttpServletRequest req) {
+        QueryWrapper<SaleDelivery> queryWrapper = QueryGenerator.initQueryWrapper(saleDelivery, req.getParameterMap());
+        Page<SaleDelivery> page = new Page<SaleDelivery>(pageNo, pageSize);
+        IPage<SaleDelivery> pageList = saleDeliveryService.page(page, queryWrapper);
+        return Result.OK(pageList);
+    }
+
+    /**
+     * 不在使用
      * @param saleInquiryForm
      * @param pageNo
      * @param pageSize

+ 6 - 0
srm-module-code/src/main/java/org/jeecg/modules/saleCode/controller/SaleOrderController.java

@@ -341,6 +341,12 @@ public class SaleOrderController {
         if (submit == null || submit == "" || !submit.equals("1")) {
             return Result.error("未提交的单据不能进行修订!");
         }
+        //关闭(close)1是0否
+        String close = saleOrderEntity.getClose();
+
+        if (StringUtils.isNotBlank(close) && close.equals("1")) {
+            return Result.error("已关闭的单据不能进行修订!");
+        }
 
         String version = saleOrderEntity.getVersion();
         int newV = Integer.valueOf(version) + 1;

+ 2 - 2
srm-module-code/src/main/java/org/jeecg/modules/saleCode/mapper/xml/SaleDeliveryDetailsMapper.xml

@@ -16,7 +16,7 @@
     <select id="selectSaleDeliveryAlert" parameterType="java.lang.String"
             resultType="org.jeecg.modules.saleCode.vo.SaleDeliveryAlert">
         select *
-        from (select a.id            headId
+        from (select a.id            head_id
                    , b.id            child_id
                    , a.model         head_model
                    , b.model         child_model
@@ -58,7 +58,7 @@
     <select id="selectSaleDeliveryAlertInvoice" parameterType="java.lang.String"
             resultType="org.jeecg.modules.saleCode.vo.SaleDeliveryAlert">
         select *
-        from (select a.id            headId
+        from (select a.id            head_Id
                    , b.id            child_id
                    , a.model         head_model
                    , b.model         child_model