shiyunteng
3 天以前 a0974f04b5a83e3ab152ce79e53f180e7b496165
platformx-business-finance-biz/src/main/java/com/by4cloud/platformx/business/controller/ContractController.java
@@ -143,13 +143,23 @@
   /**
    * 定时生成应收款账目
    * 定时生成应收逾期
    * @return R
    */
   @GetMapping("/genCurrentOverdue" )
   @Inner(value = false)
   public R genCurrentOverdue() {
      return contractService.genCurrentOverdue();
   }
   /**
    * 定时生成周期性应收
    * @return R
    */
   @GetMapping("/genCycleReceiced" )
   @Inner(value = false)
   public R genCycleReceiced() {
      return contractService.genCycleReceiced();
   }
   /**
@@ -185,4 +195,37 @@
   public void exportContractYMJJGCLWord(@PathVariable("id" ) Long id, HttpServletResponse response) {
      contractService.exportContractYMJJGCLWord(id,response);
   }
   /**
    * 根据模版生成word一煤机工业品买卖合同
    * @param id id
    * @return R
    */
   @Operation(summary = "根据模版生成word合同" , description = "根据模版生成word合同" )
   @GetMapping("/exportContractYMJGYPMMWord/{id}" )
   public void exportContractYMJGYPMMWord(@PathVariable("id" ) Long id, HttpServletResponse response) {
      contractService.exportContractYMJGYPMMWord(id,response);
   }
   /**
    * 根据模版生成word一煤机工矿产品买卖合同
    * @param id id
    * @return R
    */
   @Operation(summary = "根据模版生成word合同" , description = "根据模版生成word合同" )
   @GetMapping("/exportContractYMJGKCPMMWord/{id}" )
   public void exportContractYMJGKCPMMWord(@PathVariable("id" ) Long id, HttpServletResponse response) {
      contractService.exportContractYMJGKCPMMWord(id,response);
   }
   /**
    * 根据模版生成word一煤机采购合同
    * @param id id
    * @return R
    */
   @Operation(summary = "根据模版生成word合同" , description = "根据模版生成word合同" )
   @GetMapping("/exportContractYMJCGWord/{id}" )
   public void exportContractYMJCGWord(@PathVariable("id" ) Long id, HttpServletResponse response) {
      contractService.exportContractYMJCGWord(id,response);
   }
}