add alipay online 全量备份

master
luoyang 5 years ago
parent e832e49c89
commit c9c477c64e

@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>1.0.26</version> <version>1.0.27</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

@ -21,6 +21,8 @@ import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Sheet;
import org.dom4j.Element; import org.dom4j.Element;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
@ -44,6 +46,8 @@ public class AliforexcelServiceImpl implements AliforexcelService {
private AlipayClient alipayClient; private AlipayClient alipayClient;
@Resource @Resource
private OrderMapper orderMapper; private OrderMapper orderMapper;
private Logger logger = LoggerFactory.getLogger(getClass());
@Override @Override
public JSONObject listClients(HttpServletResponse httpResponse,JSONObject manager, AliExcel query) { public JSONObject listClients(HttpServletResponse httpResponse,JSONObject manager, AliExcel query) {
@ -105,7 +109,7 @@ public class AliforexcelServiceImpl implements AliforexcelService {
List<String> registerSuccessMerchant = new ArrayList<>(); List<String> registerSuccessMerchant = new ArrayList<>();
List<JSONObject> registerFailMerchant = new ArrayList<>(); List<JSONObject> registerFailMerchant = new ArrayList<>();
List<JSONObject> lessInfoMerchant = new ArrayList<>(); List<JSONObject> lessInfoMerchant = new ArrayList<>();
List<Integer> useAlipayOnlineMerchant = transactionMapper.useAlipayOnlineClients(); List<Integer> useAlipayOnlineMerchant = clientMapper.listUseAlipayMerchant();
for (int clientId : useAlipayOnlineMerchant) { for (int clientId : useAlipayOnlineMerchant) {
JSONObject client = clientMapper.findClient(clientId); JSONObject client = clientMapper.findClient(clientId);
if (client == null) { if (client == null) {
@ -113,6 +117,9 @@ public class AliforexcelServiceImpl implements AliforexcelService {
} }
try { try {
needRegisterMerchant.add(client.getString("client_moniker")); needRegisterMerchant.add(client.getString("client_moniker"));
if (StringUtils.isBlank(client.getString("company_website"))) {
client.put("company_website", client.getString("ali_sub_merchant_id")+".royalpay.com.au");
}
checkPartnerInfo(client,"online"); checkPartnerInfo(client,"online");
} catch (InvalidParameterException e) { } catch (InvalidParameterException e) {
JSONObject exception = new JSONObject(); JSONObject exception = new JSONObject();
@ -145,6 +152,7 @@ public class AliforexcelServiceImpl implements AliforexcelService {
result.put("success_register_merchant", registerSuccessMerchant); result.put("success_register_merchant", registerSuccessMerchant);
result.put("fail_register_merchant", registerFailMerchant); result.put("fail_register_merchant", registerFailMerchant);
result.put("less_info_merchant", lessInfoMerchant); result.put("less_info_merchant", lessInfoMerchant);
logger.info("-------AlipayOnline Gms end----fail_register_merchant"+registerFailMerchant.toString());
return result; return result;
} }

@ -130,4 +130,7 @@ public interface ClientMapper {
int getPartnercode(@Param("codes") String codes); int getPartnercode(@Param("codes") String codes);
JSONObject findCountByBd(@Param("bd_group") String bd_group, @Param("today") Date today, @Param("yesterday") Date yesterday, @Param("month") Date month); JSONObject findCountByBd(@Param("bd_group") String bd_group, @Param("today") Date today, @Param("yesterday") Date yesterday, @Param("month") Date month);
List<Integer> listUseAlipayMerchant();
} }

@ -701,4 +701,8 @@
AND is_valid = 1 AND is_valid = 1
) b ) b
</select> </select>
<select id="listUseAlipayMerchant" resultType="int">
select client_id from sys_clients where gateway_alipay_online=1 and is_valid=1
</select>
</mapper> </mapper>

Loading…
Cancel
Save