|
@@ -69,11 +69,7 @@ public class ForeignApiController extends BaseController {
|
|
|
@RequestParam(value = "lockStatus", required = false) String lockStatus,
|
|
|
@RequestParam(value = "pageNo", required = false) Integer pageNo,
|
|
|
@RequestParam(value = "pageSize", required = false) Integer pageSize) {
|
|
|
- if (ObjectUtils.isNotNull(lockStatus)) {
|
|
|
- lockStatus = "1";
|
|
|
- } else {
|
|
|
- lockStatus = "0";
|
|
|
- }
|
|
|
+ System.out.println("queryGoodsAccountByPageV1:"+lockStatus);
|
|
|
List<Map<String, Object>> listSize = foreignHttpService.queryGoodsAccountByPageV1(warehouseCode, ownerSocialIdentifier, ownerCode, ownerName, goodsName, specifications,
|
|
|
producing, materialQuality, level, pageNo, pageSize, lockStatus);
|
|
|
|
|
@@ -124,11 +120,7 @@ public class ForeignApiController extends BaseController {
|
|
|
@RequestParam(value = "lockStatus", required = false) String lockStatus,
|
|
|
@RequestParam(value = "pageNo") Integer pageNo,
|
|
|
@RequestParam(value = "pageSize") Integer pageSize) {
|
|
|
- if (ObjectUtils.isNotNull(lockStatus)) {
|
|
|
- lockStatus = "1";
|
|
|
- } else {
|
|
|
- lockStatus = "0";
|
|
|
- }
|
|
|
+ System.out.println("queryGoodsAccountDetailByPageV1:"+lockStatus);
|
|
|
List<Map<String, Object>> listSize = foreignHttpService.queryGoodsAccountDetailByPageV1(warehouseCode, ownerName, ownerCode, ownerSocialIdentifier, goodsName, specifications,
|
|
|
producing, materialQuality, level, receiptDoc, billOfLading, areaName, areaCode, slotName, slotCode, goodsCode, pageNo, pageSize, lockStatus);
|
|
|
|