Commit 9c3c03f6 authored by 方建宇's avatar 方建宇

销售明细部门搜索修改

parent 55c9f988
...@@ -28,6 +28,9 @@ public class StoreGoodsLog extends CyIdIncreEntity<StoreGoodsLog> { ...@@ -28,6 +28,9 @@ public class StoreGoodsLog extends CyIdIncreEntity<StoreGoodsLog> {
@TableField(exist = false) @TableField(exist = false)
private String storeName; private String storeName;
@TableField(exist = false)
private String storeId;
/** /**
* @desc 原价 * @desc 原价
* @column original_price * @column original_price
......
...@@ -71,6 +71,9 @@ ...@@ -71,6 +71,9 @@
<if test="entity.flag !=null and entity.flag != '' "> <if test="entity.flag !=null and entity.flag != '' ">
and sgl.flag = #{entity.flag} and sgl.flag = #{entity.flag}
</if> </if>
<if test="entity.storeId !=null and entity.storeId != '' ">
and store_id = #{entity.storeId}
</if>
<if test="entity.ioType !=null and entity.ioType != '' "> <if test="entity.ioType !=null and entity.ioType != '' ">
and io_type = #{entity.ioType} and io_type = #{entity.ioType}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment