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

解决商品条码含有字符时无法点开库存明细的bug

parent 78c5502d
...@@ -436,7 +436,7 @@ ...@@ -436,7 +436,7 @@
title: '库存', field: 'stock', width: 70, formatter: function (value, rec) { title: '库存', field: 'stock', width: 70, formatter: function (value, rec) {
var str = ''; var str = '';
str += '<span title="查看库存及明细" class="n-link" ' + str += '<span title="查看库存及明细" class="n-link" ' +
'onclick="findStockList(' + rec.id + ',' + rec.mBarCode + ',\'' + rec.name + '\');">' + rec.stock + '</span>'; 'onclick="findStockList(' + rec.id + ',\'' + rec.mBarCode + '\',\'' + rec.name + '\');">' + rec.stock + '</span>';
return str; return str;
} }
}, },
......
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