Allow "tracked" stock items to be installed, rather than just serialized

This commit is contained in:
Oliver Walters 2022-04-19 20:35:54 +10:00
parent 0e67ea8e95
commit 1fb94bf04b

View File

@ -2659,7 +2659,8 @@ function installStockItem(stock_item_id, part_id, options={}) {
<ul> <ul>
<li>{% trans "The Stock Item links to a Part which is the BOM for this Stock Item" %}</li> <li>{% trans "The Stock Item links to a Part which is the BOM for this Stock Item" %}</li>
<li>{% trans "The Stock Item is currently available in stock" %}</li> <li>{% trans "The Stock Item is currently available in stock" %}</li>
<li>{% trans "The Stock Item is serialized and does not belong to another item" %}</li> <li>{% trans "The Stock Item is not already installed in another item" %}</li>
<li>{% trans "The Stock Item is tracked by either a batch code or serial number" %}</li>
</ul> </ul>
</div>`; </div>`;
@ -2685,7 +2686,7 @@ function installStockItem(stock_item_id, part_id, options={}) {
filters: { filters: {
part_detail: true, part_detail: true,
in_stock: true, in_stock: true,
serialized: true, tracked: true,
}, },
adjustFilters: function(filters, opts) { adjustFilters: function(filters, opts) {
var part = getFormFieldValue('part', {}, opts); var part = getFormFieldValue('part', {}, opts);