|
|
|
@ -486,8 +486,7 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int curr = (int) pramsMap.get("curr"); |
|
|
|
|
int size = (int) pramsMap.get("size"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String hjsl = "0"; |
|
|
|
|
String hjje = "0"; |
|
|
|
@ -508,8 +507,13 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
|
return super.responseResult(json); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String isChooseAll = (String) pramsMap.get("isChooseAll"); |
|
|
|
|
|
|
|
|
|
if ("N".equals(isChooseAll)){ |
|
|
|
|
int total = Integer.parseInt(hjsl); |
|
|
|
|
|
|
|
|
|
int curr = (int) pramsMap.get("curr"); |
|
|
|
|
int size = (int) pramsMap.get("size"); |
|
|
|
|
int totalPage = total % size == 0?total/size:total/size+1; |
|
|
|
|
|
|
|
|
|
if (curr<1){ |
|
|
|
@ -520,8 +524,7 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx |
|
|
|
|
} |
|
|
|
|
curr = (curr -1)*size; |
|
|
|
|
pramsMap.put("curr",curr); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<BaseTDxRecordInvoice> pageList = super.baseMapper.selectInTellingCheck(pramsMap); |
|
|
|
|
|
|
|
|
|