mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-14 12:06:24 +00:00
Bug fix for stock item actions - initial quantity
This commit is contained in:
parent
c00f5d3266
commit
e538174b07
1 changed files with 2 additions and 2 deletions
|
|
@ -225,7 +225,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
|
||||||
|
|
||||||
void _countStockDialog() async {
|
void _countStockDialog() async {
|
||||||
|
|
||||||
_quantityController.text = item.quantityString;
|
_quantityController.text = item.quantity.toString();
|
||||||
_notesController.clear();
|
_notesController.clear();
|
||||||
|
|
||||||
showFormDialog(L10().countStock,
|
showFormDialog(L10().countStock,
|
||||||
|
|
@ -292,7 +292,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
|
||||||
|
|
||||||
int? location_pk;
|
int? location_pk;
|
||||||
|
|
||||||
_quantityController.text = "${item.quantityString}";
|
_quantityController.text = "${item.quantity}";
|
||||||
|
|
||||||
showFormDialog(L10().transferStock,
|
showFormDialog(L10().transferStock,
|
||||||
key: _moveStockKey,
|
key: _moveStockKey,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue