| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <script setup>
- import { optionStatus } from './config'
- import { cartTable } from './config'
- import Details from './Components/Details.vue'
- import Cart from './Components/Cart.vue'
- import { useProductCart } from './Composables/useProductCart'
- import { onShowDialog } from './Composables/onShowDialog'
- import { useForm } from '@/composables/useForm'
- import AppInputText from '@/components/AppInputText.vue'
- import AppInputNumber from '@/components/AppInputNumber.vue'
- import AppDropdown from '@/components/AppDropdown.vue'
- import AppAutoComplete from '@/components/AppAutoComplete.vue'
- import DashboardLayout from '@/layouts/Dashboard/DashboardLayout.vue'
- import { computed } from '@vue/reactivity'
-
- const props = defineProps({
- number: String,
- ppn: Number,
- suppliers: {
- type: Array,
- default: [],
- },
- products: {
- type: Array,
- default: [],
- },
- })
-
- const form = useForm({
- status: 'pending',
- price: null,
- qty: null,
- supplier: null,
- product: null,
- ppn: props.ppn,
- checkedPpn: false,
- })
-
- const onSubmit = () => {
- form
- .transform((data) => ({
- number: props.number,
- status: data.status,
- ppn: data.checkedPpn,
- supplier_id: data.supplier.id,
- products: productCart,
- }))
- .post(route('purchases.store'), {
- onSuccess: () => {
- form.reset()
-
- onClearProductCart()
- },
- })
- }
-
- const dropdownStatus = computed(() => {
- return optionStatus.filter((val) => val.value != 'success')
- })
-
- const {
- productCart,
- onClearProductCart,
- onAddProduct,
- onDeleteProduct,
- onEditProduct,
- totalProductPrice,
- } = useProductCart(form)
-
- const { onShowCreateProduct, onShowCreateSupplier } = onShowDialog()
- </script>
-
- <template>
- <DashboardLayout title="Tambah Pembelian">
- <DynamicDialog />
-
- <div class="grid">
- <div class="col-12 md:col-8">
- <div class="grid">
- <div class="col-12">
- <Card>
- <template #title> Transaksi </template>
- <template #content>
- <div class="grid">
- <div class="col-12 md:col-6">
- <AppDropdown
- label="Status"
- placeholder="status"
- :options="dropdownStatus"
- :error="form.errors.status"
- v-model="form.status"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppAutoComplete
- empty
- label="Supplier"
- placeholder="supplier"
- field="name"
- refresh-data="suppliers"
- v-model="form.supplier"
- :error="form.errors.suppliers_id"
- :suggestions="suppliers"
- >
- <template #item="slotProps">
- <template v-if="slotProps.item">
- <div class="flex flex-column">
- <span>{{ slotProps.item.name }}</span>
- <span>{{ slotProps.item.phone }}</span>
- </div>
- </template>
- </template>
-
- <template #empty>
- <span
- class="cursor-pointer"
- style="color: var(--primary-color)"
- @click="onShowCreateSupplier"
- >
- Tambah Supplier
- </span>
- </template>
- </AppAutoComplete>
- </div>
- </div>
- </template>
- </Card>
- </div>
-
- <div class="col-12">
- <Card>
- <template #title>Produk</template>
- <template #content>
- <div class="grid">
- <div class="col-12 md:col-6">
- <AppAutoComplete
- :disabled="!form.supplier?.id"
- empty
- label="Produk"
- placeholder="produk"
- field="name"
- refresh-data="products"
- v-model="form.product"
- :error="form.errors.products"
- :suggestions="products"
- >
- <template #item="slotProps">
- <template v-if="slotProps.item">
- <div class="flex flex-column">
- <span>{{ slotProps.item.number }}</span>
- <span>{{ slotProps.item.name }}</span>
- </div>
- </template>
- </template>
-
- <template #empty>
- <span
- class="cursor-pointer"
- style="color: var(--primary-color)"
- @click="onShowCreateProduct"
- >
- Tambah Produk
- </span>
- </template>
- </AppAutoComplete>
- </div>
-
- <div v-if="form.product?.number" class="col-12 md:col-6">
- <AppInputText
- disabled
- label="Satuan"
- placeholder="satuan"
- v-model="form.product.unit"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputNumber
- :disabled="!form.supplier?.id"
- label="Harga"
- placeholder="harga"
- v-model="form.price"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText
- :disabled="!form.supplier?.id"
- label="Kuantitas"
- placeholder="kuantitas"
- type="number"
- v-model="form.qty"
- />
- </div>
- </div>
- </template>
- <template #footer>
- <div class="flex flex-column md:flex-row justify-content-end">
- <Button
- label="Tambah Produk"
- icon="pi pi-check"
- class="p-button-outlined"
- :disabled="
- !form.price || !form.qty || !form.product?.number
- "
- @click="onAddProduct"
- />
- </div>
- </template>
- </Card>
- </div>
-
- <div class="col-12">
- <Cart
- title="Keranjang Produk"
- :product-cart="productCart"
- :header-table="cartTable"
- v-model:checked-ppn="form.checkedPpn"
- @delete="onDeleteProduct"
- @edit="onEditProduct"
- />
- </div>
- </div>
- </div>
-
- <div class="col-12 md:col-4">
- <Details
- title="Detail Pembelian"
- message="Pastikan semua produk sudah benar"
- :number="number"
- :status="form.status"
- :person="form.supplier"
- :product="form.product"
- :price="totalProductPrice()"
- :disabled="
- form.processing ||
- !form.status ||
- !form.supplier?.id ||
- productCart.length === 0
- "
- @submit="onSubmit"
- />
- </div>
- </div>
- </DashboardLayout>
- </template>
|