mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
45 lines
1.3 KiB
Vue
45 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import { getOrganizationCurrencyString } from '@/utils/money';
|
|
import BillableRateModal from '@/packages/ui/src/BillableRateModal.vue';
|
|
import { formatCents } from '@/packages/ui/src/utils/money';
|
|
|
|
const show = defineModel('show', { default: false });
|
|
const saving = defineModel('saving', { default: false });
|
|
|
|
defineProps<{
|
|
newBillableRate?: number | null;
|
|
memberName?: string;
|
|
}>();
|
|
|
|
defineEmits<{
|
|
submit: [];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<BillableRateModal
|
|
v-model:show="show"
|
|
v-model:saving="saving"
|
|
title="Update Project Member Billable Rate"
|
|
@submit="$emit('submit')">
|
|
<p class="py-1 text-center">
|
|
The billable rate of {{ memberName }} will be updated to
|
|
<strong>{{
|
|
newBillableRate
|
|
? formatCents(
|
|
newBillableRate,
|
|
getOrganizationCurrencyString()
|
|
)
|
|
: ' the default rate of the project'
|
|
}}</strong
|
|
>.
|
|
</p>
|
|
<p class="py-1 text-center font-semibold max-w-md mx-auto">
|
|
Do you want to update all existing time entries, where the project
|
|
member billable rate applies as well?
|
|
</p>
|
|
</BillableRateModal>
|
|
</template>
|
|
|
|
<style scoped></style>
|