| | |
| | | * 測試 |
| | | * @throws Exception |
| | | */ |
| | | @Scheduled(cron = "0 0 21 * * ? ") |
| | | @Scheduled(cron = "0 30 13 * * ? ") |
| | | public void getYesterdayBill() throws Exception { |
| | | log.info("=====================开始每天自动结算======================="); |
| | | goodsorderService.autoCloseOrder(); |
| | | log.info("=====================结束每天自动结算======================="); |
| | | |
| | | } |
| | | |
| | | /** |
| | |
| | | String appSecret = wxPayProperties.getAppSecret(); |
| | | if(wxPayProperties.getExistsSub() ==1){ |
| | | //如果是服务商支付,取子商户信息 |
| | | appId = StringUtils.trimToNull(wxPayProperties.getSubMchId()); |
| | | appId = StringUtils.trimToNull(wxPayProperties.getSubAppId()); |
| | | appSecret =StringUtils.trimToNull(wxPayProperties.getSubAppSecret()); |
| | | } |
| | | //生成微信token |
| | |
| | | @Scheduled(fixedDelay = 1000L * 60L ) |
| | | public void autoCancelRefunOrder(){ |
| | | log.info("=====================开始 自動取消未推送退款状态的退款单状态======================="); |
| | | refundService.autoCancelRefunOrder();; |
| | | goodsorderService.autoCancelRefunOrder();; |
| | | log.info("=====================结束 自動取消未推送退款状态的退款单状态======================="); |
| | | } |
| | | |