mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			474 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			474 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <base-page>
 | 
						|
    <sw-page-header :title="$t('items.title')">
 | 
						|
      <sw-breadcrumb slot="breadcrumbs">
 | 
						|
        <sw-breadcrumb-item :title="$t('general.home')" to="dashboard" />
 | 
						|
        <sw-breadcrumb-item :title="$tc('items.item', 2)" to="#" active />
 | 
						|
      </sw-breadcrumb>
 | 
						|
 | 
						|
      <template slot="actions">
 | 
						|
        <sw-button
 | 
						|
          v-show="totalItems"
 | 
						|
          variant="primary-outline"
 | 
						|
          size="lg"
 | 
						|
          @click="toggleFilter"
 | 
						|
        >
 | 
						|
          {{ $t('general.filter') }}
 | 
						|
          <component :is="filterIcon" class="w-4 h-4 ml-2 -mr-1" />
 | 
						|
        </sw-button>
 | 
						|
 | 
						|
        <sw-button
 | 
						|
          tag-name="router-link"
 | 
						|
          to="items/create"
 | 
						|
          variant="primary"
 | 
						|
          size="lg"
 | 
						|
          class="ml-4"
 | 
						|
        >
 | 
						|
          <plus-icon class="w-6 h-6 mr-1 -ml-2" />
 | 
						|
          {{ $t('items.add_item') }}
 | 
						|
        </sw-button>
 | 
						|
      </template>
 | 
						|
    </sw-page-header>
 | 
						|
 | 
						|
    <slide-y-up-transition>
 | 
						|
      <sw-filter-wrapper v-show="showFilters">
 | 
						|
        <sw-input-group :label="$tc('items.name')" class="flex-1 mt-2 ml-0">
 | 
						|
          <sw-input
 | 
						|
            v-model="filters.name"
 | 
						|
            type="text"
 | 
						|
            name="name"
 | 
						|
            class="mt-2"
 | 
						|
            autocomplete="off"
 | 
						|
          />
 | 
						|
        </sw-input-group>
 | 
						|
 | 
						|
        <sw-input-group
 | 
						|
          :label="$tc('items.unit')"
 | 
						|
          class="flex-1 mt-2 ml-0 lg:ml-6"
 | 
						|
        >
 | 
						|
          <sw-select
 | 
						|
            v-model="filters.unit"
 | 
						|
            :options="itemUnits"
 | 
						|
            :searchable="true"
 | 
						|
            :show-labels="false"
 | 
						|
            :placeholder="$t('items.select_a_unit')"
 | 
						|
            class="mt-2"
 | 
						|
            label="name"
 | 
						|
            autocomplete="off"
 | 
						|
          />
 | 
						|
        </sw-input-group>
 | 
						|
 | 
						|
        <sw-input-group
 | 
						|
          :label="$tc('items.price')"
 | 
						|
          class="flex-1 mt-2 ml-0 lg:ml-6"
 | 
						|
        >
 | 
						|
          <sw-input
 | 
						|
            v-model="filters.price"
 | 
						|
            type="text"
 | 
						|
            name="name"
 | 
						|
            class="mt-2"
 | 
						|
            autocomplete="off"
 | 
						|
          />
 | 
						|
        </sw-input-group>
 | 
						|
 | 
						|
        <label
 | 
						|
          class="absolute text-sm leading-snug text-gray-900 cursor-pointer"
 | 
						|
          style="top: 10px; right: 15px"
 | 
						|
          @click="clearFilter"
 | 
						|
        >
 | 
						|
          {{ $t('general.clear_all') }}</label
 | 
						|
        >
 | 
						|
      </sw-filter-wrapper>
 | 
						|
    </slide-y-up-transition>
 | 
						|
 | 
						|
    <sw-empty-table-placeholder
 | 
						|
      v-show="showEmptyScreen"
 | 
						|
      :title="$t('items.no_items')"
 | 
						|
      :description="$t('items.list_of_items')"
 | 
						|
    >
 | 
						|
      <satellite-icon class="mt-5 mb-4" />
 | 
						|
 | 
						|
      <sw-button
 | 
						|
        slot="actions"
 | 
						|
        tag-name="router-link"
 | 
						|
        to="/admin/items/create"
 | 
						|
        size="lg"
 | 
						|
        variant="primary-outline"
 | 
						|
      >
 | 
						|
        <plus-icon class="w-6 h-6 mr-1 -ml-2" />
 | 
						|
        {{ $t('items.add_new_item') }}
 | 
						|
      </sw-button>
 | 
						|
    </sw-empty-table-placeholder>
 | 
						|
 | 
						|
    <div v-show="!showEmptyScreen" class="relative table-container">
 | 
						|
      <div
 | 
						|
        class="relative flex items-center justify-between h-10 mt-5 list-none border-b-2 border-gray-200 border-solid"
 | 
						|
      >
 | 
						|
        <p class="text-sm">
 | 
						|
          {{ $t('general.showing') }}: <b>{{ items.length }}</b>
 | 
						|
          {{ $t('general.of') }} <b>{{ totalItems }}</b>
 | 
						|
        </p>
 | 
						|
 | 
						|
        <sw-transition>
 | 
						|
          <sw-dropdown v-if="selectedItems.length">
 | 
						|
            <span
 | 
						|
              slot="activator"
 | 
						|
              class="flex block text-sm font-medium cursor-pointer select-none text-primary-400"
 | 
						|
            >
 | 
						|
              {{ $t('general.actions') }}
 | 
						|
              <chevron-down-icon class="h-5" />
 | 
						|
            </span>
 | 
						|
 | 
						|
            <sw-dropdown-item @click="removeMultipleItems">
 | 
						|
              <trash-icon class="h-5 mr-3 text-gray-600" />
 | 
						|
              {{ $t('general.delete') }}
 | 
						|
            </sw-dropdown-item>
 | 
						|
          </sw-dropdown>
 | 
						|
        </sw-transition>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div class="absolute z-10 items-center pl-4 mt-2 select-none md:mt-12">
 | 
						|
        <sw-checkbox
 | 
						|
          v-model="selectAllFieldStatus"
 | 
						|
          variant="primary"
 | 
						|
          size="sm"
 | 
						|
          class="hidden md:inline"
 | 
						|
          @change="selectAllItems"
 | 
						|
        />
 | 
						|
 | 
						|
        <sw-checkbox
 | 
						|
          v-model="selectAllFieldStatus"
 | 
						|
          :label="$t('general.select_all')"
 | 
						|
          variant="primary"
 | 
						|
          size="sm"
 | 
						|
          class="md:hidden"
 | 
						|
          @change="selectAllItems"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
 | 
						|
      <sw-table-component
 | 
						|
        ref="table"
 | 
						|
        :data="fetchData"
 | 
						|
        :show-filter="false"
 | 
						|
        table-class="table"
 | 
						|
      >
 | 
						|
        <sw-table-column
 | 
						|
          :sortable="false"
 | 
						|
          :filterable="false"
 | 
						|
          cell-class="no-click"
 | 
						|
        >
 | 
						|
          <div slot-scope="row" class="custom-control custom-checkbox">
 | 
						|
            <sw-checkbox
 | 
						|
              :id="row.id"
 | 
						|
              v-model="selectField"
 | 
						|
              :value="row.id"
 | 
						|
              variant="primary"
 | 
						|
              size="sm"
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        </sw-table-column>
 | 
						|
 | 
						|
        <sw-table-column :sortable="true" :label="$t('items.name')" show="name">
 | 
						|
          <template slot-scope="row">
 | 
						|
            <span>{{ $t('items.name') }}</span>
 | 
						|
            <router-link
 | 
						|
              :to="{ path: `items/${row.id}/edit` }"
 | 
						|
              class="font-medium text-primary-500"
 | 
						|
            >
 | 
						|
              {{ row.name }}
 | 
						|
            </router-link>
 | 
						|
          </template>
 | 
						|
        </sw-table-column>
 | 
						|
 | 
						|
        <sw-table-column
 | 
						|
          :sortable="true"
 | 
						|
          :label="$t('items.unit')"
 | 
						|
          show="unit_name"
 | 
						|
        >
 | 
						|
          <template slot-scope="row">
 | 
						|
            <span>{{ $t('items.unit') }}</span>
 | 
						|
 | 
						|
            <span>
 | 
						|
              {{ row.unit_name ? row.unit_name : $t('items.not_selected') }}
 | 
						|
            </span>
 | 
						|
          </template>
 | 
						|
        </sw-table-column>
 | 
						|
 | 
						|
        <sw-table-column
 | 
						|
          :sortable="true"
 | 
						|
          :label="$t('items.price')"
 | 
						|
          show="price"
 | 
						|
        >
 | 
						|
          <template slot-scope="row">
 | 
						|
            <span> {{ $t('items.price') }} </span>
 | 
						|
 | 
						|
            <div v-html="$utils.formatMoney(row.price, defaultCurrency)" />
 | 
						|
          </template>
 | 
						|
        </sw-table-column>
 | 
						|
 | 
						|
        <sw-table-column
 | 
						|
          :sortable="true"
 | 
						|
          :label="$t('items.added_on')"
 | 
						|
          sort-as="created_at"
 | 
						|
          show="formattedCreatedAt"
 | 
						|
        />
 | 
						|
 | 
						|
        <sw-table-column
 | 
						|
          :sortable="true"
 | 
						|
          :filterable="false"
 | 
						|
          cell-class="action-dropdown"
 | 
						|
        >
 | 
						|
          <template slot-scope="row">
 | 
						|
            <span> {{ $t('items.action') }} </span>
 | 
						|
 | 
						|
            <sw-dropdown>
 | 
						|
              <dot-icon slot="activator" />
 | 
						|
 | 
						|
              <sw-dropdown-item
 | 
						|
                :to="`items/${row.id}/edit`"
 | 
						|
                tag-name="router-link"
 | 
						|
              >
 | 
						|
                <pencil-icon class="h-5 mr-3 text-gray-600" />
 | 
						|
                {{ $t('general.edit') }}
 | 
						|
              </sw-dropdown-item>
 | 
						|
 | 
						|
              <sw-dropdown-item @click="removeItems(row.id)">
 | 
						|
                <trash-icon class="h-5 mr-3 text-gray-600" />
 | 
						|
                {{ $t('general.delete') }}
 | 
						|
              </sw-dropdown-item>
 | 
						|
            </sw-dropdown>
 | 
						|
          </template>
 | 
						|
        </sw-table-column>
 | 
						|
      </sw-table-component>
 | 
						|
    </div>
 | 
						|
  </base-page>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapActions, mapGetters } from 'vuex'
 | 
						|
