Commit 7934b335 by 陶光胜

Merge branch 'developer' into 'master'

Developer

See merge request !51
parents 9d56b8b6 bf68cc95
...@@ -22,7 +22,7 @@ import com.gic.log.api.dto.SystemSetLogDTO; ...@@ -22,7 +22,7 @@ import com.gic.log.api.dto.SystemSetLogDTO;
import com.gic.log.api.service.LogApiService; import com.gic.log.api.service.LogApiService;
import com.gic.marketing.process.api.service.sms.SmsSendApiService; import com.gic.marketing.process.api.service.sms.SmsSendApiService;
import com.gic.thirdparty.api.dto.ScanPayReqDataDTO; import com.gic.thirdparty.api.dto.ScanPayReqDataDTO;
import com.gic.thirdparty.api.service.Pay4WxService; import com.gic.thirdparty.api.service.Pay4WXService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
...@@ -43,7 +43,7 @@ public class WxPayStrategy implements PayStrategy { ...@@ -43,7 +43,7 @@ public class WxPayStrategy implements PayStrategy {
private Logger logger = LogManager.getLogger(WxPayStrategy.class); private Logger logger = LogManager.getLogger(WxPayStrategy.class);
@Autowired @Autowired
private Pay4WxService pay4WxService; private Pay4WXService pay4WxService;
@Autowired @Autowired
private BillingPayInfoService billingPayInfoService; private BillingPayInfoService billingPayInfoService;
@Autowired @Autowired
...@@ -164,7 +164,7 @@ public class WxPayStrategy implements PayStrategy { ...@@ -164,7 +164,7 @@ public class WxPayStrategy implements PayStrategy {
"", "",
"NATIVE" "NATIVE"
); );
ServiceResponse<String> serviceResponse = pay4WxService.createPrePaymentOrderForWx(scanPayReqDataDTO); ServiceResponse<String> serviceResponse = pay4WxService.createPrePaymentOrderForWX(scanPayReqDataDTO);
if (serviceResponse.isSuccess()) { if (serviceResponse.isSuccess()) {
// 生成支付记录 // 生成支付记录
BillingPayInfoDTO billingPayInfoDTO = new BillingPayInfoDTO(); BillingPayInfoDTO billingPayInfoDTO = new BillingPayInfoDTO();
......
...@@ -464,6 +464,7 @@ public class WmStoreSyncController { ...@@ -464,6 +464,7 @@ public class WmStoreSyncController {
* @throws Exception * @throws Exception
*/ */
@RequestMapping("weimob-init-error-download") @RequestMapping("weimob-init-error-download")
@HeaderSignIgnore
public RestResponse downloadError(HttpServletRequest request, HttpServletResponse response) throws Exception { public RestResponse downloadError(HttpServletRequest request, HttpServletResponse response) throws Exception {
return downloadExportLog(REDIS_KEY, request, response); return downloadExportLog(REDIS_KEY, request, response);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment