mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 14:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			145 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <BasePage class="xl:pl-96">
 | 
						|
    <BasePageHeader :title="pageTitle">
 | 
						|
      <template #actions>
 | 
						|
        <router-link
 | 
						|
          v-if="userStore.hasAbilities(abilities.EDIT_CUSTOMER)"
 | 
						|
          :to="`/admin/customers/${route.params.id}/edit`"
 | 
						|
        >
 | 
						|
          <BaseButton
 | 
						|
            class="mr-3"
 | 
						|
            variant="primary-outline"
 | 
						|
            :content-loading="isLoading"
 | 
						|
          >
 | 
						|
            {{ $t('general.edit') }}
 | 
						|
          </BaseButton>
 | 
						|
        </router-link>
 | 
						|
 | 
						|
        <BaseDropdown
 | 
						|
          v-if="canCreateTransaction()"
 | 
						|
          position="bottom-end"
 | 
						|
          :content-loading="isLoading"
 | 
						|
        >
 | 
						|
          <template #activator>
 | 
						|
            <BaseButton
 | 
						|
              class="mr-3"
 | 
						|
              variant="primary"
 | 
						|
              :content-loading="isLoading"
 | 
						|
            >
 | 
						|
              {{ $t('customers.new_transaction') }}
 | 
						|
            </BaseButton>
 | 
						|
          </template>
 | 
						|
 | 
						|
          <router-link
 | 
						|
            v-if="userStore.hasAbilities(abilities.CREATE_ESTIMATE)"
 | 
						|
            :to="`/admin/estimates/create?customer=${$route.params.id}`"
 | 
						|
          >
 | 
						|
            <BaseDropdownItem class="">
 | 
						|
              <BaseIcon name="DocumentIcon" class="mr-3 text-gray-600" />
 | 
						|
              {{ $t('estimates.new_estimate') }}
 | 
						|
            </BaseDropdownItem>
 | 
						|
          </router-link>
 | 
						|
 | 
						|
          <router-link
 | 
						|
            v-if="userStore.hasAbilities(abilities.CREATE_INVOICE)"
 | 
						|
            :to="`/admin/invoices/create?customer=${$route.params.id}`"
 | 
						|
          >
 | 
						|
            <BaseDropdownItem>
 | 
						|
              <BaseIcon name="DocumentTextIcon" class="mr-3 text-gray-600" />
 | 
						|
              {{ $t('invoices.new_invoice') }}
 | 
						|
            </BaseDropdownItem>
 | 
						|
          </router-link>
 | 
						|
 | 
						|
          <router-link
 | 
						|
            v-if="userStore.hasAbilities(abilities.CREATE_PAYMENT)"
 | 
						|
            :to="`/admin/payments/create?customer=${$route.params.id}`"
 | 
						|
          >
 | 
						|
            <BaseDropdownItem>
 | 
						|
              <BaseIcon name="CreditCardIcon" class="mr-3 text-gray-600" />
 | 
						|
              {{ $t('payments.new_payment') }}
 | 
						|
            </BaseDropdownItem>
 | 
						|
          </router-link>
 | 
						|
 | 
						|
          <router-link
 | 
						|
            v-if="userStore.hasAbilities(abilities.CREATE_EXPENSE)"
 | 
						|
            :to="`/admin/expenses/create?customer=${$route.params.id}`"
 | 
						|
          >
 | 
						|
            <BaseDropdownItem>
 | 
						|
              <BaseIcon name="CalculatorIcon" class="mr-3 text-gray-600" />
 | 
						|
              {{ $t('expenses.new_expense') }}
 | 
						|
            </BaseDropdownItem>
 | 
						|
          </router-link>
 | 
						|
        </BaseDropdown>
 | 
						|
 | 
						|
        <CustomerDropdown
 | 
						|
          v-if="hasAtleastOneAbility()"
 | 
						|
          :class="{
 | 
						|
            'ml-3': isLoading,
 | 
						|
          }"
 | 
						|
          :row="customerStore.selectedViewCustomer"
 | 
						|
          :load-data="refreshData"
 | 
						|
        />
 | 
						|
      </template>
 | 
						|
    </BasePageHeader>
 | 
						|
 | 
						|
    <!-- Customer View Sidebar -->
 | 
						|
    <CustomerViewSidebar />
 | 
						|
 | 
						|
    <!-- Chart -->
 | 
						|
    <CustomerChart />
 | 
						|
  </BasePage>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
import CustomerViewSidebar from './partials/CustomerViewSidebar.vue'
 | 
						|
import CustomerChart from './partials/CustomerChart.vue'
 | 
						|
import { ref, computed, inject } from 'vue'
 | 
						|
import { useRouter, useRoute } from 'vue-router'
 | 
						|
import { useI18n } from 'vue-i18n'
 | 
						|
import { useCustomerStore } from '@/scripts/admin/stores/customer'
 | 
						|
import { useDialogStore } from '@/scripts/stores/dialog'
 | 
						|
import { useUserStore } from '@/scripts/admin/stores/user'
 | 
						|
import CustomerDropdown from '@/scripts/admin/components/dropdowns/CustomerIndexDropdown.vue'
 | 
						|
import abilities from '@/scripts/admin/stub/abilities'
 | 
						|
 | 
						|
const utils = inject('utils')
 | 
						|
const dialogStore = useDialogStore()
 | 
						|
const customerStore = useCustomerStore()
 | 
						|
const userStore = useUserStore()
 | 
						|
const { t } = useI18n()
 | 
						|
 | 
						|
const router = useRouter()
 | 
						|
const route = useRoute()
 | 
						|
const customer = ref(null)
 | 
						|
 | 
						|
const pageTitle = computed(() => {
 | 
						|
  return customerStore.selectedViewCustomer.customer
 | 
						|
    ? customerStore.selectedViewCustomer.customer.name
 | 
						|
    : ''
 | 
						|
})
 | 
						|
 | 
						|
let isLoading = computed(() => {
 | 
						|
  return customerStore.isFetchingViewData
 | 
						|
})
 | 
						|
 | 
						|
function canCreateTransaction() {
 | 
						|
  return userStore.hasAbilities([
 | 
						|
    abilities.CREATE_ESTIMATE,
 | 
						|
    abilities.CREATE_INVOICE,
 | 
						|
    abilities.CREATE_PAYMENT,
 | 
						|
    abilities.CREATE_EXPENSE,
 | 
						|
  ])
 | 
						|
}
 | 
						|
 | 
						|
function hasAtleastOneAbility() {
 | 
						|
  return userStore.hasAbilities([
 | 
						|
    abilities.DELETE_CUSTOMER,
 | 
						|
    abilities.EDIT_CUSTOMER,
 | 
						|
  ])
 | 
						|
}
 | 
						|
 | 
						|
function refreshData() {
 | 
						|
  router.push('/admin/customers')
 | 
						|
}
 | 
						|
</script>
 |