config issues prod
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user