"Hide customer and additional items sections in PosDepartmentStepMobile2 using v-show directive. Update app branding: rename app to 'Truck Wash' in vite.config.js. Add and update favicon assets for new branding."

This commit is contained in:
Jeppe Bundgaard
2025-11-17 17:20:05 +01:00
parent ac1765f1c0
commit 5bdd774849
11 changed files with 4 additions and 4 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

@@ -441,7 +441,7 @@ watch(() => vehicles.vehicle_1.value.reference, (newValue, oldValue) => {
<template v-else>
<div class="is-flex is-flex-direction-column is-justify-content-space-between is-gap-2">
<!-- Customer selection -->
<PosDepartmentStepMobile2Customer subtitle="" :label="customer_name"/>
<PosDepartmentStepMobile2Customer subtitle="" :label="customer_name" v-show="false"/>
<!-- Registration numbers -->
<PosDepartmentStepMobile2RegistrationNumbers :classes="layout.classes" />
<!-- Product -->
@@ -453,7 +453,7 @@ watch(() => vehicles.vehicle_1.value.reference, (newValue, oldValue) => {
:product="transactionItems.primaryItem.value"
/>
<!-- Additional items -->
<PosDepartmentStepMobile2AdditionalItems :label="SessionUser.objects.global.language.additional_items" :subtitle="''"/>
<PosDepartmentStepMobile2AdditionalItems :label="SessionUser.objects.global.language.additional_items" :subtitle="''" v-show="false"/>
<!-- Last order details -->
<PosDepartmentStepMobile2LastOrder
v-show="lastOrders.get(1)"
+2 -2
View File
@@ -104,8 +104,8 @@ export default defineConfig(({ mode }) => {
]
},
manifest: {
name: 'Truck Wash.io',
short_name: 'Truck Wash.io',
name: 'Truck Wash',
short_name: 'Truck Wash',
description: 'Access your Truck Wash accounts and transactions from anywhere.',
theme_color: '#063651',
background_color: '#0787bb',