refactor: reorganize component files and update import paths; add PsItem and PsProduct interfaces

This commit is contained in:
Vincent Guillet
2025-11-12 12:34:58 +01:00
parent f063a245b9
commit bcc71b965b
92 changed files with 1694 additions and 2815 deletions

View File

@@ -0,0 +1,7 @@
export interface ProductListItem {
id: number;
name: string;
id_manufacturer?: number;
id_supplier?: number;
id_category_default?: number;
}