diff --git a/src/components/CreateBudgetModal.vue b/src/components/CreateBudgetModal.vue new file mode 100644 index 0000000..2223254 --- /dev/null +++ b/src/components/CreateBudgetModal.vue @@ -0,0 +1,411 @@ + + + + + + + + Calculadora + + × + + + + + + + + CALCULADOR DE TARIFAS + + + DATOS DE CARGA + + + + + + MATERIAL + + + + + + TIPO DE CAMIÓN + + + + + + + + TARIFA / KILOMETRAJE + + + + + + + + + + + TOTAL KM RECORRIDOS + + + {{ totalTravel }} + + + + + + COSTOS DIRECTOS CAMION + + + + + + + + + TOTAL LITROS DE DIESEL CONSUMIDOS + + + {{ totalFuel }} + + + + + TOTAL COSTO DEL DIESEL + + + {{ totalFuelCost }} + + + + + + SUELDO OPERADOR + + + + + + + + + GASTOS ADMINISTRATIVOS TOTALES + + + {{ totalAdminExpenses }} + + + + + + UTILIDAD / PERDIDA + + + + + + TOTAL ANTES DE IVA + + + {{ totalBeforeTax }} + + + + + TOTAL UTILIDAD POR KILOMETRO + + + {{ totalUtilityPerKm }} + + + + + TOTAL UTILIDAD + + + {{ totalProfit }} + + + + + PORCENTAJE DE UTILIDAD + + + {{ totalPercentage }} + + + + + + + Guardar + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/CalculatorView.vue b/src/views/CalculatorView.vue index 287fda3..d4d05b0 100644 --- a/src/views/CalculatorView.vue +++ b/src/views/CalculatorView.vue @@ -1,10 +1,11 @@ + Calculadora @@ -73,7 +75,7 @@ import CardEmpty from '../components/CardEmpty.vue'; Crear presupuesto