config issues prod

This commit is contained in:
2025-09-27 14:25:45 -04:00
parent d6525f2d24
commit 9cbb2954b5
14 changed files with 168 additions and 53 deletions

View File

@@ -248,7 +248,7 @@ import Header from '../../layouts/headers/headerauth.vue'
import SideBar from '../../layouts/sidebar/sidebar.vue'
import Footer from '../../layouts/footers/footer.vue'
import useValidate from "@vuelidate/core";
import { required, minLength, requiredIf } from "@vuelidate/validators";
import { required, requiredIf } from "@vuelidate/validators";
import { notify } from "@kyvg/vue3-notification";
// Interfaces to describe the shape of your data

View File

@@ -270,13 +270,7 @@ interface UserCard {
card_number: string;
security_number: string;
}
interface PreAuthTransaction {
id: number;
transaction_type: number;
status: number;
auth_net_transaction_id: string;
preauthorize_amount: number;
}
export default defineComponent({
name: 'finalizeTicket',

View File

@@ -552,7 +552,7 @@ export default defineComponent({
.then((response: any) => {
this.pricing = response.data;
})
.catch((error: any) => {
.catch((_error: any) => {
notify({
title: "Error",
text: "Could not get oil pricing",
@@ -570,7 +570,7 @@ export default defineComponent({
.then((response: any) => {
this.customer = response.data;
})
.catch((error: any) => {
.catch((_error: any) => {
notify({
title: "Error",
text: "Could not find customer",