From 1e89b00b0919a19504f32b56fb1ef80298799ec4 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期五, 20 三月 2026 14:30:29 +0800
Subject: [PATCH] 新增定时任务
---
service/src/main/java/com/ruoyi/cwgl/service/IInvoiceManageService.java | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/service/src/main/java/com/ruoyi/cwgl/service/IInvoiceManageService.java b/service/src/main/java/com/ruoyi/cwgl/service/IInvoiceManageService.java
index 92c523e..9a8359f 100644
--- a/service/src/main/java/com/ruoyi/cwgl/service/IInvoiceManageService.java
+++ b/service/src/main/java/com/ruoyi/cwgl/service/IInvoiceManageService.java
@@ -4,7 +4,12 @@
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.cwgl.domain.InvoiceManage;
+
+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鎺ュ彛
*
@@ -115,4 +120,38 @@
* @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);
+
+ /**
+ * 寮�绁ㄥ洖璋冩帴鍙� - 搴斾粯璐﹀崟
+ * @param callbackReceiptDto
+ */
+ void invoicingSuccessPayable(CallbackReceiptDto callbackReceiptDto);
+
+ /**
+ * 寮�绁ㄥ洖璋冩帴鍙� - 搴旀敹璐﹀崟
+ * @param callbackReceiptDto
+ */
+ void invoicingSuccessReceivable(CallbackReceiptDto callbackReceiptDto);
}
--
Gitblit v1.8.0