mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 19:15:41 +00:00
Render batch code in stock adjustment dialog
This commit is contained in:
@ -964,6 +964,10 @@ function adjustStock(action, items, options={}) {
|
|||||||
quantity = `#${item.serial}`;
|
quantity = `#${item.serial}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (item.batch != null) {
|
||||||
|
quantity += ` - <small>{% trans "Batch" %}: ${item.batch}</small>`;
|
||||||
|
}
|
||||||
|
|
||||||
var actionInput = '';
|
var actionInput = '';
|
||||||
|
|
||||||
if (actionTitle != null) {
|
if (actionTitle != null) {
|
||||||
|
Reference in New Issue
Block a user