@ -191,5 +191,7 @@ public class IoOrderDetailBizResponse {
private String prepnUnit;
private String action;
}
@ -180,6 +180,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
return this.baseMapper.filterList(relCodeBatchRequest);
@Transactional(rollbackFor = Exception.class)
public void delete(Long id) {
if(id == null){
throw new JsonException("id 不能为空");
@ -6,10 +6,12 @@
bp.ggxh,
bp.bzgg,
bp.prepnUnit,
bp.prepnSpec
bp.prepnSpec,
io.action
from io_order_detail_biz
left join basic_udirel bu on bu.id = io_order_detail_biz.bindRlFk
left join basic_products bp on bu.uuid = bp.uuid
left join io_order io on io.billNo = io_order_detail_biz.orderIdFk
<where>
<if test="orderIdFk != null and orderIdFk != ''">
AND orderIdFk = #{orderIdFk}