@@ -627,6 +627,7 @@ public class OutboundSaleOrderService extends BaseService<Outbound> {
*/
@Pagination
public ResponseResultVO<PageList<OutboundResponse>> selectByCond(OutboundQuery outboundQuery) {
+ outboundQuery.setOutType(Constant.OutType.SALE.getName());
return super.mergeListWithCount(outboundQuery, outboundMapper.selectByCond(outboundQuery),
outboundMapper.countByCond(outboundQuery));
}
@@ -615,6 +615,7 @@ public class OutboundSaleReturnService extends BaseService<Outbound> {
+ outboundQuery.setOutType(Constant.OutType.SALE_RETURN.getName());