server/platform/src/main/java/com/doumee/api/business/WxBillController.java
@@ -43,7 +43,7 @@ @PreventRepeat @ApiOperation("手动同步微信某天账单信息") @PostMapping("/syncWxBill") @RequiresPermissions("business:wxbill:create") // @RequiresPermissions("business:wxbill:create") public ApiResponse syncWxBill(@RequestBody WxBill wxBill) { wxBillService.getWxBill(wxBill.getCreateDate()); return ApiResponse.success(wxBillService.create(wxBill)); server/platform/src/main/java/com/doumee/api/system/SystemController.java
@@ -1,5 +1,6 @@ package com.doumee.api.system; import cn.binarywang.wx.miniapp.api.WxMaService; import com.doumee.api.BaseController; import com.doumee.biz.system.SystemUserBiz; import com.doumee.core.annotation.pr.PreventRepeat; server/platform/src/main/java/com/doumee/config/shiro/ShiroConfig.java
@@ -99,7 +99,7 @@ map.put("/test/testPush","anon"); map.put("/public/uploadPicture","anon"); map.put("/public/uploadLocal","anon"); map.put("/business/wxBill/syncWxBill","anon"); // - 放行swagger map.put("/doc.html", "anon"); server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -51,7 +51,7 @@ /** * @throws Exception */ @Scheduled(cron = "0 0 11 * * ? ") // @Scheduled(cron = "0 0 11 * * ? ") public void syncStudent() throws Exception { //前一天的數據 Date ydate = DateUtil.addDaysToDate(new Date(), -1); @@ -75,7 +75,7 @@ * 30 秒刷新一次 * @throws Exception */ @Scheduled(cron = "0/30 * * * * ? ") // @Scheduled(cron = "0/30 * * * * ? ") public void autoRefreshLockStatus() throws Exception { log.info("=====================开始每天自动结算======================="); memberRidesService.autoRefreshLockStatus(); @@ -87,7 +87,7 @@ * 站点车辆满架率预警 * @throws Exception */ @Scheduled(fixedDelay = 1000L * 60L * 3L) // @Scheduled(fixedDelay = 1000L * 60L * 3L) public void siteReserves() throws Exception { log.info("=====================开始 站点车辆满架率预警======================="); sitesService.siteReservesNotice();; server/services/src/main/java/com/doumee/service/business/impl/ActionLogServiceImpl.java
@@ -1,5 +1,6 @@ package com.doumee.service.business.impl; import cn.binarywang.wx.miniapp.api.WxMaService; import com.alibaba.fastjson.JSONObject; import com.doumee.core.constants.Constants; import com.doumee.core.model.PageData; @@ -40,6 +41,9 @@ @Autowired private ActionLogJoinMapper actionLogJoinMapper; @Override public String create(ActionLog actionLog) { actionLogMapper.insert(actionLog); server/services/src/main/java/com/doumee/service/business/impl/GoodsorderServiceImpl.java
@@ -176,6 +176,7 @@ goodsorderExportVOIPage.getRecords().forEach(s->{ s.setMoney(Constants.translateMoney(s.getMoney())); s.setRefundMoney(Constants.translateMoney(s.getRefundMoney())); s.setCloseMoney(Constants.translateMoney(s.getCloseMoney())); }); } return PageData.from(goodsorderExportVOIPage);