mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-09 07:00:56 +00:00
Add base part info to [Add Supplier Part] modal form (#4427)
* Add base part info to [Add Supplier Part] modal form * fix JS style
This commit is contained in:
@ -146,7 +146,7 @@ function supplierPartFields(options={}) {
|
||||
}
|
||||
|
||||
/*
|
||||
* Launch a form to create a new ManufacturerPart
|
||||
* Launch a form to create a new SupplierPart
|
||||
*/
|
||||
function createSupplierPart(options={}) {
|
||||
|
||||
@ -194,11 +194,26 @@ function createSupplierPart(options={}) {
|
||||
}
|
||||
};
|
||||
|
||||
var header = '';
|
||||
if (options.part) {
|
||||
var part_model = {};
|
||||
inventreeGet(`/api/part/${options.part}/.*`, {}, {
|
||||
async: false,
|
||||
success: function(response) {
|
||||
part_model = response;
|
||||
}
|
||||
});
|
||||
header = constructLabel('Base Part', {});
|
||||
header += renderPart('header', part_model);
|
||||
header += `<div> </div>`;
|
||||
}
|
||||
|
||||
constructForm('{% url "api-supplier-part-list" %}', {
|
||||
fields: fields,
|
||||
method: 'POST',
|
||||
title: '{% trans "Add Supplier Part" %}',
|
||||
onSuccess: options.onSuccess,
|
||||
header_html: header,
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user