2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 11:40:58 +00:00

Adds button to expand row for "extra" information

This commit is contained in:
Oliver Walters
2022-04-26 22:14:01 +10:00
parent b8ca7fb092
commit c66cd1d51b
2 changed files with 32 additions and 12 deletions

View File

@ -1559,15 +1559,16 @@ function loadPartTable(table, url, options={}) {
var parts = [];
selections.forEach(function(item) {
parts.push(item.pk);
selections.forEach(function(part) {
parts.push(part);
});
launchModalForm('/order/purchase-order/order-parts/', {
data: {
parts: parts,
},
});
orderParts(
parts,
{
}
);
});
$('#multi-part-category').click(function() {