feat: implement API endpoint for customer creation and enhance order form with quick customer creation modal
This commit is contained in:
parent
1af4af70fa
commit
3a8cb727fa
@ -8,6 +8,7 @@
|
|||||||
use App\Http\Requests\Admin\Master\CustomerRequest;
|
use App\Http\Requests\Admin\Master\CustomerRequest;
|
||||||
use App\Models\Customer;
|
use App\Models\Customer;
|
||||||
use App\Services\Master\CustomerService;
|
use App\Services\Master\CustomerService;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Http\RedirectResponse;
|
use Illuminate\Http\RedirectResponse;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Inertia\Inertia;
|
use Inertia\Inertia;
|
||||||
@ -41,6 +42,18 @@ public function store(CustomerRequest $request): RedirectResponse
|
|||||||
return redirect()->route('admin.master.customers.index');
|
return redirect()->route('admin.master.customers.index');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function storeApi(CustomerRequest $request): JsonResponse
|
||||||
|
{
|
||||||
|
$this->customerService->create($request->validated());
|
||||||
|
|
||||||
|
$customer = Customer::query()->latest()->first();
|
||||||
|
|
||||||
|
return response()->json([
|
||||||
|
'id' => $customer->id,
|
||||||
|
'name' => $customer->name,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
public function update(CustomerRequest $request, Customer $customer): RedirectResponse
|
public function update(CustomerRequest $request, Customer $customer): RedirectResponse
|
||||||
{
|
{
|
||||||
$this->customerService->update($customer, $request->validated());
|
$this->customerService->update($customer, $request->validated());
|
||||||
|
|||||||
@ -0,0 +1,121 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { Save } from '@lucide/vue';
|
||||||
|
import { reactive, ref } from 'vue';
|
||||||
|
import { toast } from 'vue-sonner';
|
||||||
|
import { PhoneNumberInput } from '@/components/form/phone-number-input';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import {
|
||||||
|
Field,
|
||||||
|
FieldError,
|
||||||
|
FieldGroup,
|
||||||
|
FieldLabel,
|
||||||
|
FieldSet,
|
||||||
|
} from '@/components/ui/field';
|
||||||
|
import { Input } from '@/components/ui/input';
|
||||||
|
import { Textarea } from '@/components/ui/textarea';
|
||||||
|
import { apiFetch } from '@/lib/api';
|
||||||
|
import { FIELD_LIMITS } from '@/lib/field-limits';
|
||||||
|
|
||||||
|
const open = defineModel<boolean>('open', { default: false });
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
created: [customer: { id: number; name: string }];
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const processing = ref(false);
|
||||||
|
const errors = reactive<Record<string, string>>({});
|
||||||
|
|
||||||
|
const form = reactive({
|
||||||
|
name: '',
|
||||||
|
phone_number: '',
|
||||||
|
address: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
function resetForm() {
|
||||||
|
form.name = '';
|
||||||
|
form.phone_number = '';
|
||||||
|
form.address = '';
|
||||||
|
Object.keys(errors).forEach((key) => delete errors[key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function submit() {
|
||||||
|
Object.keys(errors).forEach((key) => delete errors[key]);
|
||||||
|
processing.value = true;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const customer = await apiFetch<{ id: number; name: string }>('/admin/master/customers/api', {
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify({
|
||||||
|
name: form.name,
|
||||||
|
phone_number: form.phone_number || null,
|
||||||
|
address: form.address || null,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
emit('created', customer);
|
||||||
|
open.value = false;
|
||||||
|
resetForm();
|
||||||
|
toast.success('Pelanggan berhasil ditambahkan.');
|
||||||
|
} catch (error) {
|
||||||
|
const message = error instanceof Error ? error.message : 'Gagal menyimpan data.';
|
||||||
|
|
||||||
|
if (message.includes('nama')) {
|
||||||
|
errors.name = message;
|
||||||
|
} else {
|
||||||
|
toast.error(message);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
processing.value = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Dialog v-model:open="open">
|
||||||
|
<DialogContent class="sm:max-w-md">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Tambah Pelanggan</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<form @submit.prevent="submit">
|
||||||
|
<FieldGroup>
|
||||||
|
<FieldSet class="grid gap-4">
|
||||||
|
<Field>
|
||||||
|
<FieldLabel for="quick-customer-name" required>Nama</FieldLabel>
|
||||||
|
<Input id="quick-customer-name" v-model="form.name" type="text"
|
||||||
|
placeholder="Contoh: Budi Santoso" autofocus :maxlength="FIELD_LIMITS.name" />
|
||||||
|
<FieldError v-if="errors.name" :errors="[errors.name]" />
|
||||||
|
</Field>
|
||||||
|
<Field>
|
||||||
|
<FieldLabel for="quick-customer-phone">Nomor Telepon</FieldLabel>
|
||||||
|
<PhoneNumberInput id="quick-customer-phone" v-model="form.phone_number"
|
||||||
|
placeholder="Contoh: 08123456789" />
|
||||||
|
</Field>
|
||||||
|
<Field>
|
||||||
|
<FieldLabel for="quick-customer-address">Alamat</FieldLabel>
|
||||||
|
<Textarea id="quick-customer-address" v-model="form.address" rows="3"
|
||||||
|
placeholder="Contoh: Jl. Mawar No. 12, Surabaya" />
|
||||||
|
</Field>
|
||||||
|
</FieldSet>
|
||||||
|
</FieldGroup>
|
||||||
|
|
||||||
|
<DialogFooter class="mt-6">
|
||||||
|
<Button type="button" variant="outline" :disabled="processing" @click="open = false">
|
||||||
|
Batal
|
||||||
|
</Button>
|
||||||
|
<Button type="submit" :disabled="processing">
|
||||||
|
<Save class="size-4" />
|
||||||
|
{{ processing ? 'Menyimpan...' : 'Simpan' }}
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</form>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
@ -5,6 +5,7 @@ import { computed, ref, watch } from 'vue';
|
|||||||
import { toast } from 'vue-sonner';
|
import { toast } from 'vue-sonner';
|
||||||
import PosCatalogCard from '@/components/admin/manage/PosCatalogCard.vue';
|
import PosCatalogCard from '@/components/admin/manage/PosCatalogCard.vue';
|
||||||
import PosCatalogVariantThumb from '@/components/admin/manage/PosCatalogVariantThumb.vue';
|
import PosCatalogVariantThumb from '@/components/admin/manage/PosCatalogVariantThumb.vue';
|
||||||
|
import CustomerQuickCreateModal from '@/components/admin/manage/orders/CustomerQuickCreateModal.vue';
|
||||||
import { NumberInput } from '@/components/form/number-input';
|
import { NumberInput } from '@/components/form/number-input';
|
||||||
import { RupiahInput } from '@/components/form/rupiah-input';
|
import { RupiahInput } from '@/components/form/rupiah-input';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
@ -37,6 +38,7 @@ import { Textarea } from '@/components/ui/textarea';
|
|||||||
import { OrderChannel } from '@/constants/order-channel';
|
import { OrderChannel } from '@/constants/order-channel';
|
||||||
import { apiFetch } from '@/lib/api';
|
import { apiFetch } from '@/lib/api';
|
||||||
import { getFirstCoverImage } from '@/lib/catalog-cover';
|
import { getFirstCoverImage } from '@/lib/catalog-cover';
|
||||||
|
import { useCan } from '@/composables/useCan';
|
||||||
import { formErrors } from '@/lib/form';
|
import { formErrors } from '@/lib/form';
|
||||||
import { formatRupiah, parseRupiah } from '@/lib/rupiah';
|
import { formatRupiah, parseRupiah } from '@/lib/rupiah';
|
||||||
import type { Auth } from '@/types/auth';
|
import type { Auth } from '@/types/auth';
|
||||||
@ -71,6 +73,8 @@ const props = defineProps<{
|
|||||||
|
|
||||||
const isCreateMode = computed(() => props.method === 'post');
|
const isCreateMode = computed(() => props.method === 'post');
|
||||||
|
|
||||||
|
const { can } = useCan();
|
||||||
|
|
||||||
const page = usePage();
|
const page = usePage();
|
||||||
const authUser = computed(() => (page.props.auth as Auth).user);
|
const authUser = computed(() => (page.props.auth as Auth).user);
|
||||||
const isMarketingUser = computed(() =>
|
const isMarketingUser = computed(() =>
|
||||||
@ -79,6 +83,12 @@ const isMarketingUser = computed(() =>
|
|||||||
|
|
||||||
const search = ref('');
|
const search = ref('');
|
||||||
const cart = ref<OrderCartItem[]>([]);
|
const cart = ref<OrderCartItem[]>([]);
|
||||||
|
const customerFormOpen = ref(false);
|
||||||
|
|
||||||
|
function onCustomerCreated(customer: { id: number; name: string }) {
|
||||||
|
props.customers.push({ value: customer.id, label: customer.name });
|
||||||
|
form.customer_id = String(customer.id);
|
||||||
|
}
|
||||||
|
|
||||||
// Auto-fill marketing_id with logged-in user's id if they are marketing role
|
// Auto-fill marketing_id with logged-in user's id if they are marketing role
|
||||||
const defaultMarketingId = computed(() =>
|
const defaultMarketingId = computed(() =>
|
||||||
@ -591,19 +601,25 @@ function submit() {
|
|||||||
|
|
||||||
<Field>
|
<Field>
|
||||||
<FieldLabel for="customer">Pelanggan</FieldLabel>
|
<FieldLabel for="customer">Pelanggan</FieldLabel>
|
||||||
<Select v-model="form.customer_id">
|
<div class="flex gap-2">
|
||||||
<SelectTrigger id="customer" class="w-full">
|
<Select v-model="form.customer_id" class="flex-1">
|
||||||
<SelectValue placeholder="Pilih pelanggan" />
|
<SelectTrigger id="customer" class="w-full">
|
||||||
</SelectTrigger>
|
<SelectValue placeholder="Pilih pelanggan" />
|
||||||
<SelectContent>
|
</SelectTrigger>
|
||||||
<SelectGroup>
|
<SelectContent>
|
||||||
<SelectItem v-for="customer in customers" :key="customer.value"
|
<SelectGroup>
|
||||||
:value="String(customer.value)">
|
<SelectItem v-for="customer in customers" :key="customer.value"
|
||||||
{{ customer.label }}
|
:value="String(customer.value)">
|
||||||
</SelectItem>
|
{{ customer.label }}
|
||||||
</SelectGroup>
|
</SelectItem>
|
||||||
</SelectContent>
|
</SelectGroup>
|
||||||
</Select>
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<Button v-if="can('customers.create')" type="button" variant="outline"
|
||||||
|
size="icon" class="shrink-0" @click="customerFormOpen = true">
|
||||||
|
<Plus class="size-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
<FieldError :errors="formErrors(form, 'customer_id')" />
|
<FieldError :errors="formErrors(form, 'customer_id')" />
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
@ -727,4 +743,6 @@ function submit() {
|
|||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<CustomerQuickCreateModal v-model:open="customerFormOpen" @created="onCustomerCreated" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -156,6 +156,10 @@
|
|||||||
->middleware('permission:'.Permission::CUSTOMERS_CREATE->value)
|
->middleware('permission:'.Permission::CUSTOMERS_CREATE->value)
|
||||||
->name('store');
|
->name('store');
|
||||||
|
|
||||||
|
Route::post('api', [CustomerController::class, 'storeApi'])
|
||||||
|
->middleware('permission:'.Permission::CUSTOMERS_CREATE->value)
|
||||||
|
->name('store.api');
|
||||||
|
|
||||||
Route::put('{customer}', [CustomerController::class, 'update'])
|
Route::put('{customer}', [CustomerController::class, 'update'])
|
||||||
->middleware('permission:'.Permission::CUSTOMERS_UPDATE->value)
|
->middleware('permission:'.Permission::CUSTOMERS_UPDATE->value)
|
||||||
->name('update');
|
->name('update');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user