⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
resources
/
js
/
pages
/
payroll
/
Edit File: index.vue
<template> <div class="mb-50"> <!-- breadcrumbs Start --> <breadcrumbs :items="breadcrumbs" :current="breadcrumbsCurrent" /> <!-- breadcrumbs end --> <div class="row"> <div class="col-lg-12"> <div> <div class="row"> <div class="col-12 col-md-6 col-xl-4 mb-2"> <search v-model="query" @reset-pagination="resetPagination()" @reload="reload" /> </div> <div class="col-12 col-md-6 col-xl-4 mb-2"> <date-range-picker ref="picker" opens="center" :locale-data="locale" :minDate="minDate" :maxDate="maxDate" :singleDatePicker="false" :showWeekNumbers="false" :showDropdowns="true" :autoApply="true" v-model="dateRange" @update="updateValues" :linkedCalendars="true" class="c-w-100"> <template v-slot:input="picker" style="min-width: 350px"> {{ picker.startDate | startDate }} - {{ picker.endDate | endDate }} </template> </date-range-picker> </div> <div class="col-12 col-md-12 col-xl-4 text-right mb-2"> <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="payroll/pdf" v-tooltip="$t('common.export_table')" class="btn btn-secondary"> <i class="fas fa-file-export"></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('payroll-create')" :to="{ name: 'payroll.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> </div> <!-- /.card-header --> <div class="card-body p-0 position-relative"> <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.emp_name") }}</th> <th>{{ $t("common.emp_id") }}</th> <th>{{ $t("common.designation") }}</th> <th>{{ $t("payroll.common.salary_month") }}</th> <th>{{ $t("common.total_paid") }}</th> <th>{{ $t("common.account") }}</th> <th>{{ $t("payroll.common.salary_date") }}</th> <th>{{ $t("common.status") }}</th> <th v-if=" $can('payroll-edit') || $can('payroll-view') || $can('payroll-delete') " class="text-right 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> <router-link v-if="$can('employee-view') && data.employee" :to="{ name: 'employees.show', params: { slug: data.employee.slug }, }"> {{ data.employee.name }} </router-link> <span v-else>{{ data.employee.name }}</span> </td> <td> <span v-if="data.employee">{{ data.employee.empID | withPrefix(employeePrefix) }} </span> </td> <td> <span v-if="data.employee">{{ data.employee.designation }} </span> </td> <td>{{ data.salaryMonth }}</td> <td> <span v-if="data.transaction">{{ data.transaction.amount | withCurrency }}</span> </td> <td> <span v-if=" data.transaction && data.transaction.cashbook_account "> {{ data.transaction.cashbook_account.account_number }} </span> </td> <td> <span v-if="data.salaryDate">{{ data.salaryDate | moment("Do MMM, YYYY") }}</span> </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 v-if=" $can('payroll-edit') || $can('payroll-view') || $can('payroll-delete') " class="text-right"> <div class="btn-group no-print"> <router-link v-if="$can('payroll-view')" v-tooltip="$t('common.view')" :to="{ name: 'payroll.show', params: { slug: data.slug }, }" class="btn btn-primary btn-sm"> <i class="fas fa-eye" /> </router-link> <router-link v-if="$can('payroll-edit')" v-tooltip="$t('common.edit')" :to="{ name: 'payroll.edit', params: { slug: data.slug }, }" class="btn btn-info btn-sm"> <i class="fas fa-edit" /> </router-link> <a v-if="$can('payroll-delete')" v-tooltip="$t('common.delete')" href="#" class="btn btn-danger btn-sm" @click="deleteData(data.slug)"> <i class="fas fa-trash" /> </a> </div> </td> </tr> <tr v-show="!loading && !items.length"> <td colspan="11"> <EmptyTable /> </td> </tr> </tbody> </table> </div> </div> <!-- /.card-body --> <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> </template> <script> import i18n from "~/plugins/i18n"; import DateRangePicker from "vue2-daterange-picker"; import moment from "moment"; import { mapGetters } from "vuex"; export default { middleware: ["auth", "check-permissions"], metaInfo() { return { title: this.$t("payroll.index.page_title") }; }, components: { DateRangePicker, }, data: () => ({ breadcrumbsCurrent: "payroll.index.breadcrumbs_current", breadcrumbs: [ { name: "payroll.index.breadcrumbs_first", url: "home", }, { name: "payroll.index.breadcrumbs_active", url: "", }, ], query: "", employeePrefix: "", perPage: 10, minDate: moment(new Date("01-01-2021")).format("YYYY-MM-DD"), maxDate: moment().add(1, "days").format("YYYY-MM-DD"), dateRange: { startDate: "", endDate: "", }, locale: { direction: "ltr", format: "YYYY-MM-DD", separator: " - ", applyLabel: "Apply", cancelLabel: "Cancel", weekLabel: "W", customRangeLabel: "Custom Range", daysOfWeek: moment.weekdaysMin(), monthNames: moment.monthsShort(), firstDay: 1, }, }), filters: { startDate(val) { return val ? moment(val).format("YYYY-MM-DD") : i18n.t("common.from"); }, endDate(val) { return val ? moment(val).format("YYYY-MM-DD") : i18n.t("common.to"); }, }, // Map Getters computed: { ...mapGetters("operations", ["items", "loading", "pagination", "appInfo"]), }, watch: { // watch search data query: function (newQ, oldQ) { if (newQ === "") { if (this.dateRange.startDate && this.dateRange.endDate) { this.searchData(); } else { this.getData(); } } else { this.searchData(); } }, }, created() { this.getData(); this.employeePrefix = this.appInfo.employeePrefix; }, methods: { // filter data for selected date range async updateValues() { this.dateRange.startDate = moment(this.dateRange.startDate).format( "YYYY-MM-DD" ); this.dateRange.endDate = moment(this.dateRange.endDate).format( "YYYY-MM-DD" ); this.searchData(); }, // refresh table refreshTable() { this.query = ""; this.dateRange.startDate = null; this.dateRange.endDate = null; this.query === "" ? this.getData() : this.searchData(); setTimeout( function () { this.dateRange.startDate = ""; this.dateRange.endDate = ""; }.bind(this), 500 ); }, // 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/payroll?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/payroll/search", term: this.query, currentPage: currentPage + "&perPage=" + this.perPage, startDate: this.dateRange.startDate, endDate: this.dateRange.endDate, }); }, // Reload after search async reload() { this.query = ""; await this.searchData(); }, // print table async print() { await this.$htmlToPaper("printMe"); }, // delete data async deleteData(slug) { Swal.fire({ title: this.$t("common.delete_title"), text: this.$t("payroll.index.delete_warning"), type: "warning", showCancelButton: true, confirmButtonText: this.$t("common.delete_confirm_text"), }).then((result) => { // Send request to the server if (result.value) { this.$store .dispatch("operations/deleteData", { path: "/api/payroll/", slug: slug, }) .then((response) => { if (response === true) { Swal.fire( this.$t("common.deleted"), this.$t("common.delete_success"), "success" ); } else { Swal.fire( this.$t("common.failed"), this.$t("common.delete_failed"), "warning" ); } }); } }); }, }, }; </script>
Simpan