diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeign.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeign.java index 1566c3037c..e1ed7539b4 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeign.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeign.java @@ -89,7 +89,7 @@ public interface ScmSpecialrebateCheckapplyFeign { @ApiOperation("生成专项返利核对pdf") @PostMapping("/createPdf") @ResponseBody - ResultBean createPdf(@RequestParam("specialCheckSid") String specialCheckSid, @RequestParam("userName") String userName); + ResultBean createPdf(@RequestParam("specialCheckSid") String specialCheckSid, @RequestParam("userName") String userName); /**************************************专项返利核对审批流程*******************************************/ diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeignFallback.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeignFallback.java index 8c0c963bb2..4200fa9e16 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeignFallback.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyFeignFallback.java @@ -81,7 +81,7 @@ public class ScmSpecialrebateCheckapplyFeignFallback implements ScmSpecialrebate } @Override - public ResultBean createPdf(String specialCheckSid, String userName) { + public ResultBean createPdf(String specialCheckSid, String userName) { return null; } diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeign.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeign.java index b7c5e1b0df..f42dcb6b48 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeign.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeign.java @@ -89,7 +89,7 @@ public interface ScmSpecialRebateWithApplyFeign { @ApiOperation("生成专项返利预提pdf") @PostMapping("/createPdf") @ResponseBody - ResultBean createPdf(@RequestParam("specialWithSid") String specialWithSid, @RequestParam("userName") String userName); + ResultBean createPdf(@RequestParam("specialWithSid") String specialWithSid, @RequestParam("userName") String userName); /**************************************专项返利预提审批流程*******************************************/ diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeignFallback.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeignFallback.java index 57b37e52f7..863303265f 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeignFallback.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmspecialrebatewithapply/ScmSpecialRebateWithApplyFeignFallback.java @@ -78,7 +78,7 @@ public class ScmSpecialRebateWithApplyFeignFallback implements ScmSpecialRebateW } @Override - public ResultBean createPdf(String specialWithSid, String userName) { + public ResultBean createPdf(String specialWithSid, String userName) { return null; } diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeign.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeign.java index 242a8f65f6..c9d9d08cfa 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeign.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeign.java @@ -90,7 +90,7 @@ public interface ScmVehrebateCheckapplyFeign { @ApiOperation("生成单车返利核对pdf") @PostMapping("/createPdf") @ResponseBody - ResultBean createPdf(@RequestParam("vehCheckSid") String vehCheckSid, @RequestParam("userName") String userName); + ResultBean createPdf(@RequestParam("vehCheckSid") String vehCheckSid, @RequestParam("userName") String userName); /**************************************单车返利核对审批流程*******************************************/ diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeignFallback.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeignFallback.java index 35b39e80f2..45e10366fb 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeignFallback.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatecheckapply/ScmVehrebateCheckapplyFeignFallback.java @@ -78,7 +78,7 @@ public class ScmVehrebateCheckapplyFeignFallback implements ScmVehrebateCheckapp } @Override - public ResultBean createPdf(String vehCheckSid, String userName) { + public ResultBean createPdf(String vehCheckSid, String userName) { return null; } diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeign.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeign.java index c8cd83e86c..b11d5ecaea 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeign.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeign.java @@ -89,7 +89,7 @@ public interface ScmVehRebateWithApplyFeign { @ApiOperation("生成单车返利预提pdf") @PostMapping("/createPdf") @ResponseBody - ResultBean createPdf(@RequestParam("vehWithSid") String vehWithSid,@RequestParam("userName") String userName); + ResultBean createPdf(@RequestParam("vehWithSid") String vehWithSid,@RequestParam("userName") String userName); /**************************************单车返利预提审批流程*******************************************/ diff --git a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeignFallback.java b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeignFallback.java index c5e8c1793d..40bd10b03e 100644 --- a/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeignFallback.java +++ b/anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebatewithapply/ScmVehRebateWithApplyFeignFallback.java @@ -77,7 +77,7 @@ public class ScmVehRebateWithApplyFeignFallback implements ScmVehRebateWithApply } @Override - public ResultBean createPdf(String vehWithSid, String userName) { + public ResultBean createPdf(String vehWithSid, String userName) { return null; } diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyRest.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyRest.java index 41372b89a0..8b617459f0 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyRest.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyRest.java @@ -88,9 +88,9 @@ public class ScmSpecialrebateCheckapplyRest implements ScmSpecialrebateCheckappl } @Override - public ResultBean createPdf(String specialCheckSid, String userName) { + public ResultBean createPdf(String specialCheckSid, String userName) { ResultBean rb = ResultBean.fireFail(); - PdfPath pdf = scmSpecialrebateCheckapplyService.createPdf(specialCheckSid, userName); + String pdf = scmSpecialrebateCheckapplyService.createPdf(specialCheckSid, userName); return rb.success().setData(pdf); } diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyService.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyService.java index 6ac57ebe4c..9254e3f1d8 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyService.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatecheckapply/ScmSpecialrebateCheckapplyService.java @@ -1057,8 +1057,7 @@ public class ScmSpecialrebateCheckapplyService extends MybatisBaseService scmWhenSpecialrebateCheckapplydetailDetails = scmSpecialrebateCheckapplyDetailsVo.getScmWhenSpecialrebateCheckapplydetailDetails(); @@ -1168,8 +1167,7 @@ public class ScmSpecialrebateCheckapplyService extends MybatisBaseService createPdf(String specialWithSid, String userName) { + public ResultBean createPdf(String specialWithSid, String userName) { ResultBean rb = ResultBean.fireFail(); - PdfPath pdf = scmSpecialRebateWithApplyService.createPdf(specialWithSid, userName); + String pdf = scmSpecialRebateWithApplyService.createPdf(specialWithSid, userName); return rb.success().setData(pdf); } diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatewithapply/ScmSpecialRebateWithApplyService.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatewithapply/ScmSpecialRebateWithApplyService.java index d56562565f..bc7d282dcc 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatewithapply/ScmSpecialRebateWithApplyService.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmspecialrebatewithapply/ScmSpecialRebateWithApplyService.java @@ -719,8 +719,7 @@ public class ScmSpecialRebateWithApplyService extends MybatisBaseService scmSpecialRebateWiths = scmSpecialRebateWithApplyDetailsVo.getScmSpecialRebateWiths(); @@ -822,8 +821,7 @@ public class ScmSpecialRebateWithApplyService extends MybatisBaseService createPdf(String vehCheckSid, String userName) { + public ResultBean createPdf(String vehCheckSid, String userName) { ResultBean rb = ResultBean.fireFail(); - PdfPath pdf = scmVehrebateCheckapplyService.createPdf(vehCheckSid, userName); + String pdf = scmVehrebateCheckapplyService.createPdf(vehCheckSid, userName); return rb.success().setData(pdf); } diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatecheckapply/ScmVehrebateCheckapplyService.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatecheckapply/ScmVehrebateCheckapplyService.java index 46c6be2b17..04c80c7b17 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatecheckapply/ScmVehrebateCheckapplyService.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatecheckapply/ScmVehrebateCheckapplyService.java @@ -975,8 +975,7 @@ public class ScmVehrebateCheckapplyService extends MybatisBaseService scmWhenVehrebateCheckapplydetailDetails = scmVehrebateCheckapplyDetailsVo.getScmWhenVehrebateCheckapplydetailDetails(); @@ -1086,8 +1085,7 @@ public class ScmVehrebateCheckapplyService extends MybatisBaseService createPdf(String vehWithSid, String userName) { + public ResultBean createPdf(String vehWithSid, String userName) { ResultBean rb = ResultBean.fireFail(); - PdfPath pdf = scmVehRebateWithApplyService.createPdf(vehWithSid, userName); + String pdf = scmVehRebateWithApplyService.createPdf(vehWithSid, userName); return rb.success().setData(pdf); } diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatewithapply/ScmVehRebateWithApplyService.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatewithapply/ScmVehRebateWithApplyService.java index 93e820cf90..2fac7d62c8 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatewithapply/ScmVehRebateWithApplyService.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebatewithapply/ScmVehRebateWithApplyService.java @@ -769,8 +769,7 @@ public class ScmVehRebateWithApplyService extends MybatisBaseService scmVehRebateWiths = scmVehRebateWithApplyDetailsVo.getScmVehRebateWiths(); @@ -871,8 +870,7 @@ public class ScmVehRebateWithApplyService extends MybatisBaseService - + diff --git a/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxhd.ftl b/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxhd.ftl new file mode 100644 index 0000000000..c5c491e18a --- /dev/null +++ b/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxhd.ftl @@ -0,0 +1,3005 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${title!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 分公司: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${useOrgName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 创建部门: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${deptName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 创建人: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${createByName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 创建日期: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${createTime!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 办结日期: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${finishTime!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 审批编号: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${billNo!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + 序号 + + + + + + + + + + + + + + + + + + + + + + + + 采购系统 + + + + + + + + + + + + + + + + + + + + + + + 品牌 + + + + + + + + + + + + + + + + + + + + + + + + 返利类型 + + + + + + + + + + + + + + + + + + + + + + + 台数 + + + + + + + + + + + + + + + + + + + + + + + + 预提金额 + + + + + + + + + + + + + + + + + + + + + + + 其中预提费用 + + + + + + + + + + + + + + + + + + + + + + + + 上传金额 + + + + + + + + + + + + + + + + + + + + + + + 其中待确定金额 + + + + + + + + + + + + + + + + + + + + + + + + + 其中费用 + + + + + + + + + + + + + + + + + + + + + + + + 返利调整金额 + + + + + + + + + + + + + + + + + + + + + + + + 其中费用 + + + + + + + + + 调整金额 + + + + + <#list wlList as wl> + + + + + + + + + + + + + + + + + + + + + + + + ${wl.id!} + + + + + + + + + + + + + + + + + + + + + + + + ${wl.cgxt!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.pp!} + + + + + + + + + + + + + + + + + + + + + + + + ${wl.fllx!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.ts!} + + + + + + + + + + + + + + + + + + + + + + + + ${wl.ytje!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.ytfy!} + + + + + + + + + + + + + + + + + + + + + + + + ${wl.scje!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.dqdje!} + + + + + + + + + + + + + + + + + + + + + + + + ${wl.fy!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.tzje!} + + + + + + + + + + + + + + + + + + + + + + + ${wl.fytzje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 合计 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${tst!} + + + + + + + + + + + + + + + + + + + + + + + + ${ytjet!} + + + + + + + + + + + + + + + + + + + + + + + + ${ytfyt!} + + + + + + + + + + + + + + + + + + + + + + + + + ${scjet!} + + + + + + + + + + + + + + + + + + + + + + + ${dqdjet!} + + + + + + + + + + + + + + + + + + + + + + + + ${fyt!} + + + + + + + + + + + + + + + + + + + + + + + ${tzjet!} + + + + + + + + + + + + + + + + + + + + + + + ${fytzjet!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + 备注 + + + + + + + + + + + + + + + + + + + + + + + + ${remarks!} + + + + + + + + + + + + + + + + + + + + + + + + + + + 明细见导表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 审批流程 + + + + <#list lcList as lc> + <#if (lc_index==0)> + + + + + + + + + + + + + + + + + + + + + + + + + + ${lc.comment!} + + + + + + + + + + + + + + + + + + ${lc.name!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${lc.spsj!} + + + + + + + <#list lcList as lc> + <#if (lc_index>0)> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${lc.comment!} + + + + + + + + + + + + + + + + + + ${lc.name!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${lc.spsj!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 下载人: + + + + + + + + + + + + + + + + + + + + + + + + + + + ${downName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + 下载时间: + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${downTime!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + God + 10745413@qq.com + 2 + 2025-01-07T06:32:00Z + 2025-01-07T06:32:00Z + + + + + + + + 0 + 1 + 79 + 456 + Microsoft Office Word + 0 + 3 + 1 + false + + false + 534 + false + false + 16.0000 + + + + + + + + 2052-12.1.0.18912 + + + 904253E002864ACF82CED81570235AD9_12 + + + + + \ No newline at end of file diff --git a/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxyt.ftl b/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxyt.ftl index 0d19966d77..06cd403aa9 100644 --- a/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxyt.ftl +++ b/anrui-scm/anrui-scm-biz/src/main/resources/ftl/zxyt.ftl @@ -1398,7 +1398,7 @@ - +