| | |
| | | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.cwgl.domain.InvoiceManage; |
| | | import com.ruoyi.cwgl.domain.InvoicePayableBillDetail; |
| | | import com.ruoyi.cwgl.domain.InvoiceReceivableBillDetail; |
| | | import com.ruoyi.cwgl.domain.PayableBillManagement; |
| | | import com.ruoyi.cwgl.domain.ReceivableBillManagement; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.cwgl.domain.dto.CallbackReceiptDto; |
| | | |
| | | /** |
| | | * 发票管理Service接口 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | AjaxResult applyInvoice(Integer id); |
| | | |
| | | /** |
| | | * 应收账单申请开票 |
| | | * @param invoiceManage 发票管理对象 |
| | | * @param id 应收账单ID |
| | | * @return 结果 |
| | | */ |
| | | AjaxResult applyReceivableInvoice(InvoiceManage invoiceManage, Integer id); |
| | | |
| | | /** |
| | | * 应付账单申请开票 |
| | | * @param invoiceManage 发票管理对象 |
| | | * @param id 应付账单ID |
| | | * @return 结果 |
| | | */ |
| | | AjaxResult applyPayableInvoice(InvoiceManage invoiceManage, Integer id); |
| | | |
| | | /** |
| | | * 开票回调接口 |
| | | * @param callbackReceiptDto |
| | | */ |
| | | void invoicingSuccess(CallbackReceiptDto callbackReceiptDto); |
| | | } |