|
|
@ -65,6 +65,7 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String selectByManualCheck(Map<String, Object> pramsMap, int curr, int size) { |
|
|
|
public String selectByManualCheck(Map<String, Object> pramsMap, int curr, int size) { |
|
|
|
|
|
|
|
long enter = System.currentTimeMillis(); |
|
|
|
log.info("入参是:{}",pramsMap); |
|
|
|
log.info("入参是:{}",pramsMap); |
|
|
|
JSONObject json; |
|
|
|
JSONObject json; |
|
|
|
DynamicContextHolder.push(pramsMap.get("dbName") + DbConstant.BUSINESS_READ); |
|
|
|
DynamicContextHolder.push(pramsMap.get("dbName") + DbConstant.BUSINESS_READ); |
|
|
@ -125,6 +126,8 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.info("查询合计耗时:{}",System.currentTimeMillis()-enter); |
|
|
|
|
|
|
|
|
|
|
|
PageHelper.startPage(curr, size); |
|
|
|
PageHelper.startPage(curr, size); |
|
|
|
long start1 = System.currentTimeMillis(); |
|
|
|
long start1 = System.currentTimeMillis(); |
|
|
|
List<BaseTDxRecordInvoice> pageList = super.baseMapper.selectSggxcx(pramsMap); |
|
|
|
List<BaseTDxRecordInvoice> pageList = super.baseMapper.selectSggxcx(pramsMap); |
|
|
@ -132,7 +135,7 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
PageInfo<BaseTDxRecordInvoice> pageInfo = new PageInfo<>(pageList); |
|
|
|
PageInfo<BaseTDxRecordInvoice> pageInfo = new PageInfo<>(pageList); |
|
|
|
|
|
|
|
|
|
|
|
log.info("返回的列表为:{}",pageList); |
|
|
|
log.info("返回的列表为:{}",pageList); |
|
|
|
|
|
|
|
log.info("查询耗时:{}",System.currentTimeMillis()-enter); |
|
|
|
// 转化为页面展示对象
|
|
|
|
// 转化为页面展示对象
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); |
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); |
|
|
|
if (pageList.size() > 0) { |
|
|
|
if (pageList.size() > 0) { |
|
|
@ -266,6 +269,8 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
} |
|
|
|
} |
|
|
|
json.put("total", pageInfo.getTotal()); |
|
|
|
json.put("total", pageInfo.getTotal()); |
|
|
|
json.put("datalist", voList); |
|
|
|
json.put("datalist", voList); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.info("总计耗时:{}",System.currentTimeMillis()-enter); |
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
// 统一设置操作异常标识
|
|
|
|
// 统一设置操作异常标识
|
|
|
|
log.info("错误信息为:{}",e.getMessage()); |
|
|
|
log.info("错误信息为:{}",e.getMessage()); |
|
|
|