|
|
@@ -40,16 +40,17 @@ public class StorageJsglController {
|
|
40
|
40
|
@ApiImplicitParam(name = "jslx", value = "结算类型(0:入库,1:出库)", paramType = "query"),
|
|
41
|
41
|
@ApiImplicitParam(name = "houseId", value = "仓房", paramType = "query"),
|
|
42
|
42
|
@ApiImplicitParam(name = "warehouseId", value = "货位", paramType = "query"),
|
|
43
|
|
- @ApiImplicitParam(name = "ywlx", value = "业务类型(0:散粮,1:非散粮)", paramType = "query")
|
|
|
43
|
+ @ApiImplicitParam(name = "ywlx", value = "业务类型(0:散粮,1:非散粮)", paramType = "query"),
|
|
|
44
|
+ @ApiImplicitParam(name = "htbh", value = "合同/通知单编号", paramType = "query")
|
|
44
|
45
|
})
|
|
45
|
46
|
public PageInfo<StorageJsgl> getPageInfoList(Integer pageNum, Integer pageSize, String jslx,
|
|
46
|
|
- Integer houseId, Integer warehouseId, Integer orgId, String ywlx) {
|
|
|
47
|
+ Integer houseId, Integer warehouseId, Integer orgId, String ywlx, String htbh) {
|
|
47
|
48
|
|
|
48
|
49
|
if (pageNum != null && pageSize != null) PageHelper.startPage(pageNum, pageSize);
|
|
49
|
50
|
|
|
50
|
51
|
List<StorageJsgl> list = null;
|
|
51
|
52
|
try {
|
|
52
|
|
- list = storageJsglService.findByCondition(houseId, warehouseId, orgId, jslx, ywlx);
|
|
|
53
|
+ list = storageJsglService.findByCondition(houseId, warehouseId, orgId, jslx, ywlx, htbh);
|
|
53
|
54
|
} catch (Exception e) {
|
|
54
|
55
|
e.printStackTrace();
|
|
55
|
56
|
}
|