import {
 | 
						|
  FilterIcon,
 | 
						|
  XIcon,
 | 
						|
  ChevronDownIcon,
 | 
						|
  PencilIcon,
 | 
						|
  TrashIcon,
 | 
						|
  PlusIcon,
 | 
						|
} from '@vue-hero-icons/solid'
 | 
						|
import SatelliteIcon from '../../components/icon/SatelliteIcon'
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    SatelliteIcon,
 | 
						|
    FilterIcon,
 | 
						|
    XIcon,
 | 
						|
    PlusIcon,
 | 
						|
    ChevronDownIcon,
 | 
						|
    PencilIcon,
 | 
						|
    TrashIcon,
 | 
						|
  },
 | 
						|
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      id: null,
 | 
						|
      showFilters: false,
 | 
						|
      sortedBy: 'created_at',
 | 
						|
      isRequestOngoing: true,
 | 
						|
 | 
						|
      filters: {
 | 
						|
        name: '',
 | 
						|
        unit: '',
 | 
						|
        price: '',
 | 
						|
      },
 | 
						|
    }
 | 
						|
  },
 | 
						|
 | 
						|
  computed: {
 | 
						|
    ...mapGetters('item', [
 | 
						|
      'items',
 | 
						|
      'selectedItems',
 | 
						|
      'totalItems',
 | 
						|
      'selectAllField',
 | 
						|
      'itemUnits',
 | 
						|
    ]),
 | 
						|
 | 
						|
    ...mapGetters('company', ['defaultCurrency']),
 | 
						|
 | 
						|
    showEmptyScreen() {
 | 
						|
      return !this.totalItems && !this.isRequestOngoing
 | 
						|
    },
 | 
						|
 | 
						|
    filterIcon() {
 | 
						|
      return this.showFilters ? 'x-icon' : 'filter-icon'
 | 
						|
    },
 | 
						|
 | 
						|
    selectField: {
 | 
						|
      get: function () {
 | 
						|
        return this.selectedItems
 | 
						|
      },
 | 
						|
      set: function (val) {
 | 
						|
        this.selectItem(val)
 | 
						|
      },
 | 
						|
    },
 | 
						|
 | 
						|
    selectAllFieldStatus: {
 | 
						|
      get: function () {
 | 
						|
        return this.selectAllField
 | 
						|
      },
 | 
						|
      set: function (val) {
 | 
						|
        this.setSelectAllState(val)
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  watch: {
 | 
						|
    filters: {
 | 
						|
      handler: 'setFilters',
 | 
						|
      deep: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  mounted() {
 | 
						|
    this.fetchItemUnits({ limit: 'all' })
 | 
						|
  },
 | 
						|
 | 
						|
  destroyed() {
 | 
						|
    if (this.selectAllField) {
 | 
						|
      this.selectAllItems()
 | 
						|
    }
 | 
						|
  },
 | 
						|
 | 
						|
  methods: {
 | 
						|
    ...mapActions('item', [
 | 
						|
      'fetchItems',
 | 
						|
      'selectAllItems',
 | 
						|
      'selectItem',
 | 
						|
      'deleteItem',
 | 
						|
      'deleteMultipleItems',
 | 
						|
      'setSelectAllState',
 | 
						|
      'fetchItemUnits',
 | 
						|
    ]),
 | 
						|
 | 
						|
    ...mapActions('notification', ['showNotification']),
 | 
						|
 | 
						|
    refreshTable() {
 | 
						|
      this.$refs.table.refresh()
 | 
						|
    },
 | 
						|
 | 
						|
    async fetchData({ page, filter, sort }) {
 | 
						|
      let data = {
 | 
						|
        search: this.filters.name !== null ? this.filters.name : '',
 | 
						|
        unit_id: this.filters.unit !== null ? this.filters.unit.id : '',
 | 
						|
        price: Math.round(this.filters.price * 100),
 | 
						|
        orderByField: sort.fieldName || 'created_at',
 | 
						|
        orderBy: sort.order || 'desc',
 | 
						|
        page,
 | 
						|
      }
 | 
						|
 | 
						|
      this.isRequestOngoing = true
 | 
						|
      let response = await this.fetchItems(data)
 | 
						|
      this.isRequestOngoing = false
 | 
						|
 | 
						|
      return {
 | 
						|
        data: response.data.items.data,
 | 
						|
        pagination: {
 | 
						|
          totalPages: response.data.items.last_page,
 | 
						|
          currentPage: page,
 | 
						|
        },
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    setFilters() {
 | 
						|
      this.refreshTable()
 | 
						|
    },
 | 
						|
 | 
						|
    clearFilter() {
 | 
						|
      this.filters = {
 | 
						|
        name: '',
 | 
						|
        unit: '',
 | 
						|
        price: '',
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    toggleFilter() {
 | 
						|
      if (this.showFilters) {
 | 
						|
        this.clearFilter()
 | 
						|
      }
 | 
						|
 | 
						|
      this.showFilters = !this.showFilters
 | 
						|
    },
 | 
						|
 | 
						|
    async removeItems(id) {
 | 
						|
      this.id = id
 | 
						|
      this.$swal({
 | 
						|
        title: this.$t('general.are_you_sure'),
 | 
						|
        text: this.$tc('items.confirm_delete'),
 | 
						|
        icon: 'error',
 | 
						|
        iconHtml: `<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 text-red-600"fill="none" viewBox="0 0 24 24" stroke="currentColor">
 | 
						|
                      <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
 | 
						|
                    </svg>`,
 | 
						|
        showCancelButton: true,
 | 
						|
        showConfirmButton: true,
 | 
						|
      }).then(async (result) => {
 | 
						|
        if (result.value) {
 | 
						|
          let res = await this.deleteItem({ ids: [id] })
 | 
						|
 | 
						|
          if (res.data.success) {
 | 
						|
            this.showNotification({
 | 
						|
              type: 'success',
 | 
						|
              message: this.$tc('items.deleted_message'),
 | 
						|
            })
 | 
						|
            this.$refs.table.refresh()
 | 
						|
            return true
 | 
						|
          }
 | 
						|
 | 
						|
          if (res.data.error === 'item_attached') {
 | 
						|
            this.showNotification({
 | 
						|
              type: 'error',
 | 
						|
              message:
 | 
						|
                (this.$tc('items.item_attached_message'),
 | 
						|
                this.$t('general.action_failed')),
 | 
						|
            })
 | 
						|
            return true
 | 
						|
          }
 | 
						|
          this.showNotification({
 | 
						|
            type: 'error',
 | 
						|
            message: res.data.message,
 | 
						|
          })
 | 
						|
          return true
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
 | 
						|
    async removeMultipleItems() {
 | 
						|
      this.$swal({
 | 
						|
        title: this.$t('general.are_you_sure'),
 | 
						|
        text: this.$tc('items.confirm_delete', 2),
 | 
						|
        icon: 'error',
 | 
						|
        iconHtml: `<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 text-red-600"fill="none" viewBox="0 0 24 24" stroke="currentColor">
 | 
						|
                      <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
 | 
						|
                    </svg>`,
 | 
						|
        showCancelButton: true,
 | 
						|
        showConfirmButton: true,
 | 
						|
      }).then(async (result) => {
 | 
						|
        if (result.value) {
 | 
						|
          let res = await this.deleteMultipleItems()
 | 
						|
 | 
						|
          if (res.data.success || res.data.items) {
 | 
						|
            this.showNotification({
 | 
						|
              type: 'success',
 | 
						|
              message: this.$tc('items.deleted_message', 2),
 | 
						|
            })
 | 
						|
            this.$refs.table.refresh()
 | 
						|
          } else if (res.data.error) {
 | 
						|
            this.showNotification({
 | 
						|
              type: 'error',
 | 
						|
              message: res.data.message,
 | 
						|
            })
 | 
						|
          }
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
  },
 | 
						|
}
 | 
						|
</script>
 |