|
|
@ -60,7 +60,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group"> |
|
|
|
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="warehouse:storageOrder:export"> |
|
|
|
<a class="btn btn-success" onclick="$.table.exportExcel()" shiro:hasPermission="warehouse:storageOrder:export"> |
|
|
|
<i class="fa fa-download"></i> 导出 |
|
|
|
</a> |
|
|
|
</div> |
|
|
@ -111,13 +111,15 @@ |
|
|
|
createUrl: prefix + "/add", |
|
|
|
updateUrl: prefix + "/edit/{id}", |
|
|
|
exportUrl: prefix + "/export", |
|
|
|
fixedColumns:true, |
|
|
|
fixedRightNumber:1, |
|
|
|
modalName: "仓库入库单", |
|
|
|
detailView: true, |
|
|
|
fixedColumns: true, // 启用冻结列 |
|
|
|
fixedRightNumber: 1, // 冻结右列个数 |
|
|
|
sortable:true, |
|
|
|
onExpandRow : function(index, row, $detail) { |
|
|
|
initChildTable(index, row, $detail); |
|
|
|
}, |
|
|
|
|
|
|
|
columns: [{ |
|
|
|
checkbox: true |
|
|
|
}, |
|
|
@ -238,6 +240,7 @@ |
|
|
|
{ |
|
|
|
title: '录入时间', |
|
|
|
field: 'createTime', |
|
|
|
sortable:true |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '更新人', |
|
|
@ -342,7 +345,8 @@ |
|
|
|
actions.push('<a class="btn btn-success btn-xs ' + storageRefundsExchangesDetailFlag + '" href="javascript:void(0)" onclick="storageRefundsExchangesDetail(\'' + row.warehouseStorageId + '\')"><i class="fa fa-edit"></i>详情</a> '); |
|
|
|
} |
|
|
|
|
|
|
|
return actions.join(''); |
|
|
|
var actionLinks = actions.join(''); |
|
|
|
return $.table.dropdownToggle(actionLinks); |
|
|
|
} |
|
|
|
}] |
|
|
|
}; |
|
|
|