"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."
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
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 |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 15 KiB |
|
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)"
|
||||
|
||||
@@ -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',
|
||||
|
||||