|
|
|
@ -123,6 +123,7 @@
|
|
|
|
|
ldpl.service_number serviceNumber, |
|
|
|
|
ldpl.material_id materialId, |
|
|
|
|
ldpl.material_name materialName, |
|
|
|
|
ldpl.material_code materialCode, |
|
|
|
|
ldpl.brand_name brandName, |
|
|
|
|
ldpl.order_package_status orderPackageStatus, |
|
|
|
|
ldpl.order_package_freeze_status orderPackageFreezeStatus, |
|
|
|
@ -221,6 +222,10 @@
|
|
|
|
|
<if test="param.materialName !='' and param.materialName != null"> |
|
|
|
|
and ldpl.material_name like concat('%',#{param.materialName},'%') |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
<if test="param.materialCode !='' and param.materialCode != null"> |
|
|
|
|
and ldpl.material_code =#{param.materialCode} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.brandName !='' and param.brandName != null"> |
|
|
|
|
and ldpl.brand_name like concat('%',#{param.brandName},'%') |
|
|
|
|
</if> |
|
|
|
|