| | |
| | | util.exportExcel(response, salesLedgerIPage == null ? new ArrayList<>() : salesLedgerIPage.getRecords(), "导出开票登记列表"); |
| | | } |
| | | |
| | | /** |
| | | @Log(title = "导出加工承揽合同", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/exportProcessContract/{id}") |
| | | public void exportProcessContract(@PathVariable Long id){ |
| | | salesLedgerService.exportProcessContract(id); |
| | | } |
| | | |
| | | @PostMapping("/importSalsesLedger") |
| | | @ApiOperation("阳光导入销售台账新") |
| | | public AjaxResult importSalsesLedger( MultipartFile file) { |
| | | return salesLedgerService.importSalsesLedger(file); |
| | | } |
| | | |
| | | |
| | | /**w |
| | | * 新增修改销售台账 |
| | | */ |
| | | @Log(title = "销售台账", businessType = BusinessType.INSERT) |