2026-04-07 00:41:55 +02:00
|
|
|
import {
|
|
|
|
|
listGroupedStockEntries,
|
|
|
|
|
listStockEntries,
|
|
|
|
|
updateStockItem,
|
2026-04-10 15:43:39 +02:00
|
|
|
useStockItem,
|
2026-04-07 00:41:55 +02:00
|
|
|
} from '../../api/stock.js';
|
2026-04-06 09:24:22 +02:00
|
|
|
import { fetchLocations } from '../../api/locations.js';
|
|
|
|
|
import { createAsyncState, runAsyncState } from '../shared/ui-state.js';
|
|
|
|
|
import { formatDate } from '../shared/date-utils.js';
|
|
|
|
|
|
|
|
|
|
const LEVEL_LABELS = {
|
|
|
|
|
plenty: 'Plenty',
|
|
|
|
|
good: 'Good',
|
|
|
|
|
some: 'Some',
|
|
|
|
|
low: 'Low',
|
|
|
|
|
trace: 'Trace',
|
|
|
|
|
gone: 'Gone',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const LEVEL_OPTIONS = [
|
|
|
|
|
{ value: 'plenty', label: 'Plenty' },
|
|
|
|
|
{ value: 'good', label: 'Good' },
|
|
|
|
|
{ value: 'some', label: 'Some' },
|
|
|
|
|
{ value: 'low', label: 'Low' },
|
|
|
|
|
{ value: 'trace', label: 'Trace' },
|
|
|
|
|
{ value: 'gone', label: 'Gone' },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const EXPIRATION_LEGEND = [
|
|
|
|
|
{ key: 'expired', label: 'Expired', description: 'The expiration date has already passed.' },
|
|
|
|
|
{ key: 'use-first', label: 'Use first', description: 'Still within date, but should be prioritized soonest for consumption.' },
|
|
|
|
|
{ key: 'upcoming', label: 'Upcoming expiration', description: 'Within date, but approaching expiration in the near term.' },
|
|
|
|
|
{ key: 'within-date', label: 'Within date', description: 'Still within the expected shelf-life window.' },
|
|
|
|
|
{ key: 'none', label: 'No expiration', description: 'No expiration date is assigned.' },
|
|
|
|
|
];
|
|
|
|
|
|
2026-04-06 21:34:02 +02:00
|
|
|
const EXPIRATION_KEYS = EXPIRATION_LEGEND.map((state) => state.key);
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
function todayAtMidnight() {
|
|
|
|
|
const now = new Date();
|
|
|
|
|
return new Date(now.getFullYear(), now.getMonth(), now.getDate());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function parseDateValue(value) {
|
|
|
|
|
if (!value) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const [year, month, day] = value.split('-').map(Number);
|
|
|
|
|
if (!year || !month || !day) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Date(year, month - 1, day);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function expirationInfo(entry) {
|
2026-04-07 00:41:55 +02:00
|
|
|
const expireDateValue =
|
|
|
|
|
Array.isArray(entry.items) && (entry.first_expire_date || entry.first_expire_in !== undefined)
|
|
|
|
|
? entry.first_expire_date || entry.expire_date
|
|
|
|
|
: entry.expire_date;
|
|
|
|
|
const expireInValue =
|
|
|
|
|
Array.isArray(entry.items) && entry.first_expire_in !== undefined
|
|
|
|
|
? entry.first_expire_in
|
|
|
|
|
: entry.expire_in;
|
|
|
|
|
|
|
|
|
|
if (!expireDateValue) {
|
2026-04-06 09:24:22 +02:00
|
|
|
return {
|
|
|
|
|
key: 'none',
|
|
|
|
|
label: 'No expiration date',
|
|
|
|
|
detail: 'No expiration date',
|
|
|
|
|
sortRank: 4,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const today = todayAtMidnight();
|
2026-04-07 00:41:55 +02:00
|
|
|
const expireDate = parseDateValue(expireDateValue);
|
2026-04-06 09:24:22 +02:00
|
|
|
const expireIn =
|
2026-04-07 00:41:55 +02:00
|
|
|
typeof expireInValue === 'number'
|
|
|
|
|
? expireInValue
|
|
|
|
|
: expireDate
|
|
|
|
|
? Math.round((expireDate - today) / (24 * 60 * 60 * 1000))
|
|
|
|
|
: null;
|
2026-04-06 09:24:22 +02:00
|
|
|
|
|
|
|
|
if (expireIn < 0) {
|
|
|
|
|
return {
|
|
|
|
|
key: 'expired',
|
|
|
|
|
label: 'Expired',
|
|
|
|
|
detail: `Expired ${Math.abs(expireIn)} day${Math.abs(expireIn) === 1 ? '' : 's'} ago`,
|
|
|
|
|
sortRank: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (expireIn <= 2) {
|
|
|
|
|
return {
|
|
|
|
|
key: 'use-first',
|
|
|
|
|
label: expireIn === 0 ? 'Use today' : 'Use first',
|
|
|
|
|
detail:
|
|
|
|
|
expireIn === 0
|
|
|
|
|
? 'Expires today'
|
|
|
|
|
: `Expires in ${expireIn} day${expireIn === 1 ? '' : 's'}`,
|
|
|
|
|
sortRank: 1,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (expireIn <= 7) {
|
|
|
|
|
return {
|
|
|
|
|
key: 'upcoming',
|
|
|
|
|
label: 'Upcoming expiration',
|
|
|
|
|
detail: `Expires in ${expireIn} days`,
|
|
|
|
|
sortRank: 2,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
key: 'within-date',
|
|
|
|
|
label: 'Within date',
|
|
|
|
|
detail: `Expires in ${expireIn} days`,
|
|
|
|
|
sortRank: 3,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sortEntries(entries) {
|
|
|
|
|
return [...entries].sort((left, right) => {
|
|
|
|
|
const leftExpiration = expirationInfo(left);
|
|
|
|
|
const rightExpiration = expirationInfo(right);
|
|
|
|
|
|
|
|
|
|
if (leftExpiration.sortRank !== rightExpiration.sortRank) {
|
|
|
|
|
return leftExpiration.sortRank - rightExpiration.sortRank;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const leftExpire = left.expire_date || '9999-12-31';
|
|
|
|
|
const rightExpire = right.expire_date || '9999-12-31';
|
|
|
|
|
if (leftExpire !== rightExpire) {
|
|
|
|
|
return leftExpire.localeCompare(rightExpire);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (left.name || '').localeCompare(right.name || '');
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
function sortGroupedEntries(groups) {
|
|
|
|
|
return [...groups].sort((left, right) => {
|
|
|
|
|
const leftExpiration = expirationInfo(left);
|
|
|
|
|
const rightExpiration = expirationInfo(right);
|
|
|
|
|
|
|
|
|
|
if (leftExpiration.sortRank !== rightExpiration.sortRank) {
|
|
|
|
|
return leftExpiration.sortRank - rightExpiration.sortRank;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const leftExpire = left.first_expire_date || left.expire_date || '9999-12-31';
|
|
|
|
|
const rightExpire = right.first_expire_date || right.expire_date || '9999-12-31';
|
|
|
|
|
if (leftExpire !== rightExpire) {
|
|
|
|
|
return leftExpire.localeCompare(rightExpire);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (left.name || '').localeCompare(right.name || '');
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
function quantityLabel(entry) {
|
|
|
|
|
if (entry.stock_type === 'binary') {
|
|
|
|
|
return entry.level === 'gone' ? 'Gone' : 'Available';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const numeric = entry.quantity ?? null;
|
|
|
|
|
const uom = entry.uom_symbol || '';
|
|
|
|
|
const measured = numeric !== null && numeric !== undefined ? `${numeric} ${uom}`.trim() : '';
|
|
|
|
|
const level = entry.level ? LEVEL_LABELS[entry.level] || entry.level : '';
|
|
|
|
|
|
|
|
|
|
if (entry.stock_type === 'descriptive') {
|
|
|
|
|
return level || 'No stock level';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (measured && level) {
|
|
|
|
|
return `${measured} • ${level}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return measured || level || 'No quantity';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function resolveLocationLabel(entry, locationMap) {
|
|
|
|
|
if (!entry.location_initial_uuid_b64) {
|
|
|
|
|
return 'No location assigned';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return locationMap[entry.location_initial_uuid_b64] || 'Location not resolved';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function searchBlob(entry, locationMap) {
|
|
|
|
|
return [
|
|
|
|
|
entry.name,
|
|
|
|
|
entry.description,
|
|
|
|
|
entry.level,
|
|
|
|
|
entry.stock_type,
|
|
|
|
|
resolveLocationLabel(entry, locationMap),
|
|
|
|
|
entry.uuid_b64,
|
|
|
|
|
]
|
|
|
|
|
.filter(Boolean)
|
|
|
|
|
.join(' ')
|
|
|
|
|
.toLowerCase();
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
function groupSearchBlob(group, locationMap) {
|
|
|
|
|
return [
|
|
|
|
|
searchBlob(group, locationMap),
|
|
|
|
|
...(group.items || []).map((item) => searchBlob(item, locationMap)),
|
|
|
|
|
]
|
|
|
|
|
.filter(Boolean)
|
|
|
|
|
.join(' ')
|
|
|
|
|
.toLowerCase();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function groupedPrimaryDate(group) {
|
|
|
|
|
return group.date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function groupedFirstProductionDate(group) {
|
|
|
|
|
return group.first_production_date || group.date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function groupedFirstExpireDate(group) {
|
|
|
|
|
return group.first_expire_date || group.expire_date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function shortDescription(value, maxLength = 24) {
|
|
|
|
|
if (!value) {
|
|
|
|
|
return 'No description';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (value.length <= maxLength) {
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${value.slice(0, maxLength).trimEnd()}...`;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
export function renderStockListPage() {
|
|
|
|
|
return `
|
|
|
|
|
<section class="container-xxl py-4 py-lg-5" x-data="stockListPage()" x-init="init()">
|
|
|
|
|
<div class="d-flex flex-column flex-lg-row justify-content-between gap-3 align-items-lg-end mb-4">
|
|
|
|
|
<div>
|
|
|
|
|
<p class="eyebrow mb-2">Stock Review</p>
|
|
|
|
|
<h1 class="h3 mb-1">Review stock and act quickly</h1>
|
|
|
|
|
<p class="text-body-secondary mb-0">
|
|
|
|
|
Focus on expiration, stock state, and location without leaving the overview.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="#/labels/new" class="btn btn-primary">New stock label</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
<div class="card border-0 shadow-sm mb-4">
|
|
|
|
|
<div class="card-body p-3">
|
|
|
|
|
<div class="d-flex flex-wrap justify-content-between align-items-center gap-2">
|
|
|
|
|
<div class="stock-view-switch" role="tablist" aria-label="Stock view">
|
|
|
|
|
<button
|
|
|
|
|
class="btn"
|
|
|
|
|
type="button"
|
|
|
|
|
:class="viewMode === 'items' ? 'btn-primary' : 'btn-outline-secondary'"
|
|
|
|
|
@click="switchView('items')"
|
|
|
|
|
>
|
|
|
|
|
Stock items
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
class="btn"
|
|
|
|
|
type="button"
|
|
|
|
|
:class="viewMode === 'grouped' ? 'btn-primary' : 'btn-outline-secondary'"
|
|
|
|
|
@click="switchView('grouped')"
|
|
|
|
|
>
|
|
|
|
|
Grouped items
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<button
|
|
|
|
|
class="btn btn-outline-secondary"
|
|
|
|
|
type="button"
|
|
|
|
|
@click="refreshCurrentView()"
|
|
|
|
|
:disabled="state.isLoading"
|
|
|
|
|
>
|
|
|
|
|
<span x-show="!state.isLoading">Refresh</span>
|
|
|
|
|
<span x-show="state.isLoading">Refreshing...</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
<div class="card border-0 shadow-sm mb-4">
|
|
|
|
|
<div class="card-body p-4">
|
2026-04-06 21:34:02 +02:00
|
|
|
<div class="d-flex justify-content-between align-items-center gap-3 mb-3">
|
|
|
|
|
<label class="form-label mb-0">Search stock</label>
|
|
|
|
|
<button class="btn btn-link p-0 text-decoration-none stock-filter-reset" type="button" @click="clearFilters()">Reset</button>
|
|
|
|
|
</div>
|
2026-04-06 09:24:22 +02:00
|
|
|
<div class="row g-3">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<input
|
|
|
|
|
class="form-control"
|
|
|
|
|
type="text"
|
|
|
|
|
x-model="filters.search"
|
|
|
|
|
placeholder="Search by item, description, location, or id"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-06 21:34:02 +02:00
|
|
|
<div class="row g-4 mb-4 align-items-start" :class="overviewRowClass()">
|
|
|
|
|
<div class="col-12" :class="overviewColClass('expiration')">
|
|
|
|
|
<details
|
|
|
|
|
class="card border-0 shadow-sm overview-panel"
|
|
|
|
|
x-ref="expirationOverview"
|
|
|
|
|
@toggle="setOverviewOpen('expiration', $event.target.open)"
|
|
|
|
|
>
|
|
|
|
|
<summary class="card-body p-4 overview-summary">
|
|
|
|
|
<div class="d-flex justify-content-between align-items-start gap-3">
|
|
|
|
|
<div>
|
|
|
|
|
<h2 class="h5 mb-1">Expiration overview</h2>
|
|
|
|
|
<p class="text-body-secondary small mb-0">Tap to focus on one or more expiration states.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex flex-column align-items-end gap-1">
|
|
|
|
|
<button class="btn btn-link p-0 text-decoration-none stock-filter-reset" type="button" @click.prevent.stop="toggleAllExpirationFilters()">Show all</button>
|
|
|
|
|
<div class="small text-body-secondary text-end">
|
2026-04-07 00:41:55 +02:00
|
|
|
<span class="fw-semibold text-body" x-text="visibleResultCount"></span>
|
|
|
|
|
<span x-text="viewMode === 'grouped' ? 'group(s) visible' : 'item(s) visible'"></span>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-06 21:34:02 +02:00
|
|
|
</summary>
|
|
|
|
|
<div class="card-body pt-0 px-4 pb-4">
|
|
|
|
|
<div class="overview-list" :class="{ 'overview-list-split': isOnlyOverviewOpen('expiration') }">
|
|
|
|
|
<template x-for="stateInfo in expirationLegend" :key="stateInfo.key">
|
|
|
|
|
<button
|
|
|
|
|
class="overview-option text-start"
|
|
|
|
|
type="button"
|
|
|
|
|
:class="legendClass(stateInfo.key)"
|
|
|
|
|
@click="toggleExpirationOverviewFilter(stateInfo.key)"
|
|
|
|
|
:aria-pressed="isExpirationFilterActive(stateInfo.key)"
|
|
|
|
|
>
|
|
|
|
|
<div class="d-flex justify-content-between align-items-start gap-3 mb-1">
|
|
|
|
|
<div class="fw-semibold" x-text="stateInfo.label"></div>
|
|
|
|
|
<div class="small fw-semibold" x-text="expirationCount(stateInfo.key)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="small" x-text="stateInfo.description"></div>
|
|
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-12" :class="overviewColClass('location')">
|
|
|
|
|
<details
|
|
|
|
|
class="card border-0 shadow-sm overview-panel"
|
|
|
|
|
x-ref="locationOverview"
|
|
|
|
|
@toggle="setOverviewOpen('location', $event.target.open)"
|
|
|
|
|
>
|
|
|
|
|
<summary class="card-body p-4 overview-summary">
|
|
|
|
|
<div class="d-flex justify-content-between align-items-start gap-3">
|
|
|
|
|
<div>
|
|
|
|
|
<h2 class="h5 mb-1">Location overview</h2>
|
|
|
|
|
<p class="text-body-secondary small mb-0">Tap locations to focus the list. Parent locations include their children.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex flex-column align-items-end gap-1">
|
|
|
|
|
<button class="btn btn-link p-0 text-decoration-none stock-filter-reset" type="button" @click.prevent.stop="toggleAllLocations()">Show all</button>
|
|
|
|
|
<div class="small text-body-secondary text-end" x-text="selectedLocationSummary()"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</summary>
|
|
|
|
|
<div class="card-body pt-0 px-4 pb-4">
|
|
|
|
|
<template x-if="isOnlyOverviewOpen('location')">
|
|
|
|
|
<div class="overview-list overview-list-locations location-overview-columns">
|
|
|
|
|
<template x-for="(columnGroups, columnIndex) in balancedLocationOverviewColumns()" :key="columnIndex">
|
|
|
|
|
<div class="location-overview-column">
|
|
|
|
|
<template x-for="group in columnGroups" :key="group.parent.id">
|
|
|
|
|
<div class="location-overview-group">
|
|
|
|
|
<template x-for="location in group.items" :key="location.id">
|
|
|
|
|
<button
|
|
|
|
|
class="overview-option overview-option-location text-start"
|
|
|
|
|
type="button"
|
|
|
|
|
:class="locationOverviewClass(location)"
|
|
|
|
|
:style="locationOverviewStyle(location)"
|
|
|
|
|
@click="toggleLocationOverviewFilter(location.uuid_b64)"
|
|
|
|
|
:aria-pressed="isLocationFilterActive(location.uuid_b64)"
|
|
|
|
|
>
|
|
|
|
|
<span class="stock-filter-location-rail" x-show="location.depth"></span>
|
|
|
|
|
<div class="d-flex justify-content-between align-items-start gap-3">
|
|
|
|
|
<div class="fw-semibold" :class="location.depth ? 'small mb-0' : ''" x-text="location.name"></div>
|
|
|
|
|
<div class="small fw-semibold" x-text="locationCount(location.uuid_b64)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="!isOnlyOverviewOpen('location')">
|
|
|
|
|
<div class="overview-list overview-list-locations">
|
|
|
|
|
<template x-for="group in locationOverviewGroups()" :key="group.parent.id">
|
|
|
|
|
<div class="location-overview-group">
|
|
|
|
|
<template x-for="location in group.items" :key="location.id">
|
|
|
|
|
<button
|
|
|
|
|
class="overview-option overview-option-location text-start"
|
|
|
|
|
type="button"
|
|
|
|
|
:class="locationOverviewClass(location)"
|
|
|
|
|
:style="locationOverviewStyle(location)"
|
|
|
|
|
@click="toggleLocationOverviewFilter(location.uuid_b64)"
|
|
|
|
|
:aria-pressed="isLocationFilterActive(location.uuid_b64)"
|
|
|
|
|
>
|
|
|
|
|
<span class="stock-filter-location-rail" x-show="location.depth"></span>
|
|
|
|
|
<div class="d-flex justify-content-between align-items-start gap-3">
|
|
|
|
|
<div class="fw-semibold" :class="location.depth ? 'small mb-0' : ''" x-text="location.name"></div>
|
|
|
|
|
<div class="small fw-semibold" x-text="locationCount(location.uuid_b64)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
2026-04-06 21:34:02 +02:00
|
|
|
</div>
|
2026-04-06 09:24:22 +02:00
|
|
|
|
|
|
|
|
<template x-if="state.isLoading">
|
|
|
|
|
<div class="alert alert-secondary">Loading stock review...</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template x-if="state.error">
|
|
|
|
|
<div class="alert alert-danger d-flex justify-content-between align-items-center gap-3">
|
|
|
|
|
<span x-text="state.error"></span>
|
|
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="init()">Retry</button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
<template x-if="!state.isLoading && !state.error && viewMode === 'items' && !filteredEntries.length">
|
2026-04-06 09:24:22 +02:00
|
|
|
<div class="card border-0 shadow-sm">
|
|
|
|
|
<div class="card-body p-4 text-center">
|
|
|
|
|
<h2 class="h5">No stock items to show</h2>
|
|
|
|
|
<p class="text-body-secondary mb-0">
|
|
|
|
|
Try clearing the filters or create a new stock label.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
<template x-if="!state.isLoading && !state.error && viewMode === 'items' && filteredEntries.length">
|
2026-04-06 09:24:22 +02:00
|
|
|
<div>
|
|
|
|
|
<div class="d-none d-xl-block">
|
|
|
|
|
<div class="card border-0 shadow-sm overflow-hidden">
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table class="table align-middle mb-0 stock-review-table">
|
|
|
|
|
<thead class="table-light">
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Item</th>
|
|
|
|
|
<th>Expiration</th>
|
|
|
|
|
<th>Quantity / level</th>
|
|
|
|
|
<th>Location</th>
|
|
|
|
|
<th>Dates</th>
|
|
|
|
|
<th>Quick actions</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<template x-for="entry in filteredEntries" :key="entry.id">
|
|
|
|
|
<tr :class="rowClass(entry)">
|
|
|
|
|
<td>
|
|
|
|
|
<div class="fw-semibold" x-text="entry.name"></div>
|
|
|
|
|
<div class="small text-body-secondary" x-text="entry.description || 'No description'"></div>
|
|
|
|
|
<div class="small font-monospace text-body-secondary" x-text="shortId(entry)"></div>
|
2026-04-07 00:41:55 +02:00
|
|
|
<a class="small text-decoration-none fw-semibold" :href="detailHref(entry)">View item</a>
|
2026-04-06 09:24:22 +02:00
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<div class="d-flex align-items-center gap-2 mb-1">
|
|
|
|
|
<span class="badge rounded-pill" :class="badgeClass(entry)" x-text="expirationFor(entry).label"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="small text-body-secondary" x-text="expirationFor(entry).detail"></div>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<div class="fw-semibold" x-text="quantityLabel(entry)"></div>
|
|
|
|
|
<div class="small text-body-secondary" x-text="stockTypeDetail(entry)"></div>
|
|
|
|
|
</td>
|
|
|
|
|
<td x-text="locationLabel(entry)"></td>
|
|
|
|
|
<td>
|
|
|
|
|
<div class="small"><span class="text-body-secondary">Made:</span> <span x-text="formatDate(entry.date)"></span></div>
|
|
|
|
|
<div class="small"><span class="text-body-secondary">Expires:</span> <span x-text="formatDate(entry.expire_date)"></span></div>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<div class="quick-edit-stack">
|
|
|
|
|
<template x-if="entry.stock_type === 'binary'">
|
|
|
|
|
<div class="d-flex flex-wrap gap-2">
|
|
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="updateBinary(entry, 'gone')">Mark gone</button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="entry.stock_type === 'descriptive'">
|
|
|
|
|
<div class="d-flex flex-wrap gap-2 align-items-center">
|
|
|
|
|
<select class="form-select form-select-sm quick-select" x-model="editForms[entry.id].level">
|
|
|
|
|
<template x-for="option in levelOptions" :key="option.value">
|
|
|
|
|
<option :value="option.value" x-text="option.label"></option>
|
|
|
|
|
</template>
|
|
|
|
|
</select>
|
|
|
|
|
<button class="btn btn-sm btn-primary" type="button" @click="saveLevel(entry)">Save</button>
|
2026-04-06 21:34:02 +02:00
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="markGone(entry)">Mark gone</button>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="entry.stock_type === 'measured'">
|
|
|
|
|
<div class="d-flex flex-wrap gap-2 align-items-center">
|
|
|
|
|
<input class="form-control form-control-sm quick-number" type="number" step="0.01" min="0" x-model="editForms[entry.id].quantity" />
|
|
|
|
|
<button class="btn btn-sm btn-primary" type="button" @click="saveQuantity(entry)">Save qty</button>
|
2026-04-06 21:34:02 +02:00
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="markGone(entry)">Mark gone</button>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="editErrors[entry.id]">
|
|
|
|
|
<div class="small text-danger" x-text="editErrors[entry.id]"></div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</template>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="d-grid gap-3 d-xl-none">
|
|
|
|
|
<template x-for="entry in filteredEntries" :key="entry.id">
|
|
|
|
|
<div class="card border-0 shadow-sm stock-review-card" :class="rowClass(entry)">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<div class="d-flex justify-content-between gap-3 align-items-start mb-3">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="fw-semibold fs-5" x-text="entry.name"></div>
|
|
|
|
|
<div class="text-body-secondary small" x-text="entry.description || 'No description'"></div>
|
|
|
|
|
<div class="text-body-secondary small font-monospace" x-text="shortId(entry)"></div>
|
2026-04-07 00:41:55 +02:00
|
|
|
<a class="small text-decoration-none fw-semibold" :href="detailHref(entry)">View item</a>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
<span class="badge rounded-pill" :class="badgeClass(entry)" x-text="expirationFor(entry).label"></span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="row g-3 small mb-3">
|
|
|
|
|
<div class="col-6">
|
|
|
|
|
<div class="text-body-secondary">Quantity / level</div>
|
|
|
|
|
<div class="fw-semibold" x-text="quantityLabel(entry)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6">
|
|
|
|
|
<div class="text-body-secondary">Location</div>
|
|
|
|
|
<div class="fw-semibold" x-text="locationLabel(entry)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6">
|
|
|
|
|
<div class="text-body-secondary">Production date</div>
|
|
|
|
|
<div x-text="formatDate(entry.date)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6">
|
|
|
|
|
<div class="text-body-secondary">Expiration</div>
|
|
|
|
|
<div x-text="expirationFor(entry).detail"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="quick-edit-stack">
|
|
|
|
|
<template x-if="entry.stock_type === 'binary'">
|
|
|
|
|
<div class="d-flex flex-wrap gap-2">
|
|
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="updateBinary(entry, 'gone')">Mark gone</button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="entry.stock_type === 'descriptive'">
|
|
|
|
|
<div class="d-grid gap-2">
|
|
|
|
|
<select class="form-select form-select-sm" x-model="editForms[entry.id].level">
|
|
|
|
|
<template x-for="option in levelOptions" :key="option.value">
|
|
|
|
|
<option :value="option.value" x-text="option.label"></option>
|
|
|
|
|
</template>
|
|
|
|
|
</select>
|
2026-04-06 21:34:02 +02:00
|
|
|
<div class="d-flex flex-wrap gap-2">
|
|
|
|
|
<button class="btn btn-sm btn-primary" type="button" @click="saveLevel(entry)">Save stock level</button>
|
|
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="markGone(entry)">Mark gone</button>
|
|
|
|
|
</div>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="entry.stock_type === 'measured'">
|
|
|
|
|
<div class="d-grid gap-2">
|
|
|
|
|
<input class="form-control form-control-sm" type="number" step="0.01" min="0" x-model="editForms[entry.id].quantity" />
|
|
|
|
|
<div class="d-flex flex-wrap gap-2">
|
|
|
|
|
<button class="btn btn-sm btn-primary" type="button" @click="saveQuantity(entry)">Save quantity</button>
|
2026-04-06 21:34:02 +02:00
|
|
|
<button class="btn btn-sm btn-outline-danger" type="button" @click="markGone(entry)">Mark gone</button>
|
2026-04-06 09:24:22 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template x-if="editErrors[entry.id]">
|
|
|
|
|
<div class="small text-danger mt-2" x-text="editErrors[entry.id]"></div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2026-04-07 00:41:55 +02:00
|
|
|
|
|
|
|
|
<template x-if="!state.isLoading && !state.error && viewMode === 'grouped' && !filteredGroupedEntries.length">
|
|
|
|
|
<div class="card border-0 shadow-sm">
|
|
|
|
|
<div class="card-body p-4 text-center">
|
|
|
|
|
<h2 class="h5">No grouped stock items to show</h2>
|
|
|
|
|
<p class="text-body-secondary mb-0">
|
|
|
|
|
Try clearing the filters or switch back to the stock items view.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template x-if="!state.isLoading && !state.error && viewMode === 'grouped' && filteredGroupedEntries.length">
|
|
|
|
|
<div class="d-grid gap-3">
|
|
|
|
|
<template x-for="group in filteredGroupedEntries" :key="group.id">
|
|
|
|
|
<details
|
|
|
|
|
class="card border-0 shadow-sm grouped-stock-card"
|
|
|
|
|
:class="rowClass(group)"
|
|
|
|
|
@toggle="handleGroupedToggle($event)"
|
|
|
|
|
>
|
|
|
|
|
<summary class="card-body p-4 grouped-stock-summary">
|
|
|
|
|
<div class="d-flex flex-column flex-xl-row justify-content-between gap-3">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="small text-body-secondary mb-1">Latest item in group</div>
|
|
|
|
|
<div class="fw-semibold fs-5" x-text="group.name"></div>
|
|
|
|
|
<div class="text-body-secondary small mb-2" x-text="group.description || 'No description'"></div>
|
|
|
|
|
<div class="d-flex flex-wrap gap-3 small text-body-secondary grouped-stock-summary-meta">
|
|
|
|
|
<span><span class="fw-semibold text-body" x-text="group.items?.length || 0"></span> item(s)</span>
|
|
|
|
|
<span><span class="text-body-secondary">Latest added:</span> <span x-text="formatDate(groupedPrimaryDate(group))"></span></span>
|
|
|
|
|
<span><span class="text-body-secondary">First expires:</span> <span x-text="formatDate(groupedFirstExpireDate(group))"></span></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex flex-column align-items-xl-end gap-2">
|
|
|
|
|
<span class="badge rounded-pill align-self-start align-self-xl-end" :class="badgeClass(group)" x-text="expirationFor(group).label"></span>
|
|
|
|
|
<div class="small text-body-secondary text-xl-end">
|
|
|
|
|
<span class="text-body-secondary">First expires:</span>
|
|
|
|
|
<span x-text="expirationFor(group).detail"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="small fw-semibold grouped-stock-toggle-label">Show items</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</summary>
|
|
|
|
|
<div class="card-body pt-0 px-4 pb-4">
|
|
|
|
|
<div class="row g-3 small mb-3 grouped-stock-meta">
|
|
|
|
|
<div class="col-6 col-xl-3">
|
|
|
|
|
<div class="text-body-secondary">Latest quantity / level</div>
|
|
|
|
|
<div class="fw-semibold" x-text="quantityLabel(group)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6 col-xl-3">
|
|
|
|
|
<div class="text-body-secondary">Latest location</div>
|
|
|
|
|
<div class="fw-semibold" x-text="locationLabel(group)"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6 col-xl-3">
|
|
|
|
|
<div class="text-body-secondary">Latest production date</div>
|
|
|
|
|
<div x-text="formatDate(groupedPrimaryDate(group))"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6 col-xl-3">
|
|
|
|
|
<div class="text-body-secondary">First expires</div>
|
|
|
|
|
<div x-text="formatDate(groupedFirstExpireDate(group))"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-6 col-xl-3">
|
|
|
|
|
<div class="text-body-secondary">First production date</div>
|
|
|
|
|
<div x-text="formatDate(groupedFirstProductionDate(group))"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="grouped-stock-items">
|
|
|
|
|
<template x-for="item in group.items" :key="item.id">
|
|
|
|
|
<a class="grouped-stock-item text-decoration-none" :class="groupedItemClass(item)" :href="detailHref(item)">
|
|
|
|
|
<div class="d-flex flex-column flex-lg-row justify-content-between gap-2">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="fw-semibold" x-text="item.name"></div>
|
|
|
|
|
<div class="small text-body-secondary grouped-stock-item-subline">
|
|
|
|
|
<span x-text="locationLabel(item)"></span>
|
|
|
|
|
<span class="grouped-stock-subline-separator" aria-hidden="true">•</span>
|
|
|
|
|
<span x-text="shortDescription(item.description)"></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex flex-wrap gap-3 small text-body-secondary grouped-stock-item-meta">
|
|
|
|
|
<span x-text="quantityLabel(item)"></span>
|
|
|
|
|
<span class="grouped-stock-date-pair">
|
|
|
|
|
<span x-text="formatDate(item.date)"></span>
|
|
|
|
|
<span class="grouped-stock-date-separator" aria-hidden="true">→</span>
|
|
|
|
|
<span x-text="formatDate(item.expire_date)"></span>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="font-monospace" x-text="shortId(item)"></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mt-3 d-flex justify-content-end">
|
|
|
|
|
<button
|
|
|
|
|
class="btn btn-link p-0 text-decoration-none grouped-stock-close"
|
|
|
|
|
type="button"
|
|
|
|
|
@click.prevent="closeGroupedCard($el.closest('details'))"
|
|
|
|
|
>
|
|
|
|
|
Close group
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2026-04-06 09:24:22 +02:00
|
|
|
</section>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function stockListPageData(store) {
|
|
|
|
|
return {
|
|
|
|
|
state: createAsyncState(),
|
2026-04-07 00:41:55 +02:00
|
|
|
viewMode: 'items',
|
2026-04-06 09:24:22 +02:00
|
|
|
entries: [],
|
2026-04-07 00:41:55 +02:00
|
|
|
groupedEntries: [],
|
|
|
|
|
groupedLoaded: false,
|
2026-04-06 09:24:22 +02:00
|
|
|
locations: [],
|
|
|
|
|
locationMap: {},
|
|
|
|
|
locationDescendants: {},
|
|
|
|
|
editForms: {},
|
|
|
|
|
editErrors: {},
|
|
|
|
|
levelOptions: LEVEL_OPTIONS,
|
|
|
|
|
expirationLegend: EXPIRATION_LEGEND,
|
2026-04-06 21:34:02 +02:00
|
|
|
overviewOpen: {
|
|
|
|
|
expiration: false,
|
|
|
|
|
location: false,
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
filters: {
|
|
|
|
|
search: '',
|
2026-04-06 21:34:02 +02:00
|
|
|
expiration: [],
|
|
|
|
|
location: [],
|
2026-04-06 09:24:22 +02:00
|
|
|
},
|
|
|
|
|
async init() {
|
2026-04-06 18:31:31 +02:00
|
|
|
if (!store.isConnected) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2026-04-06 09:24:22 +02:00
|
|
|
await Promise.all([this.loadLocations(), this.loadEntries()]);
|
|
|
|
|
},
|
2026-04-07 00:41:55 +02:00
|
|
|
async switchView(mode) {
|
|
|
|
|
this.viewMode = mode;
|
|
|
|
|
|
|
|
|
|
if (mode === 'grouped' && !this.groupedLoaded) {
|
|
|
|
|
await this.loadGroupedEntries();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async refreshCurrentView() {
|
|
|
|
|
if (this.viewMode === 'grouped') {
|
|
|
|
|
await this.loadGroupedEntries();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await this.loadEntries();
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
async loadEntries() {
|
2026-04-06 18:31:31 +02:00
|
|
|
if (!store.isConnected) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
await runAsyncState(this.state, async () => {
|
|
|
|
|
const loadedEntries = await listStockEntries(store);
|
|
|
|
|
this.entries = sortEntries(loadedEntries);
|
|
|
|
|
this.editForms = Object.fromEntries(
|
|
|
|
|
this.entries.map((entry) => [
|
|
|
|
|
entry.id,
|
|
|
|
|
{
|
|
|
|
|
level: entry.level || 'plenty',
|
|
|
|
|
quantity: entry.quantity ?? '',
|
|
|
|
|
},
|
|
|
|
|
]),
|
|
|
|
|
);
|
|
|
|
|
this.editErrors = {};
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
2026-04-07 00:41:55 +02:00
|
|
|
async loadGroupedEntries() {
|
|
|
|
|
if (!store.isConnected) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await runAsyncState(this.state, async () => {
|
|
|
|
|
const loadedGroups = await listGroupedStockEntries(store);
|
|
|
|
|
this.groupedEntries = sortGroupedEntries(loadedGroups);
|
|
|
|
|
this.groupedLoaded = true;
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
async loadLocations() {
|
2026-04-06 18:31:31 +02:00
|
|
|
if (!store.isConnected) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
try {
|
|
|
|
|
const { flat } = await fetchLocations(store);
|
|
|
|
|
this.locations = flat;
|
|
|
|
|
this.locationMap = Object.fromEntries(
|
|
|
|
|
flat.map((location) => [location.uuid_b64, location.pathLabel]),
|
|
|
|
|
);
|
|
|
|
|
this.locationDescendants = Object.fromEntries(
|
|
|
|
|
flat.map((location) => [
|
|
|
|
|
location.uuid_b64,
|
|
|
|
|
flat
|
|
|
|
|
.filter((candidate) => candidate.lineage_uuid_b64.includes(location.uuid_b64))
|
|
|
|
|
.map((candidate) => candidate.uuid_b64),
|
|
|
|
|
]),
|
|
|
|
|
);
|
|
|
|
|
} catch {
|
|
|
|
|
this.locations = [];
|
|
|
|
|
this.locationMap = {};
|
|
|
|
|
this.locationDescendants = {};
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
clearFilters() {
|
|
|
|
|
this.filters = {
|
|
|
|
|
search: '',
|
2026-04-06 21:34:02 +02:00
|
|
|
expiration: [],
|
|
|
|
|
location: [],
|
2026-04-06 09:24:22 +02:00
|
|
|
};
|
|
|
|
|
},
|
2026-04-06 21:34:02 +02:00
|
|
|
setOverviewOpen(key, open) {
|
|
|
|
|
this.overviewOpen[key] = open;
|
|
|
|
|
|
|
|
|
|
if (!open || !this.isCompactOverviewLayout()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const otherKey = key === 'expiration' ? 'location' : 'expiration';
|
|
|
|
|
this.overviewOpen[otherKey] = false;
|
|
|
|
|
|
|
|
|
|
const otherPanel =
|
|
|
|
|
otherKey === 'expiration'
|
|
|
|
|
? this.$refs.expirationOverview
|
|
|
|
|
: this.$refs.locationOverview;
|
|
|
|
|
|
|
|
|
|
if (otherPanel?.open) {
|
|
|
|
|
otherPanel.open = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
isCompactOverviewLayout() {
|
|
|
|
|
return window.matchMedia('(max-width: 1199.98px)').matches;
|
|
|
|
|
},
|
|
|
|
|
openOverviewCount() {
|
|
|
|
|
return Number(this.overviewOpen.expiration) + Number(this.overviewOpen.location);
|
|
|
|
|
},
|
|
|
|
|
isOnlyOverviewOpen(key) {
|
|
|
|
|
return this.openOverviewCount() === 1 && this.overviewOpen[key];
|
|
|
|
|
},
|
|
|
|
|
overviewRowClass() {
|
|
|
|
|
return this.openOverviewCount() === 1 ? 'overview-row-single-open' : '';
|
|
|
|
|
},
|
|
|
|
|
overviewColClass(key) {
|
|
|
|
|
if (this.openOverviewCount() === 1) {
|
|
|
|
|
return 'col-xl-12';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key === 'expiration' ? 'col-xl-5' : 'col-xl-7';
|
|
|
|
|
},
|
|
|
|
|
expirationFilterSummary() {
|
|
|
|
|
if (this.isAllExpirationSelected()) {
|
|
|
|
|
return 'Show all';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!this.filters.expiration.length) {
|
|
|
|
|
return 'No expiration states selected';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.filters.expiration.length === 1) {
|
|
|
|
|
return this.expirationLegend.find((state) => state.key === this.filters.expiration[0])?.label || '1 expiration state';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${this.filters.expiration.length} expiration states selected`;
|
|
|
|
|
},
|
|
|
|
|
isAllExpirationSelected() {
|
|
|
|
|
return this.filters.expiration.length === 0 || this.filters.expiration.length === EXPIRATION_KEYS.length;
|
|
|
|
|
},
|
|
|
|
|
toggleAllExpirationFilters() {
|
|
|
|
|
this.filters.expiration = [];
|
|
|
|
|
},
|
|
|
|
|
toggleExpirationOverviewFilter(key) {
|
|
|
|
|
if (this.isAllExpirationSelected()) {
|
|
|
|
|
this.filters.expiration = [key];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.toggleExpirationFilter(key);
|
|
|
|
|
},
|
|
|
|
|
toggleExpirationFilter(key) {
|
|
|
|
|
if (this.filters.expiration.includes(key)) {
|
|
|
|
|
this.filters.expiration = this.filters.expiration.filter((value) => value !== key);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.filters.expiration = [...this.filters.expiration, key];
|
|
|
|
|
},
|
|
|
|
|
locationFilterSummary() {
|
|
|
|
|
if (this.isAllLocationsSelected()) {
|
|
|
|
|
return 'All locations';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!this.filters.location.length) {
|
|
|
|
|
return 'No locations selected';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.filters.location.length === 1) {
|
|
|
|
|
return this.locationMap[this.filters.location[0]] || '1 location selected';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${this.filters.location.length} locations selected`;
|
|
|
|
|
},
|
|
|
|
|
selectedLocationSummary() {
|
|
|
|
|
if (this.isAllLocationsSelected()) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!this.filters.location.length) {
|
|
|
|
|
return 'No locations selected';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${this.filters.location.length} selected`;
|
|
|
|
|
},
|
|
|
|
|
locationOverviewGroups() {
|
|
|
|
|
const byParent = this.locations
|
|
|
|
|
.filter((location) => location.depth === 0)
|
|
|
|
|
.map((parent) => ({
|
|
|
|
|
parent,
|
|
|
|
|
items: this.locations.filter((location) =>
|
|
|
|
|
location.lineage_uuid_b64[0] === parent.uuid_b64,
|
|
|
|
|
),
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
return byParent;
|
|
|
|
|
},
|
|
|
|
|
balancedLocationOverviewColumns() {
|
|
|
|
|
const columns = [[], []];
|
|
|
|
|
const sizes = [0, 0];
|
|
|
|
|
|
|
|
|
|
this.locationOverviewGroups().forEach((group) => {
|
|
|
|
|
const groupSize = group.items.length;
|
|
|
|
|
const targetIndex = sizes[0] <= sizes[1] ? 0 : 1;
|
|
|
|
|
columns[targetIndex].push(group);
|
|
|
|
|
sizes[targetIndex] += groupSize;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return columns;
|
|
|
|
|
},
|
|
|
|
|
isAllLocationsSelected() {
|
|
|
|
|
return this.filters.location.length === 0 || (this.locations.length > 0 && this.filters.location.length === this.locations.length);
|
|
|
|
|
},
|
|
|
|
|
toggleAllLocations() {
|
|
|
|
|
this.filters.location = [];
|
|
|
|
|
},
|
|
|
|
|
toggleLocationFilter(uuid) {
|
|
|
|
|
const subtree = this.locationSubtree(uuid);
|
|
|
|
|
|
|
|
|
|
if (this.filters.location.includes(uuid)) {
|
|
|
|
|
this.filters.location = this.filters.location.filter((value) => !subtree.includes(value));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.filters.location = [...new Set([...this.filters.location, ...subtree])];
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
get filteredEntries() {
|
|
|
|
|
return this.entries.filter((entry) => {
|
|
|
|
|
if (
|
|
|
|
|
this.filters.search &&
|
|
|
|
|
!searchBlob(entry, this.locationMap).includes(this.filters.search.toLowerCase())
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
2026-04-06 21:34:02 +02:00
|
|
|
this.filters.expiration.length &&
|
|
|
|
|
this.filters.expiration.length !== EXPIRATION_KEYS.length &&
|
|
|
|
|
!this.filters.expiration.includes(expirationInfo(entry).key)
|
2026-04-06 09:24:22 +02:00
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
2026-04-06 21:34:02 +02:00
|
|
|
this.filters.location.length &&
|
|
|
|
|
this.filters.location.length !== this.locations.length &&
|
|
|
|
|
!this.locationMatchesAnyFilter(entry.location_initial_uuid_b64, this.filters.location)
|
2026-04-06 09:24:22 +02:00
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
},
|
2026-04-07 00:41:55 +02:00
|
|
|
get filteredGroupedEntries() {
|
|
|
|
|
return this.groupedEntries.filter((group) => {
|
|
|
|
|
if (
|
|
|
|
|
this.filters.search &&
|
|
|
|
|
!groupSearchBlob(group, this.locationMap).includes(this.filters.search.toLowerCase())
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
this.filters.expiration.length &&
|
|
|
|
|
this.filters.expiration.length !== EXPIRATION_KEYS.length &&
|
|
|
|
|
!this.filters.expiration.includes(expirationInfo(group).key)
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
this.filters.location.length &&
|
|
|
|
|
this.filters.location.length !== this.locations.length &&
|
|
|
|
|
!this.groupMatchesLocationFilters(group, this.filters.location)
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
get visibleResultCount() {
|
|
|
|
|
return this.viewMode === 'grouped'
|
|
|
|
|
? this.filteredGroupedEntries.length
|
|
|
|
|
: this.filteredEntries.length;
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
expirationFor(entry) {
|
|
|
|
|
return expirationInfo(entry);
|
|
|
|
|
},
|
2026-04-06 21:34:02 +02:00
|
|
|
isExpirationFilterActive(key) {
|
|
|
|
|
return this.isAllExpirationSelected() || this.filters.expiration.includes(key);
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
rowClass(entry) {
|
|
|
|
|
return `expiration-${expirationInfo(entry).key}`;
|
|
|
|
|
},
|
|
|
|
|
badgeClass(entry) {
|
|
|
|
|
return `expiration-badge-${expirationInfo(entry).key}`;
|
|
|
|
|
},
|
2026-04-07 00:41:55 +02:00
|
|
|
groupedItemClass(entry) {
|
|
|
|
|
return `expiration-soft-${expirationInfo(entry).key}`;
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
legendClass(key) {
|
2026-04-06 21:34:02 +02:00
|
|
|
const hasActiveFilters = this.filters.expiration.length > 0 && !this.isAllExpirationSelected();
|
|
|
|
|
return [
|
|
|
|
|
`legend-${key}`,
|
|
|
|
|
hasActiveFilters && this.isExpirationFilterActive(key) ? 'legend-card-active' : '',
|
|
|
|
|
hasActiveFilters && !this.isExpirationFilterActive(key) ? 'legend-card-inactive' : '',
|
|
|
|
|
]
|
|
|
|
|
.filter(Boolean)
|
|
|
|
|
.join(' ');
|
2026-04-06 09:24:22 +02:00
|
|
|
},
|
|
|
|
|
expirationCount(key) {
|
2026-04-07 00:41:55 +02:00
|
|
|
const source = this.viewMode === 'grouped' ? this.groupedEntries : this.entries;
|
|
|
|
|
return source.filter((entry) => {
|
2026-04-06 21:34:02 +02:00
|
|
|
if (
|
|
|
|
|
this.filters.search &&
|
2026-04-07 00:41:55 +02:00
|
|
|
!(this.viewMode === 'grouped'
|
|
|
|
|
? groupSearchBlob(entry, this.locationMap)
|
|
|
|
|
: searchBlob(entry, this.locationMap)
|
|
|
|
|
).includes(this.filters.search.toLowerCase())
|
2026-04-06 21:34:02 +02:00
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
this.filters.location.length &&
|
|
|
|
|
this.filters.location.length !== this.locations.length &&
|
2026-04-07 00:41:55 +02:00
|
|
|
!(this.viewMode === 'grouped'
|
|
|
|
|
? this.groupMatchesLocationFilters(entry, this.filters.location)
|
|
|
|
|
: this.locationMatchesAnyFilter(entry.location_initial_uuid_b64, this.filters.location))
|
2026-04-06 21:34:02 +02:00
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return expirationInfo(entry).key === key;
|
|
|
|
|
}).length;
|
2026-04-06 09:24:22 +02:00
|
|
|
},
|
|
|
|
|
shortId(entry) {
|
|
|
|
|
return entry.uuid_b64 ? entry.uuid_b64.slice(0, 10) : 'No id';
|
|
|
|
|
},
|
|
|
|
|
locationLabel(entry) {
|
|
|
|
|
return resolveLocationLabel(entry, this.locationMap);
|
|
|
|
|
},
|
2026-04-06 21:34:02 +02:00
|
|
|
isLocationFilterActive(uuid) {
|
|
|
|
|
return this.isAllLocationsSelected() || this.filters.location.includes(uuid);
|
|
|
|
|
},
|
|
|
|
|
toggleLocationOverviewFilter(uuid) {
|
|
|
|
|
if (this.isAllLocationsSelected()) {
|
|
|
|
|
this.filters.location = [...this.locationSubtree(uuid)];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.toggleLocationFilter(uuid);
|
|
|
|
|
},
|
|
|
|
|
locationOverviewClass(location) {
|
|
|
|
|
const hasActiveFilters = this.filters.location.length > 0 && !this.isAllLocationsSelected();
|
|
|
|
|
return [
|
|
|
|
|
'location-overview',
|
|
|
|
|
`location-type-${location.type || 'unknown'}`,
|
|
|
|
|
location.depth ? 'location-overview-child' : 'location-overview-parent',
|
|
|
|
|
hasActiveFilters && this.isLocationFilterActive(location.uuid_b64) ? 'legend-card-active' : '',
|
|
|
|
|
hasActiveFilters && !this.isLocationFilterActive(location.uuid_b64) ? 'legend-card-inactive' : '',
|
|
|
|
|
]
|
|
|
|
|
.filter(Boolean)
|
|
|
|
|
.join(' ');
|
|
|
|
|
},
|
|
|
|
|
locationOverviewStyle(location) {
|
|
|
|
|
const offset = location.depth;
|
|
|
|
|
return `margin-left: ${offset}rem; width: calc(100% - ${offset}rem);`;
|
|
|
|
|
},
|
|
|
|
|
locationCount(locationUuid) {
|
2026-04-07 00:41:55 +02:00
|
|
|
const source = this.viewMode === 'grouped' ? this.groupedEntries : this.entries;
|
|
|
|
|
return source.filter((entry) => {
|
2026-04-06 21:34:02 +02:00
|
|
|
if (
|
|
|
|
|
this.filters.search &&
|
2026-04-07 00:41:55 +02:00
|
|
|
!(this.viewMode === 'grouped'
|
|
|
|
|
? groupSearchBlob(entry, this.locationMap)
|
|
|
|
|
: searchBlob(entry, this.locationMap)
|
|
|
|
|
).includes(this.filters.search.toLowerCase())
|
2026-04-06 21:34:02 +02:00
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
this.filters.expiration.length &&
|
|
|
|
|
this.filters.expiration.length !== EXPIRATION_KEYS.length &&
|
|
|
|
|
!this.filters.expiration.includes(expirationInfo(entry).key)
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-07 00:41:55 +02:00
|
|
|
return this.viewMode === 'grouped'
|
|
|
|
|
? this.groupMatchesLocationFilter(entry, locationUuid)
|
|
|
|
|
: this.locationMatchesFilter(entry.location_initial_uuid_b64, locationUuid);
|
2026-04-06 21:34:02 +02:00
|
|
|
}).length;
|
|
|
|
|
},
|
2026-04-06 09:24:22 +02:00
|
|
|
locationMatchesFilter(entryLocationUuid, selectedLocationUuid) {
|
|
|
|
|
if (!selectedLocationUuid) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const allowed = this.locationDescendants[selectedLocationUuid] || [selectedLocationUuid];
|
|
|
|
|
return allowed.includes(entryLocationUuid);
|
|
|
|
|
},
|
2026-04-06 21:34:02 +02:00
|
|
|
locationSubtree(selectedLocationUuid) {
|
|
|
|
|
return this.locationDescendants[selectedLocationUuid] || [selectedLocationUuid];
|
|
|
|
|
},
|
|
|
|
|
locationMatchesAnyFilter(entryLocationUuid, selectedLocationUuids) {
|
|
|
|
|
if (!selectedLocationUuids.length) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return selectedLocationUuids.some((selectedLocationUuid) =>
|
|
|
|
|
this.locationMatchesFilter(entryLocationUuid, selectedLocationUuid),
|
|
|
|
|
);
|
|
|
|
|
},
|
2026-04-07 00:41:55 +02:00
|
|
|
groupMatchesLocationFilter(group, selectedLocationUuid) {
|
|
|
|
|
if (this.locationMatchesFilter(group.location_initial_uuid_b64, selectedLocationUuid)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (group.items || []).some((item) =>
|
|
|
|
|
this.locationMatchesFilter(item.location_initial_uuid_b64, selectedLocationUuid),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
groupMatchesLocationFilters(group, selectedLocationUuids) {
|
|
|
|
|
if (!selectedLocationUuids.length) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return selectedLocationUuids.some((selectedLocationUuid) =>
|
|
|
|
|
this.groupMatchesLocationFilter(group, selectedLocationUuid),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
detailHref(entry) {
|
|
|
|
|
return `#/stock/${entry.uuid_b64}`;
|
|
|
|
|
},
|
|
|
|
|
closeGroupedCard(details) {
|
|
|
|
|
if (!details) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
details.open = false;
|
|
|
|
|
},
|
|
|
|
|
handleGroupedToggle(event) {
|
|
|
|
|
const details = event.target;
|
|
|
|
|
if (!(details instanceof HTMLDetailsElement) || details.open) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const summary = details.querySelector('.grouped-stock-summary');
|
|
|
|
|
if (!summary) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
|
summary.scrollIntoView({
|
|
|
|
|
block: 'start',
|
|
|
|
|
behavior: 'smooth',
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
groupedPrimaryDate,
|
|
|
|
|
groupedFirstProductionDate,
|
|
|
|
|
groupedFirstExpireDate,
|
|
|
|
|
shortDescription,
|
2026-04-06 09:24:22 +02:00
|
|
|
quantityLabel,
|
|
|
|
|
stockTypeDetail(entry) {
|
|
|
|
|
if (entry.stock_type === 'binary') {
|
|
|
|
|
return 'Binary stock';
|
|
|
|
|
}
|
|
|
|
|
if (entry.stock_type === 'descriptive') {
|
|
|
|
|
return `Level: ${LEVEL_LABELS[entry.level] || 'Not set'}`;
|
|
|
|
|
}
|
|
|
|
|
return entry.uom_symbol ? `Measured in ${entry.uom_symbol}` : 'Measured stock';
|
|
|
|
|
},
|
|
|
|
|
formatDate,
|
|
|
|
|
async updateBinary(entry, level) {
|
2026-04-10 15:43:39 +02:00
|
|
|
await this.useEntry(entry);
|
2026-04-06 09:24:22 +02:00
|
|
|
},
|
|
|
|
|
async saveLevel(entry) {
|
|
|
|
|
const level = this.editForms[entry.id]?.level || 'plenty';
|
2026-04-06 21:34:02 +02:00
|
|
|
if (level === 'gone') {
|
2026-04-10 15:43:39 +02:00
|
|
|
await this.useEntry(entry);
|
2026-04-06 21:34:02 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-06 09:24:22 +02:00
|
|
|
await this.saveEntryUpdate(entry, {
|
|
|
|
|
level,
|
|
|
|
|
}, { level });
|
|
|
|
|
},
|
|
|
|
|
async saveQuantity(entry) {
|
|
|
|
|
const quantity = Number(this.editForms[entry.id]?.quantity);
|
|
|
|
|
if (Number.isNaN(quantity) || quantity < 0) {
|
|
|
|
|
this.editErrors[entry.id] = 'Enter a valid quantity first.';
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await this.saveEntryUpdate(entry, {
|
|
|
|
|
quantity,
|
|
|
|
|
}, { quantity });
|
|
|
|
|
},
|
2026-04-06 21:34:02 +02:00
|
|
|
async markGone(entry) {
|
2026-04-10 15:43:39 +02:00
|
|
|
await this.useEntry(entry);
|
2026-04-06 09:24:22 +02:00
|
|
|
},
|
|
|
|
|
async saveEntryUpdate(entry, payload, localPatch) {
|
|
|
|
|
this.editErrors[entry.id] = '';
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const updated = await updateStockItem(store, entry.uuid_b64, payload);
|
|
|
|
|
this.replaceEntry(entry.id, { ...entry, ...localPatch, ...updated });
|
|
|
|
|
store.addAlert({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: `${entry.name} updated successfully.`,
|
|
|
|
|
});
|
|
|
|
|
} catch (error) {
|
|
|
|
|
this.editErrors[entry.id] = error.message || 'Update failed.';
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-04-10 15:43:39 +02:00
|
|
|
async useEntry(entry) {
|
2026-04-06 09:24:22 +02:00
|
|
|
this.editErrors[entry.id] = '';
|
|
|
|
|
|
|
|
|
|
try {
|
2026-04-10 15:43:39 +02:00
|
|
|
const result = await useStockItem(store, entry.uuid_b64);
|
2026-04-06 09:24:22 +02:00
|
|
|
this.entries = this.entries.filter((candidate) => candidate.id !== entry.id);
|
|
|
|
|
delete this.editForms[entry.id];
|
|
|
|
|
delete this.editErrors[entry.id];
|
2026-04-10 15:43:39 +02:00
|
|
|
const alreadyGone = result.status === 'already_gone';
|
2026-04-06 09:24:22 +02:00
|
|
|
store.addAlert({
|
2026-04-10 15:43:39 +02:00
|
|
|
type: alreadyGone ? 'info' : 'success',
|
|
|
|
|
message: alreadyGone
|
|
|
|
|
? `${entry.name} was already out of stock and removed from the list.`
|
|
|
|
|
: `${entry.name} was marked gone and removed from the list.`,
|
2026-04-06 09:24:22 +02:00
|
|
|
});
|
|
|
|
|
} catch (error) {
|
2026-04-10 15:43:39 +02:00
|
|
|
this.editErrors[entry.id] = error.message || 'Mark gone failed.';
|
2026-04-06 09:24:22 +02:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
replaceEntry(entryId, nextEntry) {
|
|
|
|
|
this.entries = sortEntries(
|
|
|
|
|
this.entries.map((entry) => (entry.id === entryId ? nextEntry : entry)),
|
|
|
|
|
);
|
|
|
|
|
this.editForms[entryId] = {
|
|
|
|
|
level: nextEntry.level || 'plenty',
|
|
|
|
|
quantity: nextEntry.quantity ?? '',
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|