Browse Source

Merge branch 'hotfix-20190213-suntg' into dev

suntg 6 years ago
parent
commit
f4f01a751d

+ 3 - 0
src/main/java/com/uas/platform/b2b/controller/SaleApCheckController.java

@@ -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);