255 lines
10 KiB
Vue
255 lines
10 KiB
Vue
<script setup>
|
|
import { ref, watch } from 'vue';
|
|
import AppLayout from '@/Layouts/AppLayout.vue';
|
|
import List from '@/Components/List.vue';
|
|
import ListItem from '@/Components/ListItem.vue';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
import InputLabel from '@/Components/InputLabel.vue';
|
|
import TextInput from '@/Components/TextInput.vue';
|
|
import { Link, useForm } from '@inertiajs/vue3';
|
|
import ActionMessage from '@/Components/ActionMessage.vue';
|
|
import Drawer from '@/Components/Drawer.vue';
|
|
import Pagination from '@/Components/Pagination.vue';
|
|
import SearchInput from '@/Components/SearchInput.vue';
|
|
|
|
const props = defineProps({
|
|
clients: Object,
|
|
filters: Object
|
|
});
|
|
|
|
const Address = {
|
|
address: '',
|
|
country: '',
|
|
type_id: 1
|
|
};
|
|
|
|
const Phone = {
|
|
nu: '',
|
|
country_code: '00386',
|
|
type_id: 1
|
|
}
|
|
|
|
const formClient = useForm({
|
|
first_name: '',
|
|
last_name: '',
|
|
full_name: '',
|
|
tax_number: '',
|
|
social_security_number: '',
|
|
description: '',
|
|
address: Address,
|
|
phone: Phone
|
|
});
|
|
|
|
//Create client drawer
|
|
const drawerCreateClient = ref(false);
|
|
|
|
//Search input
|
|
const search = {
|
|
search: props.filters.search,
|
|
route: {
|
|
link: 'client'
|
|
}
|
|
}
|
|
|
|
//Open drawer create client
|
|
const openDrawerCreateClient = () => {
|
|
drawerCreateClient.value = true
|
|
}
|
|
|
|
|
|
//Close any drawer on page
|
|
const closeDrawer = () => {
|
|
drawerCreateClient.value = false
|
|
}
|
|
|
|
//Ajax call post to store new client
|
|
const storeClient = () => {
|
|
formClient.post(route('client.store'), {
|
|
onBefore: () => {
|
|
formClient.address.type_id = Number(formClient.address.type_id);
|
|
},
|
|
onSuccess: () => {
|
|
closeDrawer();
|
|
formClient.reset();
|
|
}
|
|
});
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<AppLayout title="Client">
|
|
<template #header>
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
Naročniki
|
|
</h2>
|
|
</template>
|
|
<div class="py-12">
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
<div class="px-3 bg-white overflow-hidden shadow-xl sm:rounded-lg">
|
|
<div class="mx-auto max-w-4x1 py-3">
|
|
<div class="flex justify-between">
|
|
<PrimaryButton @click="openDrawerCreateClient" class="bg-blue-400">Dodaj</PrimaryButton>
|
|
<SearchInput :options="search" />
|
|
</div>
|
|
<List class="mt-2">
|
|
<ListItem v-for="client in clients.data">
|
|
<div class="flex justify-between shadow rounded border-solid border-l-4 border-blue-400 p-3">
|
|
<div class="flex min-w-0 gap-x-4">
|
|
<div class="min-w-0 flex-auto">
|
|
<p class="text-sm font-semibold leading-6 text-gray-900"><Link :href="route('client.show', {uuid: client.uuid})">{{ client.person.full_name }}</Link></p>
|
|
<p class="mt-1 truncate text-xs leading-5 text-gray-500">{{ client.person.nu }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="hidden shrink-0 sm:flex sm:flex-col sm:items-end">
|
|
<p class="text-sm leading-6 text-gray-900">{{ client.person.tax_number }}</p>
|
|
<div class="mt-1 flex items-center gap-x-1.5">
|
|
<p class="text-xs leading-5 text-gray-500">Naročnik</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ListItem>
|
|
</List>
|
|
</div>
|
|
<Pagination :links="clients.links" :from="clients.from" :to="clients.to" :total="clients.total" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AppLayout>
|
|
<Drawer
|
|
:show="drawerCreateClient"
|
|
@close="drawerCreateClient = false"
|
|
>
|
|
<template #title>Novi naročnik</template>
|
|
<template #content>
|
|
<form @submit.prevent="storeClient">
|
|
<div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="fullname" value="Naziv"/>
|
|
<TextInput
|
|
id="fullname"
|
|
ref="fullnameInput"
|
|
v-model="formClient.full_name"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="full-name"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="taxnumber" value="Davčna"/>
|
|
<TextInput
|
|
id="taxnumber"
|
|
ref="taxnumberInput"
|
|
v-model="formClient.tax_number"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="tax-number"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="socialSecurityNumber" value="Matična / Emšo"/>
|
|
<TextInput
|
|
id="socialSecurityNumber"
|
|
ref="socialSecurityNumberInput"
|
|
v-model="formClient.social_security_number"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="social-security-number"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="address" value="Naslov"/>
|
|
<TextInput
|
|
id="address"
|
|
ref="addressInput"
|
|
v-model="formClient.address.address"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="address"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="addressCountry" value="Država"/>
|
|
<TextInput
|
|
id="addressCountry"
|
|
ref="addressCountryInput"
|
|
v-model="formClient.address.country"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="address-country"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="addressType" value="Vrsta naslova"/>
|
|
<select
|
|
class="block w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm"
|
|
id="addressType"
|
|
v-model="formClient.address.type_id"
|
|
>
|
|
<option value="1">Stalni</option>
|
|
<option value="2">Začasni</option>
|
|
<!-- ... -->
|
|
</select>
|
|
</div>
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="phoneCountyCode" value="Koda države tel."/>
|
|
<select
|
|
class="block w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm"
|
|
id="phoneCountyCode"
|
|
v-model="formClient.phone.country_code"
|
|
>
|
|
<option value="00386">+386 (Slovenija)</option>
|
|
<option value="00385">+385 (Hrvaška)</option>
|
|
<option value="0039">+39 (Italija)</option>
|
|
<option value="0036">+39 (Madžarska)</option>
|
|
<option value="0043">+43 (Avstrija)</option>
|
|
<option value="00381">+381 (Srbija)</option>
|
|
<option value="00387">+387 (Bosna in Hercegovina)</option>
|
|
<option value="00382">+382 (Črna gora)</option>
|
|
<!-- ... -->
|
|
</select>
|
|
</div>
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="phoneNu" value="Telefonska št."/>
|
|
<TextInput
|
|
id="phoneNu"
|
|
ref="phoneNuInput"
|
|
v-model="formClient.phone.nu"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="phone-nu"
|
|
/>
|
|
</div>
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="description" value="Opis"/>
|
|
<TextInput
|
|
id="description"
|
|
ref="descriptionInput"
|
|
v-model="formClient.description"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="description"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-end mt-4">
|
|
<ActionMessage :on="formClient.recentlySuccessful" class="me-3">
|
|
Shranjeno.
|
|
</ActionMessage>
|
|
|
|
<PrimaryButton :class="{ 'opacity-25': formClient.processing }" :disabled="formClient.processing">
|
|
Shrani
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
</Drawer>
|
|
</template>
|