[IMPROVED] Calcular tarifa bash como 0.4 veces la tarifa de devops
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
3c6055dfe9
commit
466aff762b
1 changed files with 4 additions and 1 deletions
|
@ -370,7 +370,6 @@ def get_default_rate(programmer_type):
|
|||
"""
|
||||
# Tarifas base por tipo de programador (valores estimados en USD)
|
||||
base_rates = {
|
||||
'bash': 25.00,
|
||||
'python': 35.00,
|
||||
'fullstack': 45.00,
|
||||
'frontend': 40.00,
|
||||
|
@ -387,6 +386,10 @@ def get_default_rate(programmer_type):
|
|||
'odoo': 40.00
|
||||
}
|
||||
|
||||
# Cálculo especial para bash: 0.4 veces la tarifa de devops
|
||||
if programmer_type == 'bash':
|
||||
return 0.4 * base_rates['devops']
|
||||
|
||||
# Valor por defecto si el tipo no está en la lista
|
||||
return base_rates.get(programmer_type, 35.00)
|
||||
|
||||
|
|
Loading…
Reference in a new issue