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:
@ -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() {
|
||||
|
Reference in New Issue
Block a user