|
|
|
@ -15,7 +15,6 @@ import au.com.royalpay.payment.manage.appclient.core.RetailAppService;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.bean.AliExcel;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.bean.Message;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.bean.SendWechatMessage;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.bean.TestMerchantAccountInfo;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.core.AliforexcelService;
|
|
|
|
|
import au.com.royalpay.payment.manage.dev.core.WechatMessageService;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.payment.OrderMapper;
|
|
|
|
@ -54,7 +53,6 @@ import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.data.mongodb.core.MongoTemplate;
|
|
|
|
|
import org.springframework.data.mongodb.core.query.Query;
|
|
|
|
|
import org.springframework.util.Assert;
|
|
|
|
|
import org.springframework.util.MimeTypeUtils;
|
|
|
|
|
import org.springframework.validation.Errors;
|
|
|
|
@ -74,7 +72,6 @@ import java.net.URISyntaxException;
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
|
import java.text.ParseException;
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
@ -400,6 +397,7 @@ public class TestController {
|
|
|
|
|
public void aliforexcel(@ModelAttribute(CommonConsts.MANAGER_STATUS) JSONObject manager, HttpServletResponse httpResponse, AliExcel query) throws Exception {
|
|
|
|
|
aliforexcelService.listClients(httpResponse, manager, query);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ManagerMapping(value = "/partner/reset_password", method = RequestMethod.GET, role = ManagerRole.DEVELOPER)
|
|
|
|
|
public void resetPartnerPassword() {
|
|
|
|
|
clientManager.updateAllPartnerPassword("PINE");
|
|
|
|
@ -494,7 +492,7 @@ public class TestController {
|
|
|
|
|
synchronizedScheduler.executeProcess("manage_task:dashboardTask", 120_000,
|
|
|
|
|
() -> {
|
|
|
|
|
try {
|
|
|
|
|
dashboardService.generateCustomersAndOrdersStatistics(DateUtils.addDays(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(date), -1));
|
|
|
|
|
dashboardService.generateCustomersAndOrdersStatistics(DateUtils.parseDate(date, "yyyyMMdd"));
|
|
|
|
|
} catch (ParseException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|