|
|
@@ -289,6 +289,9 @@ public class SaleApCheckController {
|
|
|
public SPage<PurchaseApCheck> getPurchaseApChecks(PageParams params, String searchFilter) throws UnsupportedEncodingException {
|
|
|
LOGGER.log("应收对账单", "作为买家,获取全部应收对账单");
|
|
|
searchFilter = URLDecoder.decode(searchFilter, "UTF-8");
|
|
|
+ if (!StringUtils.isEmpty(params.getSorting())) {
|
|
|
+ params.setSorting(URLDecoder.decode(params.getSorting(), "UTF-8"));
|
|
|
+ }
|
|
|
SearchFilter filter = JSONObject.parseObject(searchFilter, SearchFilter.class);
|
|
|
if (StringUtils.isEmpty(filter.getKeyword())) {
|
|
|
PageInfo pageInfo = new PageInfo(params);
|