Skip to content

Commit

Permalink
同步码云0106
Browse files Browse the repository at this point in the history
  • Loading branch information
jishenghua committed Jan 6, 2021
1 parent a5c21bb commit fe93216
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions erp_web/pages/materials/material.html
Expand Up @@ -436,7 +436,7 @@
title: '库存', field: 'stock', width: 70, formatter: function (value, rec) {
var str = '';
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;
}
},
Expand Down Expand Up @@ -1311,7 +1311,7 @@
if(type == "edit"){
$.ajax({
type: "get",
url: "../../../pages/template/init_depot_list.html?2121",
url: "../../../pages/template/init_depot_list.html?3232",
async: false,
success: function (tem) {
if (tem) {
Expand Down
2 changes: 1 addition & 1 deletion erp_web/pages/template/init_depot_list.html
Expand Up @@ -3,7 +3,7 @@
<tr>
<td style="width:100px;height:30px;line-height:30px;padding:5px;float:left;">{{name}}</td>
<td style="padding:5px">
<input type="text" id="depot{{id}}" data-id="{{id}}" class="depot" style="width: 250px;border: 1px solid #95B8E7;border-radius:5px;height: 30px" value="{{stock}}"/>
<input type="text" id="depot{{id}}" data-id="{{id}}" class="depot" style="width: 250px;border: 1px solid #95B8E7;border-radius:5px;height: 30px" value="{{initStock}}"/>
</td>
</tr>
{{/depotList}}
Expand Down

0 comments on commit fe93216

Please sign in to comment.