| | |
| | | return r; |
| | | } |
| | | |
| | | /** |
| | | * 确认发货操作 |
| | | * |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R confirmDelivery(ConfirmDelivery confirmDelivery) { |
| | | Order order = this.getById(confirmDelivery.getOrderId()); |
| | | if (1 == order.getPayStatus()) { |
| | | return R.fail("订单还未完成支付"); |
| | | } |
| | | if (1 == order.getOrderType() || null == order.getAddressJson()) { |
| | | return R.fail("该订单不支付快递配送"); |
| | | } |
| | | if (1 != order.getOrderStatus()) { |
| | | return R.fail("无效的操作"); |
| | | } |
| | | //添加快递号和修改订单状态 |
| | | order.setExpressJson(confirmDelivery.getCode()); |
| | | order.setDeliverProvince(confirmDelivery.getDeliverProvince()); |
| | | order.setDeliverProvinceCode(confirmDelivery.getDeliverProvinceCode()); |
| | | order.setDeliverCity(confirmDelivery.getDeliverCity()); |
| | | order.setDeliverCityCode(confirmDelivery.getDeliverCityCode()); |
| | | order.setDeliverDistrict(confirmDelivery.getDeliverDistrict()); |
| | | order.setDeliverDistrictCode(confirmDelivery.getDeliverDistrictCode()); |
| | | order.setOrderStatus(2); |
| | | //添加查询快递信息队列 |
| | | //一小时后定时查询快递信息 |
| | | SystemConfig systemConfig = systemConfigClient.getSystemConfig(3).getData(); |
| | | JSONObject jsonObject = JSON.parseObject(systemConfig.getContent()); |
| | | Integer waitTime = jsonObject.getInteger("waitTime"); |
| | | redisTemplate.opsForZSet().add("order_express", order.getId(), LocalDateTime.now().plusHours(waitTime).toEpochSecond(ZoneOffset.UTC)); |
| | | |
| | | JSONObject jsonObject1 = JSON.parseObject(confirmDelivery.getCode()); |
| | | String com = jsonObject1.getString("com"); |
| | | String num = jsonObject1.getString("num"); |
| | | UserAddress userAddress = JSON.parseObject(order.getAddressJson(), UserAddress.class); |
| | | MapTrackKD100Vo mapTrackKD100Vo = ExpressDeliveryUtil.kd100MapTrack(com, num, order.getDeliverProvince() + order.getDeliverCity(), |
| | | userAddress.getProvince() + userAddress.getCity()); |
| | | order.setExpressResult(JSON.toJSONString(mapTrackKD100Vo)); |
| | | this.updateById(order); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | /** |
| | |
| | | public R refundPayMoney(Order order) { |
| | | //开始退款 |
| | | Integer payMethod = order.getPayMethod(); |
| | | BigDecimal paymentAmount = order.getPaymentAmount(); |
| | | BigDecimal expressAmount = order.getExpressAmount() == null ? BigDecimal.ZERO : order.getExpressAmount(); |
| | | BigDecimal paymentAmount = order.getPaymentAmount().add(expressAmount); |
| | | AppUser appUser = appUserClient.getAppUserById(order.getAppUserId()); |
| | | if (1 == payMethod) { |
| | | //微信退款 |
| | |
| | | balanceChangeRecord.setDelFlag(0); |
| | | balanceChangeRecord.setCreateTime(LocalDateTime.now()); |
| | | balanceChangeRecordClient.saveBalanceChangeRecord(balanceChangeRecord); |
| | | |
| | | |
| | | //退回获得的消费积分 |
| | | //需要先检查会员等级时候回回退,使用回退后的会员等级查询配置 |
| | |
| | | if (3 == payMethod) { |
| | | //开始运费退款,积分支付,运费是单独进行支付的,所以需要单独退款 |
| | | if (null != order.getExpressAmount() && BigDecimal.ZERO.compareTo(order.getExpressAmount()) < 0) { |
| | | BigDecimal expressAmount = order.getExpressAmount(); |
| | | if (1 == order.getExpressPayMethod()) { |
| | | //微信退款 |
| | | RefundResult refund = PaymentUtil.refund(order.getOrderNumber(), "R" + order.getOrderNumber(), expressAmount.doubleValue(), "/order/order/refundExpressPayMoneyCallback"); |
| | |
| | | |
| | | order.setRefundStatus(2); |
| | | order.setRefundTime(LocalDateTime.now()); |
| | | |
| | | shopPointClient.deleteShopPointCopy(order.getId(), Arrays.asList(1,2,3)); |
| | | shopBalanceStatementClient.deleteShopBalanceStatementCopy(order.getId(), Arrays.asList(1,2,3)); |
| | | appUserGiveawayTemporaryClient.delAppUserGiveawayTemporary(order.getId()); |
| | | shopGiveawayTemporaryClient.delShopGiveawayTemporary(order.getId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | |
| | | Long days = jsonObject.getLong("days"); |
| | | order.setAfterSaleTime(LocalDateTime.now().plusDays(days)); |
| | | this.updateById(order); |
| | | commissionService.calculationCommissionShop(order.getId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | |
| | | if (order_express.size() > 0) { |
| | | for (Long id : order_express) { |
| | | Order order = this.getById(id); |
| | | if (order == null){ |
| | | redisTemplate.opsForZSet().remove("order_express", id); |
| | | continue; |
| | | } |
| | | if (order.getOrderStatus() != 2) { |
| | | redisTemplate.opsForZSet().remove("order_express", id); |
| | | continue; |
| | |
| | | } |
| | | } |
| | | |
| | | @SneakyThrows |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public void importExpress(String url) { |
| | | URL url1 = new URL(url); |
| | | URL url1 = null; |
| | | try { |
| | | url1 = new URL(url); |
| | | } catch (MalformedURLException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | try (InputStream fileInputStream = url1.openStream()) { |
| | | Workbook workbook = new XSSFWorkbook(fileInputStream); |
| | | Sheet sheet = workbook.getSheetAt(0); // 获取第一个Sheet |
| | |
| | | for (int i = 1; i <= lastRowNum; i++) { |
| | | Row row = sheet.getRow(i); |
| | | // 订单编号 |
| | | if (row.getCell(0) == null){ |
| | | throw new ServiceException("第" + i + "行订单编号为空", 500); |
| | | } |
| | | row.getCell(0).setCellType(CellType.STRING); |
| | | String orderNum = row.getCell(0).getStringCellValue(); |
| | | // 快递单号 |
| | | if (row.getCell(1) == null){ |
| | | throw new ServiceException("第" + i + "行快递单号为空", 500); |
| | | } |
| | | row.getCell(1).setCellType(CellType.STRING); |
| | | String expressNum = row.getCell(1).getStringCellValue(); |
| | | // 快递公司名称 |
| | | if (row.getCell(2) == null){ |
| | | throw new ServiceException("第" + i + "行快递公司为空", 500); |
| | | } |
| | | row.getCell(2).setCellType(CellType.STRING); |
| | | String expressName = row.getCell(2).getStringCellValue(); |
| | | // 省区划代码 |
| | | if (row.getCell(3) == null){ |
| | | throw new ServiceException("第" + i + "行省区划代码为空", 500); |
| | | } |
| | | row.getCell(3).setCellType(CellType.STRING); |
| | | String provinceCode = row.getCell(3).getStringCellValue(); |
| | | // 市区划代码 |
| | | if (row.getCell(4) == null){ |
| | | throw new ServiceException("第" + i + "行市区划代码为空", 500); |
| | | } |
| | | row.getCell(4).setCellType(CellType.STRING); |
| | | String cityCode = row.getCell(4).getStringCellValue(); |
| | | Order order = this.getOne(new LambdaQueryWrapper<Order>() |
| | |
| | | confirmDelivery.setDeliverProvinceCode(regionBiCode.getData().getCode()); |
| | | confirmDelivery.setDeliverCity(regionBiCode1.getData().getName()); |
| | | confirmDelivery.setDeliverCityCode(regionBiCode1.getData().getCode()); |
| | | confirmDelivery(confirmDelivery); |
| | | R r = confirmDelivery(confirmDelivery); |
| | | if (R.isError(r)) { |
| | | throw new ServiceException(r.getMsg(), 500); |
| | | } |
| | | } |
| | | |
| | | } catch (IOException e) { |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 确认发货操作 |
| | | * |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R confirmDelivery(ConfirmDelivery confirmDelivery) { |
| | | Order order = this.getById(confirmDelivery.getOrderId()); |
| | | if (1 == order.getPayStatus()) { |
| | | return R.fail("订单还未完成支付"); |
| | | } |
| | | if (1 == order.getOrderType() || null == order.getAddressJson()) { |
| | | return R.fail("该订单不支付快递配送"); |
| | | } |
| | | if (1 != order.getOrderStatus()) { |
| | | return R.fail("无效的操作"); |
| | | } |
| | | //添加快递号和修改订单状态 |
| | | order.setExpressJson(confirmDelivery.getCode()); |
| | | order.setDeliverProvince(confirmDelivery.getDeliverProvince()); |
| | | order.setDeliverProvinceCode(confirmDelivery.getDeliverProvinceCode()); |
| | | order.setDeliverCity(confirmDelivery.getDeliverCity()); |
| | | order.setDeliverCityCode(confirmDelivery.getDeliverCityCode()); |
| | | order.setDeliverDistrict(confirmDelivery.getDeliverDistrict()); |
| | | order.setDeliverDistrictCode(confirmDelivery.getDeliverDistrictCode()); |
| | | order.setOrderStatus(2); |
| | | //添加查询快递信息队列 |
| | | //一小时后定时查询快递信息 |
| | | SystemConfig systemConfig = systemConfigClient.getSystemConfig(3).getData(); |
| | | JSONObject jsonObject = JSON.parseObject(systemConfig.getContent()); |
| | | Integer waitTime = jsonObject.getInteger("waitTime"); |
| | | redisTemplate.opsForZSet().add("order_express", order.getId(), LocalDateTime.now().plusHours(waitTime).toEpochSecond(ZoneOffset.UTC)); |
| | | |
| | | JSONObject jsonObject1 = JSON.parseObject(confirmDelivery.getCode()); |
| | | String com = jsonObject1.getString("com"); |
| | | String num = jsonObject1.getString("num"); |
| | | UserAddress userAddress = JSON.parseObject(order.getAddressJson(), UserAddress.class); |
| | | MapTrackKD100Vo mapTrackKD100Vo = ExpressDeliveryUtil.kd100MapTrack(com, num, order.getDeliverProvince() + order.getDeliverCity(), |
| | | userAddress.getProvince() + userAddress.getCity()); |
| | | order.setExpressResult(JSON.toJSONString(mapTrackKD100Vo)); |
| | | this.updateById(order); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | public static void importExpress2(String filePath) throws MalformedURLException { |
| | | // 从网络地址读取 |