Commit 8b789991 authored by 季圣华's avatar 季圣华
Browse files

解决单据中按条码查询商品带空格无法匹配的bug

parent 10e50015
......@@ -411,6 +411,7 @@ public class MaterialService {
}
if(StringUtil.isNotEmpty(q)) {
q = q.replace("'", "");
q = q.trim();
}
list= materialMapperEx.findBySelectWithBarCode(idList, q, offset, rows);
}catch(Exception e){
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment