From 0b686c48e52b968778b2882a0e349659ae9dcb5f Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Fri, 2 Jan 2026 18:39:57 +0100 Subject: [PATCH] prune: remove the validation planninf. Just go and it'll be ok --- src/modules/heijkunka/heijunka-store.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/modules/heijkunka/heijunka-store.ts b/src/modules/heijkunka/heijunka-store.ts index 698c27c..cc54fcc 100644 --- a/src/modules/heijkunka/heijunka-store.ts +++ b/src/modules/heijkunka/heijunka-store.ts @@ -24,7 +24,6 @@ type HeijunkaState = { inventory: Inventory orders: Order[] planning: ProductType[] - validatedPlanning: boolean meta: { currentHour: number } @@ -58,7 +57,6 @@ export const useHeijunkaStore = defineStore('heijunka', { inventory: { ...initialInventory }, orders: [], planning: [], - validatedPlanning: false, meta: { currentHour: 0 } @@ -136,12 +134,7 @@ export const useHeijunkaStore = defineStore('heijunka', { } }) }, - validatePlanning(planning: ProductType[]) { - this.validatedPlanning = true - this.planning = planning - }, reset() { - this.validatedPlanning = false this.meta.currentHour = 0 this.planning = [] this.orders = []