|
|
@@ -68,7 +68,7 @@ public class InsOrderQrCodeServiceImpl extends ServiceImpl<InsOrderQrCodeMapper,
|
|
|
if (Objects.isNull(insAreaCompany.getPaymentLink())) {
|
|
|
throw new SystemException("该订单没有缴费链接");
|
|
|
}
|
|
|
- boolean save = save(insAreaCompany.getOrderno(), insAreaCompany.getId(), insAreaCompany.getCompanyId(),
|
|
|
+ save(insAreaCompany.getOrderno(), insAreaCompany.getId(), insAreaCompany.getCompanyId(),
|
|
|
insAreaCompany.getPaymentLink(), isWx);
|
|
|
insOrderQrCode = baseMapper.selectOne(new LambdaQueryWrapper<InsOrderQrCode>().eq(InsOrderQrCode::getAreaCompanyId,
|
|
|
companyId).eq(InsOrderQrCode::getQrcodeStatus, 1));
|
|
|
@@ -124,7 +124,7 @@ public class InsOrderQrCodeServiceImpl extends ServiceImpl<InsOrderQrCodeMapper,
|
|
|
|
|
|
private boolean isHttpUrl(String urls) {
|
|
|
try {
|
|
|
- URL url = new URL(urls);
|
|
|
+ new URL(urls);
|
|
|
return true;
|
|
|
} catch (java.net.MalformedURLException e) {
|
|
|
return false;
|