feat(SaOrderItemMapper-Sale): 发货清单未合单列表移除系统类型字段

This commit is contained in:
woody 2025-05-21 15:01:31 +08:00 committed by cabbage
parent 138f67580f
commit 3a41c7e5b9
2 changed files with 2 additions and 12 deletions

View File

@ -252,12 +252,6 @@ public class DeliverUnhandledVO {
@Excel(name = "备注")
private String remark;
/**
* 系统类型0=会员系统1=海圣优选
*/
@Excel(name = "系统类型", readConverterExp = "0=会员系统,1=海圣优选")
private Integer systemType;
/**
* 创建时间
*/

View File

@ -80,8 +80,7 @@
null
end original_order_code,
bs.name storehouse_name,
bu.name unit_name,
so.SYSTEM_TYPE
bu.name unit_name
from SA_ORDER so
left join sa_order_items soi
on soi.pk_order = so.pk_id
@ -100,9 +99,6 @@
left join bd_storehouse bs
on bs.pk_id = so.pk_storehouse
<include refid="deliverUnhandledQuery"/>
<if test="param.systemType != null">
and so.SYSTEM_TYPE = #{param.systemType}
</if>
<if test="param.fhck != null and param.fhck != ''">
and bs.name like #{param.fhck} || '%'
</if>