coati-payroll 0.0.10__tar.gz → 0.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/PKG-INFO +1 -1
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/__init__.py +13 -33
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/log.py +1 -1
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/version.py +1 -1
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/PKG-INFO +1 -1
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/LICENSE +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/README.md +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/app.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/audit_helpers.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/auth.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/cli.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/config.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/demo_data.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/enums.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/forms.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/ast_visitor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/expression_evaluator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/safe_operators.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/type_converter.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/data_sources.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/engine.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/exceptions.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/execution/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/execution/execution_context.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/execution/step_executor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/execution/variable_store.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/novelty_codes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/results/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/results/execution_result.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/assignment_step.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/base_step.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/calculation_step.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/conditional_step.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/step_factory.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/tax_lookup_step.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/bracket_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/table_lookup.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/tax_table.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/validation/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/validation/schema_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/validation/security_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/validation/tax_table_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine_examples.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/i18n.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/initial_data.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/interes_engine.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/liquidacion_engine/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/liquidacion_engine/engine.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/locale_config.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/migrations/20260125_032900_initial_migration.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/migrations/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/model.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/benefit_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/concept_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/deduction_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/exchange_rate_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/perception_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/salary_calculator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/calculation_items.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/employee_calculation.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/payroll_context.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/engine.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/accounting_processor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/accumulation_processor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/loan_processor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/novelty_processor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/vacation_processor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/acumulado_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/base_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/config_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/employee_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/exchange_rate_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/novelty_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/planilla_repository.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/error_result.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/payroll_result.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/validation_result.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/accounting_voucher_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/employee_processing_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/payroll_execution_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/snapshot_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/base_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/currency_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/employee_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/period_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/planilla_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/plugin_manager.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/driver.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/drivers/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/drivers/dramatiq_driver.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/drivers/huey_driver.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/drivers/noop_driver.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/selector.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/tasks.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/rate_limiting.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/rbac.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/report_engine.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/report_export.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/schema_validator.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/security.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/static/logo/Icono-small.png +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/static/logo/Icono.png +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/static/logo/Icono.svg +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/static/styles.css +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/system_reports.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/auth/login.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/base.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/macros.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/calculation_rule/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/calculation_rule/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/calculation_rule/schema_editor.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/carga_inicial_prestacion/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/carga_inicial_prestacion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/carga_inicial_prestacion/reporte.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/config_calculos/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/configuracion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/currency/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/currency/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/custom_field/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/custom_field/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/deduccion/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/deduccion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/employee/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/employee/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/empresa/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/empresa/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/exchange_rate/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/exchange_rate/import.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/exchange_rate/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/nueva.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/ver.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/payroll_concepts/audit_log.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/percepcion/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/percepcion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config_deducciones.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config_empleados.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config_percepciones.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config_prestaciones.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config_reglas.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/ejecutar_nomina.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/listar_nominas.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/log_nomina.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/novedades/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/novedades/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/ver_nomina.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/ver_nomina_empleado.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/plugins/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion_management/dashboard.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion_management/initial_balance_bulk.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/approve.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/condonacion.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/detail.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/pago_extraordinario.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/tabla_pago_pdf.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/admin_index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/detail.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/execute.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/permissions.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/settings/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/shared/concept_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/shared/concept_index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/tipo_planilla/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/tipo_planilla/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/user/form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/user/index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/user/profile.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/account_detail.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/account_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/account_index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/dashboard.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/initial_balance_bulk.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/initial_balance_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/leave_request_detail.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/leave_request_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/leave_request_index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/policy_detail.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/policy_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/policy_index.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/vacation/register_taken_form.html +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/translations/en/LC_MESSAGES/messages.mo +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/translations/en/LC_MESSAGES/messages.po +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/translations/es/LC_MESSAGES/messages.mo +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/translations/es/LC_MESSAGES/messages.po +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vacation_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/calculation_rule.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/carga_inicial_prestacion.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/config_calculos.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/configuracion.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/constants.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/currency.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/custom_field.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/employee.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/empresa.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/exchange_rate.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/liquidacion.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/payroll_concepts.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/association_routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/config_routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/export_routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/helpers/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/helpers/association_helpers.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/helpers/excel_helpers.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/helpers/form_helpers.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/nomina_routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/novedad_routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/routes.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/services/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/services/export_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/services/nomina_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/services/novedad_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/services/planilla_service.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/validators/__init__.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/planilla/validators/planilla_validators.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/plugins.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/prestacion.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/prestamo.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/report.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/settings.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/tipo_planilla.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/user.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/vistas/vacation.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/SOURCES.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/dependency_links.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/entry_points.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/requires.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll.egg-info/top_level.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/pyproject.toml +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/requirements.txt +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/setup.cfg +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_alembic_migrations.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_ast_security.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_ast_visitor.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_cli.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_plugin_manager.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_plugins_cli.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_plugins_ui.py +0 -0
- {coati_payroll-0.0.10 → coati_payroll-0.0.11}/tests/test_routes_map.py +0 -0
|
@@ -177,7 +177,7 @@ def create_app(config) -> Flask:
|
|
|
177
177
|
except Exception:
|
|
178
178
|
log.trace("create_app: could not read SQLALCHEMY_DATABASE_URI from app.config")
|
|
179
179
|
|
|
180
|
-
#
|
|
180
|
+
# Garantizar que las tablas básicas, el usuario admin y la configuración inicial existan
|
|
181
181
|
try:
|
|
182
182
|
log.trace("create_app: calling ensure_database_initialized")
|
|
183
183
|
ensure_database_initialized(app)
|
|
@@ -188,7 +188,7 @@ def create_app(config) -> Flask:
|
|
|
188
188
|
log.exception("create_app: ensure_database_initialized exception")
|
|
189
189
|
except Exception:
|
|
190
190
|
pass
|
|
191
|
-
# No
|
|
191
|
+
# No detener el arranque si la inicialización automática falla
|
|
192
192
|
pass
|
|
193
193
|
|
|
194
194
|
try:
|
|
@@ -243,30 +243,6 @@ def create_app(config) -> Flask:
|
|
|
243
243
|
|
|
244
244
|
limiter = configure_rate_limiting(app)
|
|
245
245
|
|
|
246
|
-
# Load initial data and demo data after Babel is initialized
|
|
247
|
-
# This allows translations to work properly
|
|
248
|
-
# Skip loading in test environments to keep test databases clean
|
|
249
|
-
if not app.config.get("TESTING"):
|
|
250
|
-
with app.app_context():
|
|
251
|
-
# Load initial data (currencies, income concepts, deduction concepts)
|
|
252
|
-
# Strings are translated automatically based on the configured language
|
|
253
|
-
try:
|
|
254
|
-
from coati_payroll.initial_data import load_initial_data
|
|
255
|
-
|
|
256
|
-
load_initial_data()
|
|
257
|
-
except Exception as exc:
|
|
258
|
-
log.trace(f"Could not load initial data: {exc}")
|
|
259
|
-
|
|
260
|
-
# Load demo data if COATI_LOAD_DEMO_DATA environment variable is set
|
|
261
|
-
# This provides comprehensive sample data for manual testing
|
|
262
|
-
if environ.get("COATI_LOAD_DEMO_DATA"):
|
|
263
|
-
try:
|
|
264
|
-
from coati_payroll.demo_data import load_demo_data
|
|
265
|
-
|
|
266
|
-
load_demo_data()
|
|
267
|
-
except Exception as exc:
|
|
268
|
-
log.trace(f"Could not load demo data: {exc}")
|
|
269
|
-
|
|
270
246
|
app.register_blueprint(auth, url_prefix="/auth")
|
|
271
247
|
app.register_blueprint(app_blueprint, url_prefix="/")
|
|
272
248
|
|
|
@@ -390,13 +366,17 @@ def ensure_database_initialized(app: Flask | None = None) -> None:
|
|
|
390
366
|
_db.create_all()
|
|
391
367
|
log.trace("ensure_database_initialized: create_all() completed")
|
|
392
368
|
except Exception as exc:
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
369
|
+
from sqlalchemy.exc import OperationalError
|
|
370
|
+
|
|
371
|
+
msg = str(exc).lower()
|
|
372
|
+
if isinstance(exc, OperationalError) and "already exists" in msg:
|
|
373
|
+
log.trace("ensure_database_initialized: create_all skipped existing objects")
|
|
374
|
+
else:
|
|
375
|
+
log.trace(f"ensure_database_initialized: create_all() raised: {exc}")
|
|
376
|
+
try:
|
|
377
|
+
log.exception("ensure_database_initialized: create_all() exception")
|
|
378
|
+
except Exception:
|
|
379
|
+
pass
|
|
400
380
|
|
|
401
381
|
# Comprobar existencia de al menos un admin.
|
|
402
382
|
registro_admin = _db.session.execute(_db.select(Usuario).filter_by(tipo="admin")).scalar_one_or_none()
|
|
@@ -62,7 +62,7 @@ custom_levels = {
|
|
|
62
62
|
numeric_level = custom_levels.get(log_level_str, logging.INFO)
|
|
63
63
|
|
|
64
64
|
# Configurar logger raíz
|
|
65
|
-
root_logger = logging.getLogger("
|
|
65
|
+
root_logger = logging.getLogger("coati_payroll")
|
|
66
66
|
root_logger.setLevel(numeric_level)
|
|
67
67
|
|
|
68
68
|
# Handler solo para stdout
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/ast_visitor.py
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/safe_operators.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/ast/type_converter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/execution/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/results/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/__init__.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/assignment_step.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/base_step.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/calculation_step.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/conditional_step.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/step_factory.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/steps/tax_lookup_step.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/table_lookup.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/tables/tax_table.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/formula_engine/validation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/calculators/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/domain/payroll_context.py
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/processors/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/repositories/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/__init__.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/error_result.py
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/results/payroll_result.py
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/services/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/nomina_engine/validators/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/queue/drivers/dramatiq_driver.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/currency/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/currency/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/custom_field/form.html
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/deduccion/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/deduccion/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/employee/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/employee/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/empresa/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/empresa/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/nueva.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/liquidacion/ver.html
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/percepcion/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/percepcion/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/config.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/planilla/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/plugins/index.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestacion/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/approve.html
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/detail.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/prestamo/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/detail.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/execute.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/report/index.html
RENAMED
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/settings/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/user/form.html
RENAMED
|
File without changes
|
{coati_payroll-0.0.10 → coati_payroll-0.0.11}/coati_payroll/templates/modules/user/index.html
RENAMED
|
File without changes
|