[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: non-zero-inventory.vue
<template> <div> <!-- breadcrumbs Start --> <breadcrumbs :items="breadcrumbs" :current="breadcrumbsCurrent" /> <!-- breadcrumbs end --> <div class="row"> <div class="col-lg-12"> <div class="card custom-card w-100"> <div class="card-header setings-header"> <div class="col-xl-4 col-4"> <h3 class="card-title"> {{ $t("inventory.non_zero.page_title") }} </h3> </div> <div class="col-xl-8 col-8 float-right text-right"> <div class="btn-group c-w-100"> <a @click="refreshTable()" href="#" v-tooltip="'Refresh'" class="btn btn-success" > <i class="fas fa-sync"></i> </a> <a href="/non-zero-inventory/pdf" v-tooltip="$t('common.export_table')" class="btn btn-secondary" > <i class="fas fa-download"></i> </a> <a @click="print" v-tooltip="$t('common.print_table')" class="btn btn-info" > <i class="fas fa-print"></i> </a> <router-link v-if="$can('product-create')" :to="{ name: 'products.create' }" class="btn btn-primary" > {{ $t("common.create") }} <i class="fas fa-plus-circle d-none d-sm-inline-block" /> </router-link> </div> </div> </div> <!-- /.card-header --> <div class="card-body position-relative"> <div class="row"> <div class="col-6 col-xl-4 mb-2"> <search v-model="query" @reset-pagination="resetPagination()" @reload="reload" /> </div> </div> <table-loading v-show="loading" /> <div class="table-responsive table-custom mt-3" id="printMe"> <table class="table"> <thead> <tr> <th>{{ $t("common.s_no") }}</th> <th>{{ $t("common.image") }}</th> <th>{{ $t("common.code") }}</th> <th>{{ $t("common.name") }}</th> <th>{{ $t("common.item_model") }}</th> <th>{{ $t("products.list.common.stock") }}</th> <th>{{ $t("products.list.common.avg_purchase_price") }}</th> <th>{{ $t("products.list.common.selling_price") }}</th> <th>{{ $t("products.list.common.inventory_value") }}</th> <th>{{ $t("common.status") }}</th> <th class="no-print">{{ $t("common.action") }}</th> </tr> </thead> <tbody> <tr v-show="items.length" v-for="(data, i) in items" :key="i"> <td> <span v-if="pagination && pagination.current_page > 1"> {{ pagination.per_page * (pagination.current_page - 1) + (i + 1) }} </span> <span v-else>{{ i + 1 }}</span> </td> <td> <a v-if="data.image" href="#" id="show-modal" @click="previewModal(data.image)" > <img :src="data.image" class="rounded preview-sm" loading="lazy" /> </a> <div v-else class="bg-secondary rounded no-preview-sm"> <small>{{ $t("common.no_preview") }}</small> </div> </td> <td>{{ data.code | withPrefix(prefix) }}</td> <td> <router-link :to="{ name: 'products.show', params: { slug: data.slug }, }" > {{ data.name }} </router-link> </td> <td>{{ data.itemModel }}</td> <td> <span v-if="data.availableQty < data.alertQty" v-tooltip="$t('common.stock_alert_msg')" class="badge badge-danger p-2" > <i class="fas fa-exclamation"></i> </span> <span v-if="data.itemUnit"> {{ data.availableQty }} {{ data.itemUnit.code }} </span> </td> <td>{{ data.avgPurchasePrice | withCurrency }}</td> <td> <span v-if="data.discount > 0"> <del>{{ data.regularPrice | withCurrency }}</del >{{ data.sellingPrice | withCurrency }} ({{ data.discount }}%) </span> <span v-else >{{ data.regularPrice | withCurrency }} </span> </td> <td> {{ (data.avgPurchasePrice * data.availableQty) | withCurrency }} </td> <td> <span v-if="data.status === 1" class="badge bg-success">{{ $t("common.active") }}</span> <span v-else class="badge bg-danger">{{ $t("common.in_active") }}</span> </td> <td class="text-right no-print"> <div class="btn-group"> <router-link v-if="$can('inventory-history')" v-tooltip="$t('inventory.common.inventory_history')" :to="{ name: 'inventory.history', params: { slug: data.slug }, }" class="btn btn-primary btn-sm" > <i class="fas fa-history" /> </router-link> </div> </td> </tr> <tr v-show="!loading && !items.length"> <td colspan="11"> <EmptyTable /> </td> </tr> </tbody> </table> </div> </div> <div class="card-footer"> <div class="dtable-footer"> <div class="form-group row display-per-page"> <label>{{ $t("per_page") }} </label> <div> <select @change="updatePerPager" v-model="perPage" class="form-control form-control-sm ml-1" > <option value="10">10</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> </div> </div> <!-- pagination-start --> <pagination v-if="pagination && pagination.last_page > 1" :pagination="pagination" :offset="5" class="justify-flex-end" @paginate="paginate" /> <!-- pagination-end --> </div> </div> </div> </div> </div> <Modal v-if="showModal" @close="previewModal()"> <h5 slot="header">{{ $t("common.modal_header") }}</h5> <div class="w-100" slot="body"> <img :src="imagePath" class="rounded img-fluid" loading="lazy" /> </div> </Modal> </div> </template> <script> import { mapGetters } from "vuex"; export default { middleware: ["auth", "check-permissions"], metaInfo() { return { title: this.$t("inventory.non_zero.page_title") }; }, data: () => ({ breadcrumbsCurrent: "inventory.non_zero.breadcrumbs_current", breadcrumbs: [ { name: "inventory.non_zero.breadcrumbs_first", url: "home", }, { name: "inventory.non_zero.breadcrumbs_second", url: "products.index", }, { name: "inventory.non_zero.breadcrumbs_active", url: "", }, ], query: "", showModal: false, perPage: 10, prefix: "", }), // Map Getters computed: { ...mapGetters("operations", ["items", "loading", "pagination", "appInfo"]), }, watch: { // watch search data query: function (newQ, oldQ) { if (newQ === "") { this.getData(); } else { this.searchData(); } }, }, created() { this.getData(); this.prefix = this.appInfo.productPrefix; }, methods: { // update per page count updatePerPager() { this.pagination.current_page = 1; this.query === "" ? this.getData() : this.searchData(); }, // get data async getData() { this.$store.state.operations.loading = true; let currentPage = this.pagination ? this.pagination.current_page : 1; await this.$store.dispatch("operations/fetchData", { path: "/api/non-zero-inventory?page=", currentPage: currentPage + "&perPage=" + this.perPage, }); }, // Pagination async paginate() { this.query === "" ? this.getData() : this.searchData(); }, // Reset pagination async resetPagination() { this.pagination.current_page = 1; }, // search data async searchData() { this.$store.state.operations.loading = true; let currentPage = this.pagination ? this.pagination.current_page : 1; await this.$store.dispatch("operations/searchData", { path: "/api/non-zero-inventory/search", term: this.query, currentPage: currentPage + "&perPage=" + this.perPage, }); }, // Reload after search async reload() { this.query = ""; }, // display modal previewModal(image) { this.imagePath = image; if (this.showModal) { return (this.showModal = false); } return (this.showModal = true); }, // print table async print() { await this.$htmlToPaper("printMe"); }, refreshTable() { this.query = ""; this.query === "" ? this.getData() : this.searchData(); }, }, }; </script>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.72 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:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002