2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-11-14 03:46:44 +00:00

[UI] Location filter (#9939)

* Filter incomplete outputs by location

* Filter build allocated stock by location

* Filter sales order allocations by location

* Bump API version

* Fix API version

* Fix annotations
This commit is contained in:
Oliver
2025-07-04 10:24:12 +10:00
committed by GitHub
parent a954555eb7
commit e7b27c9e2f
8 changed files with 54 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ import {
ReferenceColumn,
StatusColumn
} from '../ColumnRenderers';
import { StockLocationFilter } from '../Filter';
import { InvenTreeTable } from '../InvenTreeTable';
import { type RowAction, RowDeleteAction, RowEditAction } from '../RowActions';
@@ -69,6 +70,8 @@ export default function BuildAllocatedStockTable({
});
}
filters.push(StockLocationFilter());
return filters;
}, [partId]);