|
|
|
@ -26,7 +26,7 @@
|
|
|
|
|
<result column="order_id" property="orderId"/> |
|
|
|
|
<result column="mall_name" property="mallName"/> |
|
|
|
|
<result column="goods_name" property="goodsName"/> |
|
|
|
|
<result column="warehouse" property="warehouse"/> |
|
|
|
|
<result column="warehouse" property="warehouseName"/> |
|
|
|
|
<result column="warehousing_time" property="warehousingTime"/> |
|
|
|
|
<result column="lead_time" property="leadTime"/> |
|
|
|
|
<result column="duration_in_stock" property="durationInStock"/> |
|
|
|
@ -54,7 +54,8 @@
|
|
|
|
|
ldsd.is_kitting isKitting, |
|
|
|
|
ldsd.brand brand, |
|
|
|
|
ldsd.signed_number signedNumber, |
|
|
|
|
ldsf.consignee consignee, |
|
|
|
|
ldsf.consignee_name consigneeName, |
|
|
|
|
ldsf.consignee_id consigneeId, |
|
|
|
|
ldsf.signing_time signingTime, |
|
|
|
|
ldsf.sjsigning_time sjsigningTime, |
|
|
|
|
ldsf.delivery_phone deliveryPhone, |
|
|
|
@ -85,8 +86,8 @@
|
|
|
|
|
<if test="param.goodsName!=null and param.goodsName!=''"> |
|
|
|
|
and ldsd.goods_name like concat('%',#{param.goodsName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.warehouse!=null and param.warehouse!=''"> |
|
|
|
|
and ldsd.warehouse like concat('%',#{param.warehouse},'%') |
|
|
|
|
<if test="param.warehouseName!=null and param.warehouseName!=''"> |
|
|
|
|
and ldsf.warehouse_name like concat('%',#{param.warehouseName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.durationInStock!=null and param.durationInStock!=''"> |
|
|
|
|
and ldsd.duration_in_stock like concat('%',#{param.durationInStock},'%') |
|
|
|
@ -94,8 +95,8 @@
|
|
|
|
|
<if test="param.deliveryAddress!=null and param.deliveryAddress!=''"> |
|
|
|
|
and ldsf.deliveryAddress like concat('%',#{param.deliveryAddress},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consignee!=null and param.consignee!=''"> |
|
|
|
|
and ldsd.consignee like concat('%',#{param.consignee},'%') |
|
|
|
|
<if test="param.consigneeName!=null and param.consigneeName!=''"> |
|
|
|
|
and ldsd.consignee_name like concat('%',#{param.consigneeName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consigneePhone!=null and param.consigneePhone!=''"> |
|
|
|
|
and ldsd.consignee_phone like concat('%',#{param.consigneePhone},'%') |
|
|
|
|