浏览代码

临时收款表修改

anderx 3 年之前
父节点
当前提交
1adc7113af
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/main/java/com/goafanti/order/service/impl/OrderReceivablesServiceImpl.java

+ 2 - 3
src/main/java/com/goafanti/order/service/impl/OrderReceivablesServiceImpl.java

@@ -581,13 +581,12 @@ public class OrderReceivablesServiceImpl extends BaseMybatisDao<TemporaryReceiva
 
 	@Override
 	public List<TOrderNewBo> matchingOrderNo(String value) {
-			tOrderNewMapper.matchingOrderNoOrUserName(value,null);
-		return null;
+		return tOrderNewMapper.matchingOrderNoOrUserName(value,null);
 	}
 
 	@Override
 	public List<TOrderNewBo> matchingUser(String value) {
-		return null;
+		return tOrderNewMapper.matchingOrderNoOrUserName(null,value);
 	}
 
 }