租赁协议

This commit is contained in:
liang.chao 2024-12-18 09:12:40 +08:00
parent 06ff503f87
commit c79f31ed7d
1 changed files with 4 additions and 4 deletions

View File

@ -175,7 +175,7 @@ public class OrderController extends BaseController {
} }
} }
/* @ApiOperation(value = "租赁协议(查看)") @ApiOperation(value = "租赁协议(查看)")
@GetMapping("/leaseAgreement") @GetMapping("/leaseAgreement")
public AjaxResult leaseAgreement(String orderId, Map<String, String> replacements) throws IOException, ParseException { public AjaxResult leaseAgreement(String orderId, Map<String, String> replacements) throws IOException, ParseException {
OrderInfoDto orderInfoDto = orderService.getAgreementByOrderId(orderId); OrderInfoDto orderInfoDto = orderService.getAgreementByOrderId(orderId);
@ -241,7 +241,7 @@ public class OrderController extends BaseController {
MultipartFile file = new MockMultipartFile("contract", "contract.docx", MediaType.APPLICATION_OCTET_STREAM_VALUE, wordBytes); MultipartFile file = new MockMultipartFile("contract", "contract.docx", MediaType.APPLICATION_OCTET_STREAM_VALUE, wordBytes);
return sysFileService.upload(file); return sysFileService.upload(file);
}*/ }
/* @ApiOperation(value = "购物车协议(查看)") /* @ApiOperation(value = "购物车协议(查看)")
@GetMapping("/bookCarAgreement") @GetMapping("/bookCarAgreement")
@ -306,7 +306,7 @@ public class OrderController extends BaseController {
}*/ }*/
@ApiOperation(value = "租赁协议(查看)") /* @ApiOperation(value = "租赁协议(查看)")
@GetMapping("/leaseAgreement") @GetMapping("/leaseAgreement")
public AjaxResult getleaseAgreement(String orderId, Map<String, String> replacements) throws ParseException { public AjaxResult getleaseAgreement(String orderId, Map<String, String> replacements) throws ParseException {
OrderInfoDto orderInfoDto = orderService.getAgreementByOrderId(orderId); OrderInfoDto orderInfoDto = orderService.getAgreementByOrderId(orderId);
@ -347,7 +347,7 @@ public class OrderController extends BaseController {
StrSubstitutor sub = new StrSubstitutor(replacements); StrSubstitutor sub = new StrSubstitutor(replacements);
String result = sub.replace(bmContract.getContent()); String result = sub.replace(bmContract.getContent());
return AjaxResult.success(result); return AjaxResult.success(result);
} }*/
@ApiOperation(value = "购物车协议(查看)") @ApiOperation(value = "购物车协议(查看)")
@PostMapping("/bookCarAgreement") @PostMapping("/bookCarAgreement")