| | |
| | | |
| | | |
| | | /** |
| | | * 定时生成应收款账目 |
| | | * 定时生成应收逾期 |
| | | * @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(); |
| | | } |
| | | |
| | | /** |
| | |
| | | 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); |
| | | } |
| | | } |