md
This commit is contained in:
parent
9065cfc4d2
commit
243bd9c91b
@ -730,6 +730,7 @@ public class EmisWaybillController extends EmisBaseController
|
||||
if(billCodeSortList.length>1){
|
||||
queryEmisWaybill.getParams().put("billCodeSortList",Arrays.asList(billCodeSortList));
|
||||
}
|
||||
|
||||
if( "1".equals(waybillStatType)){
|
||||
list = emisWaybillService.selectWaitGotOrderList(queryEmisWaybill);
|
||||
}
|
||||
@ -755,9 +756,9 @@ public class EmisWaybillController extends EmisBaseController
|
||||
}
|
||||
}
|
||||
|
||||
// 查询已取消的订单
|
||||
if( "3".equals(waybillStatType)){
|
||||
list = emisWaybillService.selectEmisWaybillList(emisWaybill);
|
||||
// 查询已取消 和转单的订单
|
||||
if( "3".equals(waybillStatType) || "4".equals(waybillStatType) ){
|
||||
list = emisWaybillService.selectOrderList(emisWaybill);
|
||||
}
|
||||
else{
|
||||
list = emisWaybillService.selectEmisWaybillList(emisWaybill);
|
||||
|
||||
@ -892,8 +892,6 @@
|
||||
<if test="createSite != null and createSite != ''"> and a.create_site=#{createSite}</if>
|
||||
<if test="updateSite != null and updateSite != ''"> and a.update_site=#{updateSite}</if>
|
||||
|
||||
|
||||
|
||||
<if test="params.problemQueryType != null and params.problemQueryType == 1 and params.problemQueryIds != null and params.problemQueryIds !=''">
|
||||
and a.bill_code in (
|
||||
select bill_code from emis_waybill_problem_info ewpi where ewpi.del_flag='0' and ewpi.`problem_type` is not null and FIND_IN_SET( ewpi.`problem_type`, #{params.problemQueryIds} )
|
||||
|
||||
Loading…
Reference in New Issue
Block a user