| | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface InvoiceLedgerService { |
| | |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | void invoiceLedgerDownload(HttpServletResponse response ,InvoiceLedgerDto invoiceLedgerDto); |
| | | void invoiceLedgerExport(HttpServletResponse response ,InvoiceLedgerDto invoiceLedgerDto); |
| | | |
| | | /** |
| | | * 开票台账详情 |
| | |
| | | * @return |
| | | */ |
| | | InvoiceLedgerDto invoiceLedgerDetail(Integer id); |
| | | |
| | | /** |
| | | * 附件提交 |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | void invoiceLedgerCommitFile(InvoiceLedgerDto invoiceLedgerDto); |
| | | |
| | | /** |
| | | * 开票台账查询 |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | List<InvoiceLedgerDto> invoiceLedgerList(InvoiceLedgerDto invoiceLedgerDto); |
| | | |
| | | /** |
| | | * 客户销售记录 |
| | | * @param page |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | IPage<InvoiceLedgerDto> invoiceLedgerSalesAccount(Page page, InvoiceLedgerDto invoiceLedgerDto); |
| | | |
| | | BigDecimal getInvoiceAmount(); |
| | | } |