From 4974d99a7a915a9457bbb6d7b1a12e336f3455ac Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 5 Mar 2026 01:45:16 -0500 Subject: [PATCH] fixed issue in bill of production --- src/pages/ProductionPage.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/ProductionPage.vue b/src/pages/ProductionPage.vue index 30f7cd9..5d9c96e 100644 --- a/src/pages/ProductionPage.vue +++ b/src/pages/ProductionPage.vue @@ -338,9 +338,8 @@ const totals = computed(() => { const effectiveCost = rawCost * rrrFactor const rrrSavings = rawCost - effectiveCost - const totalJournals = Math.ceil(totalCrafts / CRAFTS_PER_JOURNAL) - return { rawCost, effectiveCost, rrrSavings, totalCrafts, totalItems, totalJournals } + return { rawCost, effectiveCost, rrrSavings, totalCrafts, totalItems } }) const journalRows = computed(() => {