PC即时库存查询批次号查询修改
This commit is contained in:
+4
@@ -154,4 +154,8 @@ public class ImmediateInventoryDO extends BaseVOEntity {
|
|||||||
@ApiModelProperty("复核数量开始")
|
@ApiModelProperty("复核数量开始")
|
||||||
private BigDecimal checkQuantityEnd;
|
private BigDecimal checkQuantityEnd;
|
||||||
|
|
||||||
|
@ApiModelProperty("批次号")
|
||||||
|
@Excel(name = "批次号")
|
||||||
|
private String batchNumber;
|
||||||
|
|
||||||
}
|
}
|
||||||
+5
@@ -156,4 +156,9 @@ public class ImmediateInventoryDTO {
|
|||||||
|
|
||||||
@ApiModelProperty("复核数量开始")
|
@ApiModelProperty("复核数量开始")
|
||||||
private BigDecimal checkQuantityEnd;
|
private BigDecimal checkQuantityEnd;
|
||||||
|
|
||||||
|
@ApiModelProperty("批次号")
|
||||||
|
@Excel(name = "批次号")
|
||||||
|
private String batchNumber;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -695,6 +695,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
and b.bar_code = #{barCode}
|
and b.bar_code = #{barCode}
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
|
<if test="batchNumber != null and batchNumber != ''">
|
||||||
|
and a.batch_number = #{batchNumber}
|
||||||
|
</if>
|
||||||
|
|
||||||
<if test="receivedQuantityStart != null ">
|
<if test="receivedQuantityStart != null ">
|
||||||
and ifnull(
|
and ifnull(
|
||||||
(
|
(
|
||||||
|
|||||||
Reference in New Issue
Block a user