Browse Source

ajuste taxa servico hardcoded

Gustavo Zanatta 1 tuần trước cách đây
mục cha
commit
c8dc60ad0e
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/components/dashboard/SolicitationDetailsDialog.vue

+ 2 - 1
src/components/dashboard/SolicitationDetailsDialog.vue

@@ -328,7 +328,8 @@ const fullDateLabel = computed(() => {
   return d.toLocaleDateString('pt-BR', { day: '2-digit', month: 'long', year: 'numeric' })
 })
 
-const SERVICE_FEE_RATE = 0.06
+const SERVICE_FEE_RATE = 0.10
+
 const serviceFee = computed(() => {
   const total = parseFloat(props.solicitation.total_amount) || 0
   return parseFloat((total * SERVICE_FEE_RATE).toFixed(2))