From 65ad99e0a5e47c2cfcfd9ceade7dc6f2b83bcbd2 Mon Sep 17 00:00:00 2001
From: jiaosong <jiaosong6760@dingtalk.com>
Date: 星期三, 11 十月 2023 16:38:54 +0800
Subject: [PATCH] #pgsql 订单退款  结算退款 未消费结算

---
 server/platform/src/main/java/com/doumee/task/ScheduleTool.java |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
index 84637d1..fe11644 100644
--- a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
+++ b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -2,14 +2,19 @@
 
 
 import com.doumee.biz.system.SystemDictDataBiz;
+import com.doumee.core.constants.Constants;
 import com.doumee.core.utils.DateUtil;
+import com.doumee.dao.business.model.Goodsorder;
+import com.doumee.service.business.GoodsorderService;
 import com.doumee.service.business.WxBillService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.scheduling.annotation.EnableScheduling;
 import org.springframework.scheduling.annotation.Scheduled;
 import org.springframework.stereotype.Component;
+import org.springframework.util.CollectionUtils;
 
 import java.util.Date;
+import java.util.List;
 
 /**
  * 瀹氭椂浠诲姟
@@ -25,9 +30,12 @@
 
     @Autowired
     private SystemDictDataBiz systemDictDataBiz;
+
     @Autowired
     private WxBillService wxBillService;
 
+    @Autowired
+    private GoodsorderService goodsorderService;
     /**
      * @throws Exception
      */
@@ -44,8 +52,17 @@
      */
 //    @Scheduled(fixedDelay = 1000*60)
     public void getYesterdayBill() throws Exception {
-        Date ydate = DateUtil.addDaysToDate(new Date(), -1);
-        wxBillService.getWxBill(ydate);
+
+        Goodsorder goodsorder = new Goodsorder();
+        goodsorder.setIsdeleted(Constants.ZERO);
+        goodsorder.setStatus(Constants.goodsorderStatus.pay);
+        List<Goodsorder> list = goodsorderService.findList(goodsorder);
+        if (!CollectionUtils.isEmpty(list)){
+            list.forEach(s->{
+                goodsorderService.closerGoodsorder(s.getId());
+            });
+
+        }
 
     }
 }

--
Gitblit v1.9.3