Преглед изворни кода

Update FP-MTMS checklist comments for inventory Location Search revert.

Co-authored-by: Cursor <[email protected]>
production
CANCERYS\kw093 пре 6 часа
родитељ
комит
971d20da06
5 измењених фајлова са 5 додато и 3 уклоњено
  1. +1
    -1
      src/app/api/inventory/actions.ts
  2. +1
    -1
      src/components/InventorySearch/InventoryLotLineTable.tsx
  3. +1
    -1
      src/components/InventorySearch/InventorySearch.tsx
  4. +1
    -0
      src/components/InventorySearch/InventorySearchWrapper.tsx
  5. +1
    -0
      src/components/SearchBox/SearchBox.tsx

+ 1
- 1
src/app/api/inventory/actions.ts Прегледај датотеку

@@ -172,7 +172,7 @@ async function fetchInventoriesLatestImpl(data: SearchInventory) {
export const fetchInventories = cache(fetchInventoriesImpl);

/**
* FP-MTMS Version Checklist | Functions Ref. No. 18 | v1.0.3 | 2026-09-07
* FP-MTMS Version Checklist | Functions Ref. No. 18 | v1.0.5 | 2026-09-21
* Inventory search page: latest inventory row per item (no baseUnit/uomId filter).
*/
export const fetchInventoriesLatest = cache(fetchInventoriesLatestImpl);


+ 1
- 1
src/components/InventorySearch/InventoryLotLineTable.tsx Прегледај датотеку

@@ -59,7 +59,7 @@ interface Props {
onStockAdjustmentSuccess?: () => void | Promise<void>;
}

/** FP-MTMS Version Checklist | Functions Ref. No. 3 | v1.0.7 | 2026-09-08 */
/** FP-MTMS Version Checklist | Functions Ref. No. 3 | v1.0.9 | 2026-09-21 */
const InventoryLotLineTable: React.FC<Props> = ({
inventoryLotLines, pagingController, setPagingController, totalCount, inventory,
filterLotNo,


+ 1
- 1
src/components/InventorySearch/InventorySearch.tsx Прегледај датотеку

@@ -62,7 +62,7 @@ const extractItemRecords = (res: unknown): ItemLookupRow[] => {
return [];
};

/** FP-MTMS Version Checklist | Functions Ref. No. 18 | v1.0.3 | 2026-09-07 */
/** FP-MTMS Version Checklist | Functions Ref. No. 18 | v1.0.5 | 2026-09-21 */
const InventorySearch: React.FC<Props> = ({ inventories, printerCombo }) => {
const { t } = useTranslation(['inventory', 'common', 'item']);
const { data: session } = useSession();


+ 1
- 0
src/components/InventorySearch/InventorySearchWrapper.tsx Прегледај датотеку

@@ -8,6 +8,7 @@ interface SubComponents {
Loading: typeof GeneralLoading;
}

/** FP-MTMS Version Checklist | Functions Ref. No. 79 | v1.0.1 | 2026-09-21 */
const InventorySearchWrapper: React.FC & SubComponents = async () => {
const [inventories, printerCombo] = await Promise.all([
fetchInventories(),


+ 1
- 0
src/components/SearchBox/SearchBox.tsx Прегледај датотеку

@@ -128,6 +128,7 @@ interface Props<T extends string> {
disabled?: boolean;
}

/** FP-MTMS Version Checklist | Functions Ref. No. 79 | v1.0.1 | 2026-09-21 */
function SearchBox<T extends string>({
criteria,
onSearch,


Loading…
Откажи
Сачувај