[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: PosOrderListComponent.vue
<template> <LoadingComponent :props="loading" /> <div class="col-12"> <div class="db-card"> <div class="db-card-header border-none"> <h3 class="db-card-title">{{ $t('menu.pos_orders') }}</h3> <div class="db-card-filter"> <TableLimitComponent :method="list" :search="props.search" :page="paginationPage" /> <FilterComponent @click.prevent="handleSlide('posorderlist-filter')" /> <div class="dropdown-group"> <ExportComponent /> <div class="dropdown-list db-card-filter-dropdown-list"> <PrintComponent :props="printObj" /> <ExcelComponent :method="xls" /> </div> </div> </div> </div> <div class="table-filter-div" id="posorderlist-filter"> <form class="p-4 sm:p-5 mb-5 w-full d-block" @submit.prevent="search"> <div class="row"> <div class="col-12 sm:col-6 md:col-4 xl:col-3"> <label for="order_id" class="db-field-title after:hidden">{{ $t('label.order_id') }}</label> <input id="order_id" v-model="props.search.order_serial_no" type="text" class="db-field-control"> </div> <div class="col-12 sm:col-6 md:col-4 xl:col-3"> <label for="searchStatus" class="db-field-title after:hidden"> {{ $t('label.status') }} </label> <vue-select class="db-field-control f-b-custom-select" id="searchStatus" v-model="props.search.status" :options="[ { id: enums.orderStatusEnum.CONFIRMED, name: $t('label.confirmed') }, { id: enums.orderStatusEnum.DELIVERED, name: $t('label.delivered') }, ]" label-by="name" value-by="id" :closeOnSelect="true" :searchable="true" :clearOnClose="true" placeholder="--" search-placeholder="--" /> </div> <div class="col-12 sm:col-6 md:col-4 xl:col-3"> <label for="user_id" class="db-field-title"> {{ $t("label.customer") }} </label> <vue-select class="db-field-control f-b-custom-select" id="user_id" v-model="props.search.user_id" :options="customers" label-by="name" value-by="id" :closeOnSelect="true" :searchable="true" :clearOnClose="true" placeholder="--" search-placeholder="--" /> </div> <div class="col-12 sm:col-6 md:col-4 xl:col-3"> <label for="searchStartDate" class="db-field-title after:hidden"> {{ $t('label.date') }} </label> <Datepicker hideInputIcon autoApply :enableTimePicker="false" utc="false" @update:modelValue="handleDate" v-model="modelValue" :range="true" > </Datepicker> </div> <div class="col-12"> <div class="flex flex-wrap gap-3 mt-4"> <button class="db-btn py-2 text-white bg-primary"> <i class="lab lab-line-search lab-font-size-16"></i> <span>{{ $t('button.search') }}</span> </button> <button class="db-btn py-2 text-white bg-gray-600" @click="clear"> <i class="lab lab-line-cross lab-font-size-22"></i> <span>{{ $t('button.clear') }}</span> </button> </div> </div> </div> </form> </div> <div class="db-table-responsive"> <table class="db-table stripe" id="print"> <thead class="db-table-head"> <tr class="db-table-head-tr"> <th class="db-table-head-th">{{ $t('label.order_id') }}</th> <th class="db-table-head-th">{{ $t('label.customer') }}</th> <th class="db-table-head-th">{{ $t('label.amount') }}</th> <th class="db-table-head-th">{{ $t('label.date') }}</th> <th class="db-table-head-th">{{ $t('label.status') }}</th> <th class="db-table-head-th hidden-print" v-if="permissionChecker('pos-orders')">{{ $t('label.action') }}</th> </tr> </thead> <tbody class="db-table-body" v-if="orders.length > 0"> <tr class="db-table-body-tr" v-for="order in orders" :key="order"> <td class="db-table-body-td"> {{ order.order_serial_no }} </td> <td class="db-table-body-td"> {{ textShortener(order.user.name, 20) }} </td> <td class="db-table-body-td">{{ order.total_amount_price }}</td> <td class="db-table-body-td">{{ order.order_datetime }}</td> <td class="db-table-body-td"> <span class="db-table-badge" :class="orderStatusClass(order.status)"> {{ enums.orderStatusEnumArray[order.status] }} </span> </td> <td class="db-table-body-td hidden-print" v-if="permissionChecker('pos-orders')"> <div class="flex justify-start items-center sm:items-start sm:justify-start gap-1.5"> <SmIconViewComponent :link="'admin.pos.orders.show'" :id="order.id" v-if="permissionChecker('pos-orders')" /> <SmIconDeleteComponent @click="destroy(order.id)" v-if="permissionChecker('pos-orders')" /> </div> </td> </tr> </tbody> <tbody class="db-table-body" v-else> <tr class="db-table-body-tr"> <td class="db-table-body-td text-center" colspan="6"> <div class="p-4"> <div class="max-w-[300px] mx-auto mt-2"> <img class="w-full h-full" :src="ENV.API_URL+'/images/default/not-found/not_found.png'" alt="Not Found"> </div> <span class="d-block mt-3 text-lg">{{ $t('message.no_data_found') }}</span> </div> </td> </tr> </tbody> </table> </div> <div class="flex items-center justify-between border-t border-gray-200 bg-white px-4 py-6" v-if="orders.length > 0"> <PaginationSMBox :pagination="pagination" :method="list" /> <div class="hidden sm:flex sm:flex-1 sm:items-center sm:justify-between"> <PaginationTextComponent :props="{ page: paginationPage }" /> <PaginationBox :pagination="pagination" :method="list" /> </div> </div> </div> </div> </template> <script> import LoadingComponent from "../components/LoadingComponent"; import alertService from "../../../services/alertService"; import PaginationTextComponent from "../components/pagination/PaginationTextComponent"; import PaginationBox from "../components/pagination/PaginationBox"; import PaginationSMBox from "../components/pagination/PaginationSMBox"; import appService from "../../../services/appService"; import orderStatusEnum from "../../../enums/modules/orderStatusEnum"; import orderTypeEnum from "../../../enums/modules/orderTypeEnum"; import TableLimitComponent from "../components/TableLimitComponent"; import SmIconDeleteComponent from "../components/buttons/SmIconDeleteComponent"; import SmIconViewComponent from "../components/buttons/SmIconViewComponent"; import FilterComponent from "../components/buttons/collapse/FilterComponent"; import ExportComponent from "../components/buttons/export/ExportComponent"; import PrintComponent from "../components/buttons/export/PrintComponent"; import ExcelComponent from "../components/buttons/export/ExcelComponent"; import Datepicker from "@vuepic/vue-datepicker"; import "@vuepic/vue-datepicker/dist/main.css"; import statusEnum from "../../../enums/modules/statusEnum"; import ENV from "../../../config/env"; export default { name: "PosOrderListComponent", components: { TableLimitComponent, PaginationSMBox, PaginationBox, PaginationTextComponent, LoadingComponent, SmIconDeleteComponent, SmIconViewComponent, FilterComponent, ExportComponent, PrintComponent, ExcelComponent, Datepicker }, data() { return { loading: { isActive: false }, enums: { orderStatusEnum: orderStatusEnum, orderTypeEnum: orderTypeEnum, orderStatusEnumArray: { [orderStatusEnum.CONFIRMED]: this.$t("label.confirmed"), [orderStatusEnum.DELIVERED]: this.$t("label.delivered"), }, orderTypeEnumArray: { [orderTypeEnum.POS]: this.$t("label.pos"), } }, printLoading: true, printObj: { id: "print", popTitle: this.$t("menu.pos_orders"), }, props: { search: { paginate: 1, page: 1, per_page: 10, order_column: 'id', order_by: "desc", order_serial_no: "", order_type: orderTypeEnum.POS, excepts: orderTypeEnum.DELIVERY + '|' + orderTypeEnum.PICK_UP, user_id: null, status: null, from_date: "", to_date: "", } }, modelValue: null, ENV: ENV, } }, mounted() { this.list(); this.$store.dispatch('user/lists', { order_column: 'id', order_type: 'asc', status: statusEnum.ACTIVE }); }, computed: { orders: function () { return this.$store.getters['posOrder/lists']; }, customers: function () { return this.$store.getters['user/lists']; }, pagination: function () { return this.$store.getters['posOrder/pagination']; }, paginationPage: function () { return this.$store.getters['posOrder/page']; } }, methods: { permissionChecker(e) { return appService.permissionChecker(e); }, orderStatusClass: function (status) { return appService.orderStatusClass(status); }, textShortener: function (text, number = 30) { return appService.textShortener(text, number); }, handleSlide: function (id) { return appService.handleSlide(id); }, search: function () { this.list(); }, handleDate: function (e) { if (e) { this.props.search.from_date = e[0]; this.props.search.to_date = e[1]; } else { this.props.search.from_date = null; this.props.search.to_date = null; } }, clear: function () { this.props.search.paginate = 1; this.props.search.page = 1; this.props.search.order_by = "desc"; this.props.search.order_serial_no = ""; this.props.search.status = null; this.props.search.excepts = orderTypeEnum.DELIVERY + '|' + orderTypeEnum.PICK_UP; this.props.search.from_date = ""; this.props.search.to_date = ""; this.props.search.user_id = null; this.modelValue = null; this.list(); }, list: function (page = 1) { this.loading.isActive = true; this.props.search.page = page; this.$store.dispatch('posOrder/lists', this.props.search).then(res => { this.loading.isActive = false; }).catch((err) => { this.loading.isActive = false; }); }, destroy: function (id) { appService.destroyConfirmation().then((res) => { try { this.loading.isActive = true; this.$store.dispatch('posOrder/destroy', { id: id, search: this.props.search }).then((res) => { this.loading.isActive = false; alertService.successFlip(null, this.$t('menu.pos_orders')); }).catch((err) => { this.loading.isActive = false; alertService.error(err.response.data.message); }) } catch (err) { this.loading.isActive = false; alertService.error(err.response.data.message); } }).catch((err) => { this.loading.isActive = false; }) }, xls: function () { this.loading.isActive = true; this.$store.dispatch("posOrder/export", this.props.search).then((res) => { this.loading.isActive = false; const blob = new Blob([res.data], { type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", }); const link = document.createElement("a"); link.href = URL.createObjectURL(blob); link.download = this.$t("menu.pos_orders"); link.click(); URL.revokeObjectURL(link.href); }).catch((err) => { this.loading.isActive = false; alertService.error(err.response.data.message); }); }, } } </script> <style scoped> @media print { .hidden-print { display: none !important; } } </style>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285