|
|
@ -304,7 +304,12 @@ public class WmsInventoryRecordService extends MybatisBaseService<WmsInventoryRe |
|
|
|
} |
|
|
|
//单据类型
|
|
|
|
if (StringUtils.isNotBlank(query.getBillType())) { |
|
|
|
qw.like("wir.billType", query.getBillType()); |
|
|
|
String billType = query.getBillType(); |
|
|
|
if (billType.equals("入库")) { |
|
|
|
qw.like("wir.billType", 1); |
|
|
|
} if (billType.equals("出库")) { |
|
|
|
qw.like("wir.billType", 0); |
|
|
|
} |
|
|
|
} |
|
|
|
//业务类型
|
|
|
|
if (StringUtils.isNotBlank(query.getBusTypeValue())) { |
|
|
|