Render batch code in stock adjustment dialog
This commit is contained in:
parent
33401cb207
commit
6beea0a557
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue