入库单查询运输业务单号;

This commit is contained in:
王奎兴
2026-06-04 16:30:41 +08:00
parent 3a004607b2
commit b18c8566e8
4 changed files with 9 additions and 0 deletions
@@ -451,4 +451,6 @@ public class ReservationStockInOrderPO extends BaseVOEntity {
@ApiModelProperty("NC客户编码")
private String customerNcCode;
@ApiModelProperty("运输业务单号")
private String businessNumber;
}
@@ -474,4 +474,6 @@ public class ReservationStockInOrderDO extends BaseVOEntity {
private Date pushTimeEnd;
private String xfStatus;
@ApiModelProperty("运输业务单号")
private String businessNumber;
}
@@ -471,4 +471,6 @@ public class ReservationStockInOrderDTO extends ReservationStockInOrderBaseDTO {
@ApiModelProperty(name = "入库时间查询条件结束日期")
private String expectTimeEnd;
@ApiModelProperty("运输业务单号")
private String businessNumber;
}
@@ -435,6 +435,9 @@
<if test="reservationOrderSource != null and reservationOrderSource != ''">
and a.RESERVATION_ORDER_SOURCE = #{reservationOrderSource}
</if>
<if test="businessNumber != null and businessNumber != ''">
and a.BUSINESS_NUMBER = #{businessNumber}
</if>
<if test="createByName != null and createByName != ''">
and a.create_by_name like concat('%', #{createByName}, '%')
</if>