Render batch code in stock adjustment dialog

This commit is contained in:
Oliver Walters 2022-04-18 22:56:31 +10:00
parent 33401cb207
commit 6beea0a557

View File

@ -964,6 +964,10 @@ function adjustStock(action, items, options={}) {
quantity = `#${item.serial}`;
}
if (item.batch != null) {
quantity += ` - <small>{% trans "Batch" %}: ${item.batch}</small>`;
}
var actionInput = '';
if (actionTitle != null) {