moogli-erp 2025.1.1__tar.gz → 2025.2.0__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.
- moogli_erp-2025.2.0/CURRENT_VERSION +1 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/PKG-INFO +111 -7
- moogli_erp-2025.2.0/caerp/alembic/versions/2025_1_1__b987d67518eb.py +55 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/access_rights.py +28 -5
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/permissions.py +5 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/users.py +1 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/base.py +3 -1
- moogli_erp-2025.2.0/caerp/dataqueries/queries/affaire_bpf.py +158 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/__init__.py +2 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/user.py +1 -3
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/workshop.py +2 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/company_index/__init__.py +1 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/company_index/event.py +8 -6
- moogli_erp-2025.2.0/caerp/panels/company_index/workshops.py +52 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/menu.py +3 -3
- moogli_erp-2025.2.0/caerp/services/business_bpf.py +46 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/release_notes.json +56 -7
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/company/companies.mako +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/company_index.mako +1 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/business_list.mako +1 -1
- moogli_erp-2025.2.0/caerp/templates/panels/company_index/coming_events.mako +100 -0
- moogli_erp-2025.2.0/caerp/templates/panels/company_index/coming_workshops.mako +46 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/supply/supplier_invoice_list.mako +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/supply/supplier_order_list.mako +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/lists.mako +5 -5
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/user.mako +1 -1
- moogli_erp-2025.2.0/caerp/templates/workshops/workshop_view.mako +38 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/datetimes.py +3 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/menu.py +20 -5
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/policy.py +13 -13
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/strings.py +4 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/sys_environment.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/balance_sheet_measures.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/company_general_ledger.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/export.py +3 -3
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/income_statement_measures.py +3 -3
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/treasury_measures.py +2 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/lists.py +2 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/rest_api.py +2 -2
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/companies.py +5 -5
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/contributions.py +4 -4
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/kms.py +4 -4
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/payments.py +4 -4
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/treasuries.py +4 -4
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/treasury_files.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/company.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/layout.py +1 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/workshops/lists.py +5 -1
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/workshops/workshop.py +61 -31
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/PKG-INFO +111 -7
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/SOURCES.txt +5 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/entry_points.txt +0 -1
- moogli-erp-2025.1.1/CURRENT_VERSION +0 -1
- moogli-erp-2025.1.1/caerp/templates/panels/company_index/coming_events.mako +0 -101
- moogli-erp-2025.1.1/caerp/templates/workshops/workshop_view.mako +0 -42
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/COPYRIGHT.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/CURRENT_PACKAGE_NAME +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/MANIFEST.in +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/README.rst +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/.pytest_cache/.gitignore +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/.pytest_cache/CACHEDIR.TAG +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/.pytest_cache/README.md +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/.pytest_cache/v/cache/stepwise +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/README +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/env.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/exceptions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/script.py.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_0_432d76e49a9c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_1_3ffdda6a6fe6.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_2_1f548f8115e8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_3_1902ba0cc2ac.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_2cc9251fb0bb.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_adding_polymorphic_i_3f52b6b0ed7c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_ajout_du_statusperso_41116dd5c5c8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_fiche_client_1dce987687aa.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_migration_des_factur_14b76f64614c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_migration_du_code_cl_209c0f6d7620.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_renommage_des_colonn_1e7d7781a47b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_4_taux_de_tva_par_1987a6d83e5f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_address_field_on_23fd141c9484.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_champ_adresse_mu_70853b5576c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_migrating_expens_362fc5306d54.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_migrating_financ_4a4eba558244.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_migrating_paymen_1f07ae132ac8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_migrating_work_u_1212f113f03b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_moving_manualinv_2a7a5275c441.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_5_multiple_client__1cc9ff114346.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_6_migrate_code_com_29299007fe7d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_7_active_tag_2b29f533fdfc.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_7_add_compte_cg_to_4ce6b915de98.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_7_client_to_custom_3f746e901aa6.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_8_add_a_base_node__1ca3a6ef9c9d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_8_add_session_id_t_1aa7e3b02b04.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/1_9_1_add_a_configur_1b3d5402f3e4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_ajout_categorie_expensetypes_7c3bc9b26029.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_ajout_du_compte_client_sur_les_tva_e032a4187413.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_ajoute_businessbpfdata_has_remote_f57584a7076f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_creation_et_deplacement_dispositif_et__303f11e5dbd4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_rend_certains_champs_de_businessbpfdata__c7f17be86e32.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_2_0_supprime_de_trainerdata_les_champs_un__a389d617354b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_agrandit_saleproducttraining_gateways_12a5d42d5158.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ajout_d_un_display_details_au__783c93aea84d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ajout_des_options_des_plan_de_paiement_947d347d3038.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ajout_file_is_signed_6f4275384863.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ajout_is_provision_modules_contrib__bc80db375bde.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ajoute_businesstype_coop_cgv_override_ed341fbf49e4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_business_colonne_visible_1b5ae0fd7e16.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_champ_default_estimation_deposit_company_caf82c019a06.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_codes_journaux_paiement_frns__f5d6f4b6c984.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_coordonnees_geographiques_enseigne_9cb9b960cd52.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_normalise_les_champs_de__381b37ecd573.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_nouvelle_nomenclature_de_produits__58c1c52190b3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ordonancement_des_champs_de_config_fad28b6bd362.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ordonancement_produits_4a6a17138d33.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_ordre_mode_de_paiements_077f73d16a76.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_supprime_basequaliopisaleproduct_free_1_00ceb1d68304.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_supprime_saleproducttraining_price_6a40660273fa.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_0_valeur_par_defaut_pour_fact__265b409ec218.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_3_1_ajoute_seqnumber_key_et_force_unicite_e22f7bc4b1ca.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_add_business_to_estimations_a30c7a922ec5.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_ajout_d_un_champ_sur_les_notifications_2eb7be665f50.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_association_access_rights_et_groups_1d03880a1ae3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_geninv_devis_facture_280eff27a43f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_migration_label_role_1ee600382694.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_remove_task_acl_86b7c129d8a9.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2024_5_0_role_predefinis_editable.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_0_add_codes_for_nd_b04de7c28.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_2_activity_status__15d4152bd5d6.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_3_1_2_3_1_header_and_logo_in_db_40c1f95213d0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_3_1_add_userdatas_disabled_accounts_42c3d2634645.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_3_add_userdatas_591c8309dc2b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_4_userdatas_is_node_46beb4c6f140.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_5_configurable_situation_1b94920692a3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_7_1_add_columns_36b1d9c38c43.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_7_add_round_floor_577f50e908d1.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/2_7_migrate_table_datas_428f9d451e18.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_0_fix_missing_unities_54de05a93319.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_0_migrate_task_lines_2192101f133b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_1_1_fix_competences_bdb7dd32c2c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_1_1_move_to_filedepot_4cb8e3e01f36.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_1_2_statistics_relationship_480d66cbb4c4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_1_ajout_bank_id_to_payments_59f05bb3051d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_1_fix_payment_2_658e0f23ee2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_1_fix_payment_3_18504ec02955.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_1_fix_payment_5_number_3017103d60c0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_2_add_bank_code_journal_25a21d2410b7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_add_base_groups_58df01afdaad.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_add_mention_to_tva_1cf6d10d40cf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_add_workplace_field_37a35699b280.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_2_passage_5_chiffres_3c1321f40c0c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_3_0_clean_part_of_unused_columns_5706441c0f47.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_3_0_fix_treasury_percentage__11219b4e619b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_3_0_fonctionnalites_9_2b6ac7b172d3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_4_add_expense_km_type_year_22721b810d30.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_4_add_expense_specific_exported_flag_4299e583631c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_4_add_user_vehicle_6a8b2495102.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/3_4_groupe_fonctionnalite_2017_1_55acdcdcc473.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_1_compte_de_resultats_13a25f46e412.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_470feca21286_add_workshop_description.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0__14d28a95ac46.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_customer_label_182bf34f7989.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_event_owner_id_field_2ed5c14be058.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_event_signup_mode_3fa09c31c2ac.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_filetype_table_11a62732db65.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_multiple_social_status_on__18591428772b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_project_type_44f964dc36a2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_sequence_initialization_properties__14d7548ec2ce.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_task_legacy_number_field_7aed0aafcbd.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_add_task_s_notes_3885e8260693.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_added_general_customer_account_third__5362502b508c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_added_product_id_to_sale_product_table_4f011ed2a459.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_added_registration_attribute_to__118382521263.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_added_type__attribut_in_sale_product__18b6a30326e2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_cascade_delete_workshop_trainers_2ab20c4414aa.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_change_task_official_number_int_str_29e53cf4579a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_clear_old_treasury_modules_config_3519f2dab802.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_copy_workshop_leaders_in_description_a9229288927.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_customer_nullable_datas_c48c967f7f7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_fill_task_official_number_with_prefixed__67403ce32f8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_initialise_la_config_de_la_taille_de__4f8d19c47c76.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_initialize_accounting_entries_label__18b00b9e3b46.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_initialize_invoice_number_format_1e1a970ad004.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_15fb49b9cb37.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_1729bb7ed957.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_2793f8d2e33e.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_3d5b6e485203.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_3d76b2ca290b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_merge_d777c5e2750.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_migrate_mentions_2e4c3172fc54.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_migrate_parcours_data_2a66d798c55d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_migrate_user_table_foreign_keys_1ad4b3e78299.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_register_sequence_numbers_for_existing__41261dd0a613.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_remove_task_prefix_column_4ab29f6cdd50.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_remove_workshop_leaders_field_1e4eb742df36.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_rename_payment_remittance_amount__50caf9dd4cd6.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_2_0_update_civility_value_from_mr_mme_to_m__4a7a603b00f7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_add_business_links_on_expense_lines_2389fde383c7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_add_business_type_bpf_related_4f37cb2ebd97.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_add_cascade_226992705175.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_add_supplier_accounts_to_company_2a7da76844bd.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_add_task_pdf_file_hash_432e6cd0752c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_added_hourly_rate_string_to_career_path_36fed0cf9bcd.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_added_parcours_salary_to_careerpath__544149b913e4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_added_place_workshop_company_manager__55272ae1d65a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_delete_sequence_number_with_invoice_24119bbaeaad.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_enlarge_configurableoption_label_31f29c2db55d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_load_official_nsf_training_specialities__e4acc2150d9.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_migrate_customers_to_third_parties_434b21bf4934.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_revision_merge_2abf64552d74.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_transform_task_status_date_date_dateti__37cae75cb90.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_treasury_states_migration_665ce85c453.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/4_3_update_workshops_company_manager_3c03cea7c1b5.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_accounts_special_field_6a67ebd21c93.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_bank_remittance_id__field_to__9a0a4f30ee28.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_company_address_fields_48f2b841d4fc.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_company_internal_field_1242fa563c83.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_paid_status__fields_to_expensesheet_15f720735537.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_add_supplierinvoiceline_source_supplier__b987d23091a0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_catalogue_produit_414d467360af.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_migrate_sale_product_eba300f6604a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_price_study_ad33637b0b1a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_refactor_table_config_3be3fcec8d38.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_revision_merge_10ff420a71ca.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_revision_merge_3fa5e47992bf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_0_revision_merge_e7e675528508.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_2_add_businesstype_tva_on_margin_column_fbfe14ea2b55.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_2_add_supplierinvoice_business_link_092c50781ff5.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_2_changed_most_of_saleproducttraining__6fb9c80c6fe3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_2_make_business_project_id_and_task_project_id_non_null_f81ecd97d8b0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_additional_fields_on_payments_13bbeb791326.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_bank_on_supplier_payments_0f345f86f928.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_date_on_supplier_invoices_ae9f83f54480.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_display_ttc_field_on_tasks_794070fe8c0c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_iban_and_bic_to_bank_accounts_3024401478db.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_add_issuer_field_on_invoice_payments_69e690478b6c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_added_mode_to_task_and_task_line_273d4944c9e0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_catalogue_produit.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_etude_de_prix_abd68b15a448.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_facturation_avancement_e4151c91ccfb.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_incomesource_invoice_id_cascade_delete_d824a2ca7973.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_initialize_bpf_indicators_b17da9edd4ff.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_migrate_payment_bank_remittance_id_to_fk_783d20753ba0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/5_1_renomme_projet_classique_dossier__6de07846fbc8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_businessbpfdata_remote_headcount_5000b3d46b77.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_cascading_strategies_701c65a78b84.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_decimal_precision_8b8ac63f8333.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_expenseline_manual_ttc_6000812cf022.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_expensetype_compte_produit_tva_on__b4120ace97c3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_expensetype_tva_on_margin_col_0f7d98915d57.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_linemodelmixin_fk_constraint_41f072b2df0e.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_start_date_and_validity_duration_to__c521ac577082.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_task_frozen_settings_2fa7840218f2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_add_user_photos_000c62b7ac2a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_added_vehicle_fiscal_power_and_vehicule__ea3ee333c241.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_change_stock_variations_to_floats_ad67b1ce434c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_changed_project_code_from_4_to_12_chars_82acaab789be.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_fix_2073_creation_de_la_table__6bb1388dbe67.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_fix_556_valeur_par_defaut_nouvelle_cle__d187644f5870.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_fix_808_ajout_d_une_colonne_updated_at__3d875d983693.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_migrate_to_cerfa_10443_16_ae9a26b79ac0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_ref_1898_type_de_projet_par_defaut_2cae2c8225a9.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_0_set_initial_task_frozen_settings_1808c968068f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_add_expense_sheet_official_number_60e32edeb921.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_add_internal_customer_9336bbbecf03.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_add_supplier_invoice_official_number_6373d1701a81.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_add_taskline_date_6a83c2409886.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_d_un_base_supplier_payment_c4b03f713cae.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_d_un_base_task_payment_a623cf307603.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_de_cascade_0a7b4ce1193a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_de_cascade_company_data_d7c5e3dce471.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_de_colonne_aux_enseignes_ba72c4430612.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_ajout_de_la_colonne_internal_au__a5c2c70e6942.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_cascade_strategies_8316776402ee.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_clean_sale_product_polymorphism_06342a8aa5df.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_delete__acl_from_node_and_add_it_to__07c770adff81.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_initialize_existing_expense_sheet__aa25b30b2736.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_initialize_existing_supplier_invoice__6be1efa57217.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_initialize_expensesheet_number_template_9d9ab48e488c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_initialize_supplierinvoice_number__35e9bfc2ae2c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_initialize_supplierinvoice_number__41143edd69a0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_produit_pour_transfert_de_charge_93bd3589fa62.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_rename_initialization_config_keys_for__c2f39b66c90b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_rename_task_sequence_number_sequence__c807505b5e28.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_set_back_supplierinvoice_status_wait__7a5daccd86a8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_set_projecttype_booleans_non_nullables_d11959327f54.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_1_0_typage_des_custombookentry_8742fe30a7c0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_add_supplierinvoice_payer_id_134b7fd3b1e3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_ajout_d_un_markeur_autovalidate_au__6ea8700cae45.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_ajout_des_seuils_limites_aux_documents__0b53f2d72d08.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_ajoute_supplierinvoice_cae_percentage_2ae94459f6e7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_ajoute_supplierinvoice_worker_paid__522f4e21cacf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_fix_2604_cascade_delete_business_type__e591a210dd65.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_fix_2672_add_a_column_user_id_in__3b0e44e60ad1.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_migration_des_statistiques_2d0297c64801.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_move_communication_statuslogentry_35a5b1ceaa31.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_move_taskstatus_statuslogentry_64afdc450f66.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_ref_2738_ajout_d_une_colonne_invoiced__1ad5591c5c90.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_remove_unwanted_cascade_65a3bfcfb616.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_remplit_expensepayment_mode_et_bank__9c91fbe01305.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_0_update_progress_invoicing_cascade_82443e7fc843.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_2_6_ajout_de_cascade_pour_les_ndd_6d80ecf34a1a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_add_company_general_expense_account_01f96429ef5c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_ajout_d_un_booleen_display_details_au__a9bb2ebf988d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_ajout_du_first_visit_b1b7468b8889.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_ajout_du_taux_d_assurance_197085e72d54.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_fix_2932_82c315bf84c0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_migre_la_config_receipts_group_by__48cbb45ca42d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_0_utilisation_du_format_numeric_pour_les__6dfc1e2ae23c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_12_ajoute_supplierinvoice_remote_invoice__7017d6bffe32.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_19_endi_co_ajout_expenseline_supplier_id_et__b3d7f32aea9d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_19_endi_co_ajoute_colonne_expenseline_justified_7974e0d1308e.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_3_19_top_revision_endico_5d2700d4a141.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajout_du_mode_de_calcul_04ae06f3d324.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajout_expensekmline_ht_7d2c6cb2724f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajout_mode_etude_de_prix_61d0d891d3c2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajoute_expensesheet_status_comment_3573a1ea51b7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajoute_statuslogentry_label_27e3d45bfea3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajoute_statuslogentry_pinned_299427a02576.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_ajoute_statuslogentry_visibility_5540d20e6ae0.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_cascade_fk_affaires_a9ac168053d4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_change_file_description_to_text_c685fd419967.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_fait_heriter_company_de_node_914fba36e9ce.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_fix_2224_ajout_d_une_colonne_antenne_id__28a56ce17b2f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_fix_2716_ajout_d_une_colonne_invert__69f3bf19d0fc.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_fix_3168_5aac86c3c4f8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_initialise_les_node_company_33de05381b82.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_migration_avancement_6b661cafa4e2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_migration_etude_de_prix_2409eb7e97a4.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_migre_thirdparty_comments_en__7aa5d4ce2813.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_passe_statuslogentry_datetime_en__3db408759e73.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_renomme_task_status_person_id_task__cf3b3f9cfc11.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_renumerotation_des_company_f80470768fe1.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_status_comment_non_nullable_7ac32c4dd6f1.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_suppression_de_lien_catalogue_etude_4f714e529447.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_supprime_company_comments_842820ac6955.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_supprime_les_memos_vides_0b1f034ec704.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_supprime_thirdparty_comments_768321dd6773.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_0_transforme_expensesheet_status_date_en__783c9072821f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_1_ajout_colonnes_projecttype_ttc_ht___14fb928359ce.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_1_ajoute_expensesheet_title_0d277ad21613.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_4_1_migre_les_parametres_de_mode_ttc_a18d2479a408.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_add_product_urssaf_code_nature_94cab0a6d38c.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_ajout_de_workshop_max_participants_aa5d02b3513f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_champ_requis_task_115a580ee4a9.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_change_urssafpaymentrequest_urssaf__e388e68ad1d7.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_enlarge_node_type_30_50_c9c7d6ae5e30.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_0_sap_client_09d79360a4d8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_4_ajoute_infos_rejet_virement_aux__a3655abb966d.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_5_fix_3684_aef809bffbc3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_5_rend_id_urssaf_unique__c7ea385d87e3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_7_ajout_de_champ_numero_de_voie_urssaf_3p_e26f31c51194.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_5_8_contrainte_unique_task_mention_rel_ea80e8805df8.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_6_ajout_d_un_booleen_archived_au_modele_base_sale_product__2e0ffd36167a.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_6_rend_utilisateur_systeme_admin_8a238e064197.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_ajout_fk_sur_rel_taskline_product_id.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_ajoute_filegenerationjob_force_download_790f171aa01f.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_deplacement_des_fichiers_requis_ceb8faaa2785.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_fix_2933_mode_de_paiement_9ff2b756eb0b.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_fix_3850_measure_value_type_9459d94ec4e2.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/alembic/versions/6_7_ordonancement_type_de_depenses_8366109f74a3.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/celery.log +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/base_line.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/isacompta/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/isacompta/compute.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/math_utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/parser.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/price_study/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/price_study/ht_mode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/price_study/supplier_ht_mode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/expense_payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/supplier_invoice_payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage_generation_expert/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sage_generation_expert/compute.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sale_product/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sale_product/ht_mode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sale_product/supplier_ht_mode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/sale_product/ttc_mode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/supplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/task/common.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/task/task_ht.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/compute/task/task_ttc.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/insee_countries.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/insee_departments.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/street_number_complements.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/consts/street_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/expense_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/state_managers/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/state_managers/justified.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/state_managers/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/state_managers/signed.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/state_managers/validation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/task/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/controllers/task/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/ca_porteurs_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/clients_factures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/contrats_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/etapes_parcours.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/frns_sans_siren.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/lieux_de_production.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/ob_porteurs_actifs_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/porteurs_accompagnes_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/porteurs_actifs_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/sorties_periode.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/dataqueries/queries/validations.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/default_layouts.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/document_events.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/indicators.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/model_events.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/status_changed.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/events/tasks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/exception.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/accounting_spreadsheet.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/activity_pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/cegid.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/cegid_tra.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/excel.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/expense_excel.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/isacompta.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/ods.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/sage.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/sage_generation_expert.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/sale_product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/task_pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/export/workshop_pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/accounting.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/activity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/career_stage.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/expense_type.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/cae_places.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/digital_signatures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/internal_companies.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/role.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/main/site.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/bookeeping.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/business_cycle/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/business_cycle/file_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/business_cycle/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/business_cycle/project_type.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/form_options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/insurance.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/naming.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/admin/sale/tva.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/bank_remittance.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/business/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/business/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/commercial.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/company.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/competence.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/csv_import.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/custom_documentation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/custom_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/duplicate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/fields.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/holiday.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/job.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/jsonschema.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/companies.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/contributions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/kms.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/payments.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/management/treasuries.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/notification.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/payments.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/chapter.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/common.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/discount.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/price_study.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/price_study/work_item.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/progress_invoicing.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/project/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/project/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/sale_product/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/sale_product/category.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/sale_product/json_import.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/sale_product/sale_product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/sale_product/work.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/statistics.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/status.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/supply/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/supply/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/supply/supplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/tasks/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/third_party/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/third_party/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/third_party/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/third_party/supplier.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/training/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/training/bpf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/training/trainer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/training/training.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/treasury_files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/career_path.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/company.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/login.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/user/userdatas.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validation/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validation/expenses.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validation/supplier_invoices.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validation/supplier_orders.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validation/tasks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/validators.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/forms/widgets.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/i18n/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/i18n/translater.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/import_/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/import_/sale_product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/interfaces.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/log.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/accounting_closures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/balance_sheet_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/bookeeping.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/general_ledger_account_wordings.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/income_statement_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/operations.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/services.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/accounting/treasury_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/action_manager.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/activity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/career_path.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/career_stage.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/commercial.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/company.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/competence.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/config.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/custom_documentation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/services/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/services/expense_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/services/expensesheet_official_number.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/services/sheet.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/sheet.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/expense/types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/export/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/export/accounting_export_log.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/form_options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/holiday.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/indicators.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/listeners.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/node.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/notification/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/notification/notification.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/payments.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/populate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/chapter.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/discount.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/price_study.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/services.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/work.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/price_study/work_item.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/invoicing.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/services/invoicing.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/services/status.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/progress_invoicing/status.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/file_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/mixins.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/naming.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/phase.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/project.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/services/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/services/business_status.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/services/phase.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/services/project.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/project/types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/category.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/sale_product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/services.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/training.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/work.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sale_product/work_item.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/sequence_number.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/bpf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/company.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/injectable_model_formatter.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/mixins.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/naming.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/official_number.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/sale_file_requirements.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/services/user.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/statistics.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/status.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/internalpayment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/internalsupplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/internalsupplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/mixins.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/services/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/services/supplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/services/supplierinvoice_official_number.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/supply/supplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/insurance.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/internalestimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/internalinvoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/internalpayment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/invoice_official_number.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/task_mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/services/unity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/task/unity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/services/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/services/supplier.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/services/third_party.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/supplier.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/third_party/third_party.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/tools.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/training/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/training/bpf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/training/trainer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/tva.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/access_right.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/group.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/login.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/user.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/userdatas.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/user/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/models/workshop.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/activity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/business/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/business/business_list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/business/timeline.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/company_index/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/company_index/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/form.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/indicators.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/manage/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/manage/activities.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/manage/expenses.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/manage/suppliers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/manage/tasks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/navigation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/project/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/project/business_metrics_mixins.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/project/phase.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/project/type.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/sidebar.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/supply/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/supply/supplier_invoice_list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/supply/supplier_order_list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/tabs.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/task/file_tab.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/task/html.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/task/pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/task/task_list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/third_party.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/widgets.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/panels/workshop.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/celery_jobs.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/export/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/export/sap_attestation_pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/admin/sap/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/attestation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/nova.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/tasks/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/tasks/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/forms/tasks/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/sap.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/services/attestation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/services/nova.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/services/subqueries.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/models/task/tasks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/panels.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/populate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/panels/sap/content_wrapper.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/panels/sap/pdf_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/panels/sap/pdf_footer.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/panels/sap/pdf_header.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/sap/attestations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/templates/sap/nova.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/admin/sap/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/admin/sap/attestation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/attestation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/estimations/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/estimations/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/invoices/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/invoices/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/mixins.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/nova.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap/views/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/api_client.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/caerp_admin_commands.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/celery_jobs.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/admin/sap/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/tasks/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/tasks/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/forms/tva.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/models/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/models/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/models/payment_request.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/models/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/models/services/payment_request.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/populate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/serializers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/templates/customers/view.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/templates/tasks/invoice/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/admin/sale/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/admin/sale/tva.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/admin/sap/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/admin/sap/avance_immediate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/invoices/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/invoices/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/invoices/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/payment_request.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/third_party/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/sap_urssaf3p/views/third_party/customer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/plugins/solo/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/pshell.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/resources.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sample_templates/Mod/303/250le lettre.odt" +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sample_templates/bpf/CERFA 10443*14.ods +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sample_templates/bpf/CERFA 10443*16.ods +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sample_templates/bpf/CERFA 10443*17.ods +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_admin.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_anonymize.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_cache.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_celery.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_clean.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_company_export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_custom.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_load_demo_data.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/caerp_migrate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/scripts/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/services/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/services/company.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/services/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/services/supplier_order.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sql.log +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sql_compute/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sql_compute/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/sql_compute/task/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/browser_support.json +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/admin.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/dashboard.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/expense.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/jstree_themes/default/32px.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/jstree_themes/default/40px.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/jstree_themes/default/throbber.gif +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/login.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/main.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/opa.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/pdf.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/radar-chart.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/radar-chart.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/richtext.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/sale_product.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/select2.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/select2.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/task.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/task_preview.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/css/user.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/demo-lieux-ressources.geojson +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/android-chrome-192x192.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/android-chrome-512x512.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/apple-touch-icon.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/browserconfig.xml +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/android-chrome-192x192.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/android-chrome-512x512.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/apple-touch-icon.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/favicon-16x16.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/favicon-32x32.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/favicon.ico +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/mstile-150x150.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/caerp/safari-pinned-tab.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/android-chrome-192x192.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/android-chrome-512x512.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/apple-touch-icon.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/favicon-16x16.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/favicon-32x32.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/favicon.ico +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/mstile-150x150.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/endi/safari-pinned-tab.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/favicon-16x16.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/favicon-32x32.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/favicon.ico +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/mstile-150x150.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/safari-pinned-tab.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/favicons/site.webmanifest +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/GandhiSans-Bold.otf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/GandhiSans-Italic.otf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/GandhiSans-Regular.otf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-bolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-extrabolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-italic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-italic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-italic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-light-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-light-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-light-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-lightitalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-lightitalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-lightitalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-regular-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-regular-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-regular-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/opensans-semibolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/playfair_display_regular.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-black-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-black-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-black-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-blackitalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-blackitalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-blackitalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-bolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-extrabolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-italic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-italic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-italic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-light-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-light-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-light-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-lightitalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-lightitalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-lightitalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-medium-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-medium-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-medium-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-mediumitalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-mediumitalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-mediumitalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-regular-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-regular-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-regular-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibold-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibold-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibold-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibolditalic-webfont.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibolditalic-webfont.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/fonts/raleway-semibolditalic-webfont.woff2 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/box.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/caret.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/check.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/chevron-select-active.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/chevron-select-white.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/chevron-select.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/composite.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/endi.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/exclamation-triangle.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/service.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/times-active.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/times.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/training.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/icons/workforce.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/caerp/logo.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/endi/logo.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/glyphicons-halflings-white.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/glyphicons-halflings.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/logo.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/img/pdf_checkbox.png +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/activity_edit.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/address.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/admin_expense.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/admin_expense_type.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/backbone-popup.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/backbone-tuning.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/backbone-validation-bootstrap.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/bpf.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/3cb682ed4faf78fc4f2190b8623a7b8b.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/50a4565b9dfc59e1ef1e20cbf7ec2259.vue +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/5a6cdb62371f4bc880e3e24e76589b1f.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/941eff7241d28a6ef8c2ace0d3cdad76.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/README.md +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/base_setup.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/base_setup.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/base_setup.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_list.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_list.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_map.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_map.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_map.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/company_map.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/customer.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/customer.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/customer.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/customer.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/expense.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/expense.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/expense.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/invoice_list.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/invoice_list.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/node_view_only.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/node_view_only.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/node_view_only.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/notification.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/notification.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/notification.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/notification.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.87e420e51cb36017620d.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.87e420e51cb36017620d.js.LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.bdae750c1f417b59924a.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.bdae750c1f417b59924a.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.eb44c3af7fe2d6e0d156.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.eb44c3af7fe2d6e0d156.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.min.js.LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf.worker.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf_preview.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf_preview.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/pdf_preview.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/price_study.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/price_study.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/price_study.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_files.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_files.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_files.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_files.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_product.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_product.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/sale_product.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/statistics.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/statistics.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/statistics.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_invoice.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_invoice.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_invoice.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_order.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_order.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/supplier_order.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_add.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_add.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_add.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_add.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_view_only.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_view_only.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/task_view_only.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/langs/fr_FR.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/dark/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/dark/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/default/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/default/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/document/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/document/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/writer/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/content/writer/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/content.inline.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/content.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce-mobile.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce-small.eot +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce-small.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce-small.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce-small.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce.eot +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce.ttf +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/fonts/tinymce.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/img/anchor.gif +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/img/loader.gif +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/img/object.gif +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/img/trans.gif +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/skin.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/lightgray/skin.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.inline.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.inline.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/content.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.shadowdom.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide/skin.shadowdom.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.inline.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.inline.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/content.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.shadowdom.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/tinymce-assets/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor-vue.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor-vue.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor-vue.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor-vue.min.js.LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor-vue.min.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor.js.LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor.js.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/build/vendor.min.js.LICENSE.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/commercial.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/competence.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/competence_radar.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/date.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/default_layout.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/dispatch_supplier_invoice.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/dom.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/estimation_signed_status.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/event_list.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/fileupload.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/holiday.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/job.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/main.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/math.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/message.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/task_duplicate.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/task_list.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/template.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/templates/competence.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/templates/holiday.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/templates/job.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/templates/statistics.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/templates/task.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/tva.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/utils.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone-min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone-validation-min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone-validation.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone.marionette.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/backbone.marionette.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/bootstrap.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/d3.v3.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/d3.v3.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/handlebars.runtime-v4.7.6.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/handlebars.runtime.min-v4.7.6.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/pdf.min.js.1 +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/radar-chart.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/select2.full.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/select2.full.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/select2_fr.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/svgxuse.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/svgxuse.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/README.md +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/icons/default/icons.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/icons/default/icons.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/jquery.tinymce.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/langs/fr_FR.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/license.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/advlist/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/advlist/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/anchor/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/anchor/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autolink/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autolink/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autoresize/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autoresize/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autosave/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/autosave/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/bbcode/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/bbcode/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/charmap/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/charmap/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/code/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/code/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/colorpicker/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/colorpicker/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/contextmenu/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/contextmenu/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/directionality/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/directionality/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/fullpage/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/fullpage/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/fullscreen/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/fullscreen/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/help/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/help/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/hr/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/hr/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/image/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/image/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/imagetools/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/imagetools/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/importcss/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/importcss/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/insertdatetime/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/insertdatetime/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/legacyoutput/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/legacyoutput/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/link/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/link/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/lists/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/lists/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/media/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/media/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/nonbreaking/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/nonbreaking/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/noneditable/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/noneditable/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/pagebreak/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/pagebreak/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/paste/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/paste/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/preview/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/preview/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/print/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/print/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/quickbars/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/quickbars/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/save/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/save/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/searchreplace/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/searchreplace/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/spellchecker/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/spellchecker/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/tabfocus/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/tabfocus/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/table/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/table/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/template/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/template/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/textcolor/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/textcolor/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/textpattern/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/textpattern/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/toc/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/toc/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/visualblocks/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/visualblocks/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/visualchars/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/visualchars/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/wordcount/plugin.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/plugins/wordcount/plugin.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/dark/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/dark/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/dark/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/default/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/default/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/default/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/document/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/document/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/document/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/writer/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/writer/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/content/writer/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.inline.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.inline.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.inline.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/content.mobile.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.mobile.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.shadowdom.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.shadowdom.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide/skin.shadowdom.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.inline.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.inline.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.inline.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/content.mobile.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.mobile.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.mobile.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.mobile.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css.map +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/themes/mobile/theme.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/themes/mobile/theme.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/themes/silver/theme.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/themes/silver/theme.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/tinymce.d.ts +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/tinymce.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/tinymce/tinymce.min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/underscore-min.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/js/vendors/underscore.js +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/robots.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/svg/caerp/logo.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/svg/endi/logo.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/svg/logo.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/svg/urssaf_logo.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/watermark.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/watermark_estimation.jpg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/watermark_estimation.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/watermark_invoice.jpg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/static/watermark_invoice.svg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/statistics/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/statistics/filter_options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/statistics/inspect.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/statistics/query_helper.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/subscribers/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/subscribers/before_render.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/subscribers/new_request.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/activities.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/activity.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/activity_edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/competence.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/competence_resume.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/competences.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accompagnement/user_activities.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/balance_sheet_measures.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/bank_remittance.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/bank_remittance_pdf.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/bank_remittances.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/general_ledger_operations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/income_statement_grids.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/income_statement_measures.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/operation_uploads.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/operations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/treasury_grids.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/accounting/treasury_measures.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/accounting_closure_crud_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/base_view.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/crud_add_edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/crud_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/expense_km_index.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/places.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/roles.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/sale/business_type_file_type.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/admin/sale/business_type_task_mention.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/actionmenu.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/button.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/buttondropdownmenu.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/formajax.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/formpage.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/itemactionlink.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/jsbutton.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/mainmenu.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/pager.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/searchformlayout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/simpleformpage.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/submit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/togglelink.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/utils.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/base/vue_app.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/browser_nosupport.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/expenses_hybrid.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/files.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/list_businesses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/overview.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/business/py3o.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/celery/job.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/celery/jobs.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/company/company.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/custom_documentation.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/businesses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/estimations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/rest_form.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/customers/view.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/dataqueries/queries_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/dataqueries/query.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/accordion_form.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/accordion_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/accordions_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/checkbox.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/checkbox_choice.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/checkbox_readonly.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/checkbox_toggle.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/checked_password.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/clean_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/clean_sequence.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/daterange_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/dynamic_label_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/fileupload.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/fixed_len_sequence.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/fixed_len_sequence_item.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/form.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/grid_form.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/grid_mapping_item.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/inline_mapping.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/inline_mapping_item.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/mapping_item.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/radio_choice.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/radio_choice_toggle.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/readonly/checkbox_choice.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/readonly/radio_choice.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/readonly/textinput.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/richtext.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/searchform.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/select2.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/sequence_item.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/deform/wrappable_input.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/estimations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/expenses/admin_expenses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/expenses/expense.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/expenses/expenses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/export/log_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/export/main.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/export/single.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/file.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/forbidden.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/holiday.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/holidays.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/http_404.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/index.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/layouts/default.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/layouts/login.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/login.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/mailhistory.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/manage.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/management/companies.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/management/contributions.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/management/kms.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/management/payments.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/management/treasuries.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/mydocuments.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/notifications/activity.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/notifications/release_note_alert.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/obsolete_account.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panel_page_wrapper.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panel_wrapper.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/activity/pdf_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/activity/pdf_footer.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/activity/pdf_header.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/business_payment_deadline_timeline_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/button_timeline_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/payment_deadline_timeline.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/progress_invoicing_timeline.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/business/task_timeline_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/company_index/recent_tasks.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/filetable.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/help_message.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/indicators/custom_indicator.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/manage/manage_dashboard_activities.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/manage/manage_dashboard_activity_resume.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/manage/manage_dashboard_expenses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/manage/manage_dashboard_waiting_docs.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/menu.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/navigation.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/project/business_metrics_totals.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/project/business_type_label.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/project/phase_estimations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/project/phase_invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/sidebar.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/sidebar_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/tabs.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/tabs_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/file_tab.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/cancelinvoice_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/cgv.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/content_wrapper.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/discount_line.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/estimation_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/footer.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/header.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/invoice_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/post_ttc_line.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/price_study/work_details.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/price_study/work_item.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/progress_invoicing/product.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/progress_invoicing/work_details.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/task_line.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/task_line_group.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/pdf/task_line_group_resume.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/task_html.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/task_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/task/title.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/third_party/third_party_accounting_info.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/third_party/third_party_general_info.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/_action_inline_buttons.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/action_buttons.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/admin_index_link.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/admin_index_nav.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/link.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/menu_dropdown.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/post_button.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/widgets/status_title.pt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/workshop/pdf_content.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/workshop/pdf_footer.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/panels/workshop/pdf_header.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/payment.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/price_study/price_study.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/base.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/business_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/estimations.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/files.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/project/phases.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/release_notes.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/sale/products.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/statistics/edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/statistics/info.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/statistics/list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier/supplier_list_of_expenselines.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier/supplier_list_of_invoiced_orders.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier/supplier_list_of_invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier/supplier_list_of_orders.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supplier_edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/suppliers.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supply/dispatch_supplier_invoice.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supply/supplier_invoice.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supply/supplier_invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supply/supplier_order.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/supply/supplier_orders.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/add.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/cancelinvoice/accounting.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/cancelinvoice/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/cancelinvoice/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/duplicate.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/estimation/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/estimation/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/files.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/form.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/invoice/accounting.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/invoice/general.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/invoice/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/invoice/payment.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tasks/preview.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/tests/base.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/bpf/business_bpf_data_form.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/bpf/business_bpf_data_list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/dashboard.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/filelist.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/list_trainers.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/list_trainings.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/training/trainerdatas_edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/treasury/admin_treasury_all.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/treasury/admin_treasury_files.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/treasury/commercial.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/treasury/documents.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/accounting.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/add.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/companies.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/connections.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/layout.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user/login.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/user_holidays.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/career_path.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/career_path_form.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/doctypes.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/filelist.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/list.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/userdatas/py3o.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/validation/expenses.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/validation/supplier_invoices.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/validation/supplier_orders.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/validation/tasks.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/workshops/user_workshops.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/workshops/workshop_base.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/workshops/workshop_edit.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/templates/workshops/workshops.mako +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/accounting.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/ascii.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/colanderalchemy.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/colors.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/compat.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/dataqueries.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/filedepot.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/formatters.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/html.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/image.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/iteration.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/modules.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/navigation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/abstract.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/activity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/career_path.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/channels.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/internal_supply.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/notification.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/status_log_entry.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/supply.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/notification/task.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/pdf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/predicates.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/renderer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/rest.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/acls.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/api_key_predicate.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/auth.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/security/identity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/session.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/sqlalchemy_fix.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/status_rendering.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/widgets.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/utils/zip.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accompagnement/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accompagnement/activity.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/bank_remittances.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/operations.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/accounting/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accompagnement/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accompagnement/activities.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accompagnement/competence.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accompagnement/workshop.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/accounting_closure.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/accounting_software.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/balance_sheet_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/company_general_ledger.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/exports.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/income_statement_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/accounting/treasury_measures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/expense/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/expense/accounting.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/expense/numbers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/expense/types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/cae.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/cae_places.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/companies/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/companies/companies_label.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/companies/company_activities.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/companies/internal_companies.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/contact.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/digital_signatures.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/file_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/roles.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/main/site.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/common.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/internal_invoicing_numbers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/internalinvoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/numbers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/receipts.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/accounting/tva.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/business_cycle/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/business_cycle/file_types.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/business_cycle/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/business_cycle/naming.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/business_cycle/project_type.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/catalog.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/forms/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/forms/fields.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/forms/insurance.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/forms/main.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/forms/mentions.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/pdf/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/pdf/common.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/pdf/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/sale/pdf/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/accounting/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/accounting/internalsupplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/accounting/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/internalnumbers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/supplier/numbers.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/tools.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/userdatas/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/userdatas/career_stage.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/userdatas/custom_fields.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/userdatas/options.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/admin/userdatas/templates.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/auth/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/auth/basic_views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/auth/forbidden_views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/auth/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/py3o.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/business/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/commercial.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/tools.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/company/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/competence.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/csv_import.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/custom_documentation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/dataqueries/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/dataqueries/list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/dataqueries/query.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/estimations/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/bookmarks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/expenses/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/bpf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/expense_payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/log_list.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/supplier_payment.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/export/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/files/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/files/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/files/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/files/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/files/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/holiday.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/index.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/indicators/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/indicators/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/indicators/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/indicators/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/indicators/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/internal_invoicing/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/internal_invoicing/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/internal_invoicing/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/internal_invoicing/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/cancelinvoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/invoices/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/job.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/json.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/manage.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/management/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/notification/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/notification/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/notification/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/expense.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/payment/supplier_invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/price_study/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/price_study/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/price_study/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/price_study/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/progress_invoicing/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/progress_invoicing/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/progress_invoicing/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/progress_invoicing/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/files.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/phase.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/project.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/project/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/release_notes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/render_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/rest_consts.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/sale_product/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/sale_product/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/sale_product/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/sale_product/sale_product.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/static.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/statistics/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/statistics/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/statistics/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/statistics/statistics.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/status/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/status/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/status/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/base_rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/base_views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/invoices/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/invoices/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/invoices/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/invoices/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/orders/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/orders/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/orders/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/orders/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/supply/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/pdf_rendering_service.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/pdf_storage_service.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/utils.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/task/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/business.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/controller.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/estimation.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/invoice.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/customer/views.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/base.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/layout.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/third_party/supplier/supplier.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/business_bpf.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/dashboard.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/training/trainer.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/connections.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/login.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/rest_api.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/tools.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/user/user.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/career_path.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/filelist.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/lists.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/py3o.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/userdatas/userdatas.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/validation/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/validation/expenses.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/validation/supplier_invoices.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/validation/supplier_orders.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/validation/tasks.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/workshops/__init__.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/workshops/export.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp/views/workshops/routes.py +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/caerp_setup.json +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/dev_requirements.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/endi_setup.json +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli-erp_setup.json +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/dependency_links.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/not-zip-safe +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/requires.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/moogli_erp.egg-info/top_level.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/pyproject.toml +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/requirements.txt +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/setup.cfg +0 -0
- {moogli-erp-2025.1.1 → moogli_erp-2025.2.0}/setup.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
2025.2.0
|
@@ -1,13 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: moogli-erp
|
3
|
-
Version: 2025.
|
3
|
+
Version: 2025.2.0
|
4
4
|
Summary: Progiciel de gestion pour CAE
|
5
5
|
Home-page: https://framagit.org/caerp/caerp
|
6
6
|
Author: Majerti/Kilya
|
7
7
|
Author-email: contact@moogli.coop
|
8
|
-
License: UNKNOWN
|
9
8
|
Keywords: pyramid,business,web
|
10
|
-
Platform: UNKNOWN
|
11
9
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
12
10
|
Classifier: Programming Language :: Python
|
13
11
|
Classifier: Framework :: Pyramid
|
@@ -15,8 +13,116 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
15
13
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
16
14
|
Requires-Python: >=3.7
|
17
15
|
Description-Content-Type: text/x-rst
|
18
|
-
Provides-Extra: dev
|
19
16
|
License-File: LICENSE.txt
|
17
|
+
Requires-Dist: alembic==1.6.0
|
18
|
+
Requires-Dist: Beaker==1.11.0
|
19
|
+
Requires-Dist: Chameleon==3.9.0
|
20
|
+
Requires-Dist: colander==1.8.3
|
21
|
+
Requires-Dist: ColanderAlchemy
|
22
|
+
Requires-Dist: Cython==0.29.14
|
23
|
+
Requires-Dist: deform==2.0.14
|
24
|
+
Requires-Dist: deform_extensions==0.9
|
25
|
+
Requires-Dist: docopt==0.5.0
|
26
|
+
Requires-Dist: caerp_base==2024.0.1
|
27
|
+
Requires-Dist: caerp_celery==2024.2.5
|
28
|
+
Requires-Dist: caerp_payment==2024.0.10
|
29
|
+
Requires-Dist: caerp_sign_pdf==2024.2.1
|
30
|
+
Requires-Dist: factur-x==2.3
|
31
|
+
Requires-Dist: fanstatic==1.1
|
32
|
+
Requires-Dist: filedepot==0.10.0
|
33
|
+
Requires-Dist: httpagentparser==1.9.5
|
34
|
+
Requires-Dist: setuptools==57.4.0
|
35
|
+
Requires-Dist: nh3==0.2.14
|
36
|
+
Requires-Dist: html5lib==1.1
|
37
|
+
Requires-Dist: traitlets==4.3.3
|
38
|
+
Requires-Dist: ipython==7.16.0
|
39
|
+
Requires-Dist: jedi==0.17.2
|
40
|
+
Requires-Dist: js.bootstrap==3.3.1
|
41
|
+
Requires-Dist: js.chosen==0.9.14
|
42
|
+
Requires-Dist: js.deform==2.0.14
|
43
|
+
Requires-Dist: js.jquery==1.9.1
|
44
|
+
Requires-Dist: js.jquery-form==3.09
|
45
|
+
Requires-Dist: js.jquery-maskedinput==1.3.1
|
46
|
+
Requires-Dist: js.jquery-maskmoney==3.0.2
|
47
|
+
Requires-Dist: js.jquery_sortable==0.9.12
|
48
|
+
Requires-Dist: js.jquery-timepicker-addon==1.3-1
|
49
|
+
Requires-Dist: js.jqueryui==1.10.3
|
50
|
+
Requires-Dist: js.tinymce==4.1.5
|
51
|
+
Requires-Dist: Mako==1.1.4
|
52
|
+
Requires-Dist: mysqlclient==2.0.3
|
53
|
+
Requires-Dist: openpyxl==3.1.2
|
54
|
+
Requires-Dist: PasteDeploy==2.1.1
|
55
|
+
Requires-Dist: peppercorn==0.6
|
56
|
+
Requires-Dist: pillow==9.5.0
|
57
|
+
Requires-Dist: pi-heif==0.12.0
|
58
|
+
Requires-Dist: plaster-pastedeploy==0.7
|
59
|
+
Requires-Dist: paginate==0.5.6
|
60
|
+
Requires-Dist: paginate-sqlalchemy==0.3.1
|
61
|
+
Requires-Dist: py3o.template==0.10.0
|
62
|
+
Requires-Dist: pyjwkest==1.3.6
|
63
|
+
Requires-Dist: pyparsing==3.0.9
|
64
|
+
Requires-Dist: pyramid==2.0
|
65
|
+
Requires-Dist: pyramid-beaker==0.8
|
66
|
+
Requires-Dist: pyramid-chameleon==0.3
|
67
|
+
Requires-Dist: pyramid-deform==0.2
|
68
|
+
Requires-Dist: pyramid_exclog==1.0
|
69
|
+
Requires-Dist: pyramid_ipython
|
70
|
+
Requires-Dist: pyramid-layout==1.0
|
71
|
+
Requires-Dist: pyramid-mailer==0.15.1
|
72
|
+
Requires-Dist: pyramid-mako==1.1.0
|
73
|
+
Requires-Dist: pyramid-methodrewrite==0.2.3
|
74
|
+
Requires-Dist: pyramid_services==2.2
|
75
|
+
Requires-Dist: pyramid-tm==2.4
|
76
|
+
Requires-Dist: pyramid_retry==2.1.1
|
77
|
+
Requires-Dist: requests==2.32.3
|
78
|
+
Requires-Dist: reportlab==3.1.44
|
79
|
+
Requires-Dist: repoze.lru==0.6
|
80
|
+
Requires-Dist: simplejson==3.3.1
|
81
|
+
Requires-Dist: sqla_inspect==0.7.6
|
82
|
+
Requires-Dist: SQLAlchemy==1.4.50
|
83
|
+
Requires-Dist: transaction==2.1.2
|
84
|
+
Requires-Dist: translationstring==1.2
|
85
|
+
Requires-Dist: typing_extensions
|
86
|
+
Requires-Dist: Unidecode==0.04.17
|
87
|
+
Requires-Dist: venusian==1.0
|
88
|
+
Requires-Dist: waitress==2.0.0
|
89
|
+
Requires-Dist: WebHelpers2==2.0
|
90
|
+
Requires-Dist: WebOb==1.8.7
|
91
|
+
Requires-Dist: zope.component==5.0
|
92
|
+
Requires-Dist: zope.deprecation==4.4.0
|
93
|
+
Requires-Dist: zope.event==4.6
|
94
|
+
Requires-Dist: zope.interface==5.5.2
|
95
|
+
Requires-Dist: zope.sqlalchemy==1.6
|
96
|
+
Requires-Dist: odfpy==1.3.6
|
97
|
+
Requires-Dist: pyexcel-io==0.5.18
|
98
|
+
Requires-Dist: WeasyPrint==52.5
|
99
|
+
Requires-Dist: tinycss2==1.0.2
|
100
|
+
Requires-Dist: cairocffi==1.1.0
|
101
|
+
Requires-Dist: pyvat==1.3.17
|
102
|
+
Requires-Dist: schwifty==2023.3.0
|
103
|
+
Provides-Extra: dev
|
104
|
+
Requires-Dist: ipdb==0.13.4; extra == "dev"
|
105
|
+
Requires-Dist: libsass==0.20.1; extra == "dev"
|
106
|
+
Requires-Dist: pyramid_debugtoolbar; extra == "dev"
|
107
|
+
Requires-Dist: black==22.3.0; extra == "dev"
|
108
|
+
Requires-Dist: flake8; extra == "dev"
|
109
|
+
Requires-Dist: boussole==2.0; extra == "dev"
|
110
|
+
Requires-Dist: pytest<7.0,>=6.0.2; extra == "dev"
|
111
|
+
Requires-Dist: freezegun<1.1,>=1.0.0; extra == "dev"
|
112
|
+
Requires-Dist: Faker<5.0,>=4.1.3; extra == "dev"
|
113
|
+
Requires-Dist: WebTest<2.1,>=2.0.35; extra == "dev"
|
114
|
+
Requires-Dist: pre-commit; extra == "dev"
|
115
|
+
Dynamic: author
|
116
|
+
Dynamic: author-email
|
117
|
+
Dynamic: classifier
|
118
|
+
Dynamic: description
|
119
|
+
Dynamic: description-content-type
|
120
|
+
Dynamic: home-page
|
121
|
+
Dynamic: keywords
|
122
|
+
Dynamic: provides-extra
|
123
|
+
Dynamic: requires-dist
|
124
|
+
Dynamic: requires-python
|
125
|
+
Dynamic: summary
|
20
126
|
|
21
127
|
==========
|
22
128
|
CAERP
|
@@ -438,5 +544,3 @@ https://doc.endi.coop
|
|
438
544
|
|
439
545
|
|
440
546
|
:Ce projet est testé avec: `BrowserStack <https://www.browserstack.com/>`_
|
441
|
-
|
442
|
-
|
@@ -0,0 +1,55 @@
|
|
1
|
+
"""2025.1.1 : Droits d'accès aux états de gestion des enseignes
|
2
|
+
|
3
|
+
Create Date: 2025-01-16 16:26:35.282952
|
4
|
+
|
5
|
+
"""
|
6
|
+
|
7
|
+
# revision identifiers, used by Alembic.
|
8
|
+
|
9
|
+
# Revision ID:
|
10
|
+
revision = "b987d67518eb"
|
11
|
+
|
12
|
+
# Revises (previous revision or revisions):
|
13
|
+
down_revision = "820a37d9c692"
|
14
|
+
|
15
|
+
from alembic import op
|
16
|
+
import sqlalchemy as sa
|
17
|
+
|
18
|
+
from caerp.models.populate import populate_access_rights
|
19
|
+
|
20
|
+
|
21
|
+
def migrate_datas():
|
22
|
+
from zope.sqlalchemy import mark_changed
|
23
|
+
from caerp_base.models.base import DBSESSION
|
24
|
+
from caerp.models.user.group import Group
|
25
|
+
from caerp.models.user.access_right import AccessRight
|
26
|
+
|
27
|
+
session = DBSESSION()
|
28
|
+
|
29
|
+
# On crée le nouvel access right dans la bdd
|
30
|
+
populate_access_rights(session)
|
31
|
+
session.flush()
|
32
|
+
|
33
|
+
new_access_right = session.execute(
|
34
|
+
sa.select(AccessRight).filter(
|
35
|
+
AccessRight.name == "global_company_access_accounting"
|
36
|
+
)
|
37
|
+
).scalar_one()
|
38
|
+
|
39
|
+
for group in session.execute(
|
40
|
+
sa.select(Group).filter(
|
41
|
+
Group.access_rights.any(AccessRight.name == "global_company_supervisor")
|
42
|
+
)
|
43
|
+
).scalars():
|
44
|
+
group.access_rights.append(new_access_right)
|
45
|
+
session.merge(group)
|
46
|
+
mark_changed(session)
|
47
|
+
session.flush()
|
48
|
+
|
49
|
+
|
50
|
+
def upgrade():
|
51
|
+
migrate_datas()
|
52
|
+
|
53
|
+
|
54
|
+
def downgrade():
|
55
|
+
pass
|
@@ -187,6 +187,7 @@ ACCESS_RIGHTS = {
|
|
187
187
|
PERMISSIONS["global.list_invoices"],
|
188
188
|
PERMISSIONS["global.validate_invoice"],
|
189
189
|
PERMISSIONS["global.access_ea"],
|
190
|
+
PERMISSIONS["global.company_view"],
|
190
191
|
PERMISSIONS["global.validate_file"],
|
191
192
|
],
|
192
193
|
"tags": ["factures", "validation", "ventes"],
|
@@ -201,6 +202,7 @@ ACCESS_RIGHTS = {
|
|
201
202
|
PERMISSIONS["global.list_invoices"],
|
202
203
|
PERMISSIONS["global.validate_cancelinvoice"],
|
203
204
|
PERMISSIONS["global.access_ea"],
|
205
|
+
PERMISSIONS["global.company_view"],
|
204
206
|
PERMISSIONS["global.validate_file"],
|
205
207
|
],
|
206
208
|
"tags": ["avoirs", "validation", "ventes"],
|
@@ -215,6 +217,7 @@ ACCESS_RIGHTS = {
|
|
215
217
|
PERMISSIONS["global.list_estimations"],
|
216
218
|
PERMISSIONS["global.validate_estimation"],
|
217
219
|
PERMISSIONS["global.access_ea"],
|
220
|
+
PERMISSIONS["global.company_view"],
|
218
221
|
PERMISSIONS["global.validate_file"],
|
219
222
|
],
|
220
223
|
"tags": ["devis", "validation", "ventes"],
|
@@ -228,6 +231,7 @@ ACCESS_RIGHTS = {
|
|
228
231
|
"global_permissions": [
|
229
232
|
PERMISSIONS["global.list_supplier_invoices"],
|
230
233
|
PERMISSIONS["global.validate_supplier_invoice"],
|
234
|
+
PERMISSIONS["global.company_view"],
|
231
235
|
PERMISSIONS["global.access_ea"],
|
232
236
|
],
|
233
237
|
"tags": [
|
@@ -245,6 +249,7 @@ ACCESS_RIGHTS = {
|
|
245
249
|
"global_permissions": [
|
246
250
|
PERMISSIONS["global.list_supplier_orders"],
|
247
251
|
PERMISSIONS["global.validate_supplier_order"],
|
252
|
+
PERMISSIONS["global.company_view"],
|
248
253
|
PERMISSIONS["global.access_ea"],
|
249
254
|
],
|
250
255
|
"tags": ["commandes fournisseurs", "validation", "achats"],
|
@@ -258,6 +263,7 @@ ACCESS_RIGHTS = {
|
|
258
263
|
"global_permissions": [
|
259
264
|
PERMISSIONS["global.list_expenses"],
|
260
265
|
PERMISSIONS["global.validate_expensesheet"],
|
266
|
+
PERMISSIONS["global.company_view"],
|
261
267
|
PERMISSIONS["global.access_ea"],
|
262
268
|
],
|
263
269
|
"tags": [
|
@@ -293,7 +299,7 @@ ACCESS_RIGHTS = {
|
|
293
299
|
"name": "global_create_company",
|
294
300
|
"global_permissions": [
|
295
301
|
PERMISSIONS["global.create_company"],
|
296
|
-
PERMISSIONS["global.
|
302
|
+
PERMISSIONS["global.company_view"],
|
297
303
|
PERMISSIONS["global.access_ea"],
|
298
304
|
],
|
299
305
|
"tags": ["enseignes", "gestion"],
|
@@ -301,17 +307,34 @@ ACCESS_RIGHTS = {
|
|
301
307
|
"category": CATEGORIES["Général"],
|
302
308
|
},
|
303
309
|
"global_company_supervisor": {
|
304
|
-
"label": "
|
305
|
-
"description": "
|
310
|
+
"label": "Accéder aux informations commerciales des enseignes",
|
311
|
+
"description": "Accéder aux informations commerciales des enseignes.",
|
306
312
|
"name": "global_company_supervisor",
|
307
313
|
"global_permissions": [
|
308
|
-
PERMISSIONS["global.
|
314
|
+
PERMISSIONS["global.company_view"],
|
309
315
|
PERMISSIONS["global.access_ea"],
|
310
316
|
],
|
311
317
|
"tags": ["enseignes", "consultation"],
|
312
318
|
"account_type": "equipe_appui",
|
313
319
|
"category": CATEGORIES["Gestion commerciale"],
|
314
320
|
},
|
321
|
+
"global_company_access_accounting": {
|
322
|
+
"label": "Accéder aux informations comptables des enseignes",
|
323
|
+
"description": (
|
324
|
+
"Accéder aux états de gestion des enseignes (Compte de résultat, états de trésorerie) "
|
325
|
+
"ainsi qu'au bulletin de salaire. "
|
326
|
+
),
|
327
|
+
"name": "global_company_access_accounting",
|
328
|
+
"tags": ["enseignes", "consultation", "comptabilité"],
|
329
|
+
"account_type": "equipe_appui",
|
330
|
+
"category": CATEGORIES["Comptabilité"],
|
331
|
+
"global_permissions": [
|
332
|
+
PERMISSIONS["global.company_view_accounting"],
|
333
|
+
PERMISSIONS["global.company_view_salarysheet"],
|
334
|
+
PERMISSIONS["global.company_view"],
|
335
|
+
PERMISSIONS["global.access_ea"],
|
336
|
+
],
|
337
|
+
},
|
315
338
|
"global_record_payment_invoice": {
|
316
339
|
"label": "Saisir des encaissements",
|
317
340
|
"description": "Saisir les encaissements. ",
|
@@ -365,7 +388,7 @@ ACCESS_RIGHTS = {
|
|
365
388
|
"name": "global_accountant",
|
366
389
|
"global_permissions": [
|
367
390
|
PERMISSIONS["global.manage_accounting"],
|
368
|
-
PERMISSIONS["global.
|
391
|
+
PERMISSIONS["global.company_view"],
|
369
392
|
PERMISSIONS["global.generate_accounting_measures"],
|
370
393
|
PERMISSIONS["global.access_ea"],
|
371
394
|
],
|
@@ -3,7 +3,9 @@ PERMISSIONS = {
|
|
3
3
|
"global.superadmin": "global.superadmin",
|
4
4
|
"global.manage_competence": "global.manage_competence",
|
5
5
|
"global.manage_accounting": "global.manage_accounting",
|
6
|
-
"global.
|
6
|
+
"global.company_view": "global.company_view",
|
7
|
+
"global.company_view_accounting": "global.company_view_accounting",
|
8
|
+
"global.company_view_salarysheet": "global.company_view_salarysheet",
|
7
9
|
"global.create_user": "global.create_user",
|
8
10
|
"global.list_estimations": "global.list_estimations",
|
9
11
|
"global.validate_estimation": "global.validate_estimation",
|
@@ -53,6 +55,8 @@ PERMISSIONS = {
|
|
53
55
|
"global.config_sap": "global.config_sap",
|
54
56
|
"global.view_sap": "global.view_sap",
|
55
57
|
"company.view": "company.view",
|
58
|
+
"company.view_accounting": "company.view_accounting",
|
59
|
+
"company.view_salarysheet": "company.view_salarysheet",
|
56
60
|
"context.view_file": "context.view_file",
|
57
61
|
"context.add_file": "context.add_file",
|
58
62
|
"context.edit_file": "context.edit_file",
|
@@ -37,6 +37,7 @@ PREDEFINED_GROUPS = (
|
|
37
37
|
ACCESS_RIGHTS["global_record_payment_supplier_invoice"],
|
38
38
|
ACCESS_RIGHTS["global_record_payment_expensesheet"],
|
39
39
|
ACCESS_RIGHTS["global_company_supervisor"],
|
40
|
+
ACCESS_RIGHTS["global_company_access_accounting"],
|
40
41
|
ACCESS_RIGHTS["global_supervisor_salary"],
|
41
42
|
],
|
42
43
|
"editable": True,
|
@@ -29,7 +29,9 @@ class BaseDataQuery(BaseView):
|
|
29
29
|
super().__init__(*args, **kwargs)
|
30
30
|
self.default_dates()
|
31
31
|
|
32
|
-
def set_dates(
|
32
|
+
def set_dates(
|
33
|
+
self, start: Union[date, str, None] = None, end: Union[date, str, None] = None
|
34
|
+
):
|
33
35
|
"""
|
34
36
|
Définit les dates de début et de fin de la requête si nécessaire
|
35
37
|
|
@@ -0,0 +1,158 @@
|
|
1
|
+
import logging
|
2
|
+
|
3
|
+
from caerp.compute.math_utils import integer_to_amount
|
4
|
+
from caerp.dataqueries.base import BaseDataQuery
|
5
|
+
from caerp.services.business_bpf import (
|
6
|
+
get_training_businesses_with_invoices_query,
|
7
|
+
get_business_bpf_data_query,
|
8
|
+
get_training_goal,
|
9
|
+
)
|
10
|
+
from caerp.utils.dataqueries import dataquery_class
|
11
|
+
from caerp.utils.strings import boolean_to_string
|
12
|
+
|
13
|
+
logger = logging.getLogger(__name__)
|
14
|
+
|
15
|
+
|
16
|
+
@dataquery_class()
|
17
|
+
class BusinessBPFCheckQuery(BaseDataQuery):
|
18
|
+
"""
|
19
|
+
Data query demandée par Suite 126.
|
20
|
+
|
21
|
+
TODO : Restreindre le filtre sur une année donnée.
|
22
|
+
Aujourd'hui on prend l'année de la date de départ comme référence,
|
23
|
+
ce qui peut induire l'utilisateur en erreur (on n'export qu'une année
|
24
|
+
alors qu'il peut en sélectionner deux).
|
25
|
+
|
26
|
+
Liste des affaires de formation sur une année donnée :
|
27
|
+
"Enseigne",
|
28
|
+
"Nom de l'affaire",
|
29
|
+
"Type d'affaire",
|
30
|
+
"Client",
|
31
|
+
"Année fiscale",
|
32
|
+
"Liste des numéros de factures/avoirs",
|
33
|
+
"Cette formation est-elle portée en direct par la CAE ?",
|
34
|
+
"Cette formation est-elle sous-traitée à un autre OF ?",
|
35
|
+
"Nombre de stagiaires",
|
36
|
+
"Nb. Heures total suivies par l'ensemble des stagiaires",
|
37
|
+
"Cette formation est-elle tout ou partie en distanciel ?",
|
38
|
+
"Objectif principal de formation",
|
39
|
+
"Spécialité de formation",
|
40
|
+
"Montant total des factures HT",
|
41
|
+
"Montant total des factures TTC",
|
42
|
+
|
43
|
+
Note sur les factures :
|
44
|
+
- On exporte les factures avoir rattachée à l'année fiscale que l'on exporte,
|
45
|
+
qu'elles soient renseignées comme source de revenu dans le BPF ou pas.
|
46
|
+
|
47
|
+
"""
|
48
|
+
|
49
|
+
name = "business_bpf_check"
|
50
|
+
label = "Liste des affaires liées au BPF"
|
51
|
+
description = """
|
52
|
+
<p>Éléments permettant le contrôle des données saisies dans le cadre de l'activité
|
53
|
+
de formation professionnelle.</p>
|
54
|
+
<p>La requête fonctionne sur année fiscale.</p>
|
55
|
+
"""
|
56
|
+
|
57
|
+
def default_dates(self):
|
58
|
+
self.start_date = self.date_tools.previous_year_start()
|
59
|
+
self.end_date = self.date_tools.previous_year_end()
|
60
|
+
|
61
|
+
def get_financial_year(self) -> int:
|
62
|
+
return self.start_date.year
|
63
|
+
|
64
|
+
def headers(self):
|
65
|
+
headers = [
|
66
|
+
"Enseigne",
|
67
|
+
"Nom de l'affaire",
|
68
|
+
"Type d'affaire",
|
69
|
+
"Client",
|
70
|
+
"Année fiscale",
|
71
|
+
"Liste des numéros de factures/avoirs",
|
72
|
+
"Cette formation est-elle portée en direct par la CAE ?",
|
73
|
+
"Cette formation est-elle sous-traitée à un autre OF ?",
|
74
|
+
"Nombre de stagiaires",
|
75
|
+
"Nb. Heures total suivies par l'ensemble des stagiaires",
|
76
|
+
"Cette formation est-elle tout ou partie en distanciel ?",
|
77
|
+
"Objectif principal de formation",
|
78
|
+
"Spécialité de formation",
|
79
|
+
"Montant total des factures HT",
|
80
|
+
"Montant total des factures TTC",
|
81
|
+
]
|
82
|
+
return headers
|
83
|
+
|
84
|
+
def data(self):
|
85
|
+
data = []
|
86
|
+
query = get_training_businesses_with_invoices_query(
|
87
|
+
self.start_date, self.end_date
|
88
|
+
)
|
89
|
+
financial_year = self.get_financial_year()
|
90
|
+
for business in self.request.dbsession.execute(query).scalars():
|
91
|
+
business_data = [
|
92
|
+
business.project.company.name,
|
93
|
+
business.name,
|
94
|
+
business.business_type.label,
|
95
|
+
business.get_customer().name,
|
96
|
+
]
|
97
|
+
business_data.append(str(financial_year))
|
98
|
+
|
99
|
+
bpf_data = (
|
100
|
+
self.request.dbsession.execute(
|
101
|
+
get_business_bpf_data_query(business.id, financial_year)
|
102
|
+
)
|
103
|
+
.scalars()
|
104
|
+
.first()
|
105
|
+
)
|
106
|
+
if business.invoices:
|
107
|
+
business_data.append(
|
108
|
+
"\n ".join(
|
109
|
+
invoice.official_number
|
110
|
+
for invoice in business.invoices
|
111
|
+
if invoice.financial_year == financial_year
|
112
|
+
)
|
113
|
+
)
|
114
|
+
else:
|
115
|
+
business_data.append("")
|
116
|
+
|
117
|
+
if bpf_data:
|
118
|
+
logger.debug(f"Found BPF data for {business.id} in {financial_year}")
|
119
|
+
logger.debug(f"Data: {bpf_data}")
|
120
|
+
goal = get_training_goal(financial_year, bpf_data)
|
121
|
+
business_data.extend(
|
122
|
+
[
|
123
|
+
boolean_to_string(not bpf_data.is_subcontract),
|
124
|
+
boolean_to_string(not bpf_data.has_subcontract),
|
125
|
+
bpf_data.headcount if bpf_data.headcount else "",
|
126
|
+
bpf_data.total_hours if bpf_data.total_hours else "",
|
127
|
+
boolean_to_string(bpf_data.has_remote),
|
128
|
+
goal if goal else "",
|
129
|
+
bpf_data.training_speciality.label
|
130
|
+
if bpf_data.training_speciality
|
131
|
+
else "",
|
132
|
+
]
|
133
|
+
)
|
134
|
+
else:
|
135
|
+
business_data.extend([""] * 7)
|
136
|
+
business_data.append(
|
137
|
+
integer_to_amount(
|
138
|
+
sum(
|
139
|
+
invoice.ht
|
140
|
+
for invoice in business.invoices
|
141
|
+
if invoice.financial_year == financial_year
|
142
|
+
),
|
143
|
+
5,
|
144
|
+
)
|
145
|
+
)
|
146
|
+
business_data.append(
|
147
|
+
integer_to_amount(
|
148
|
+
sum(
|
149
|
+
invoice.ttc
|
150
|
+
for invoice in business.invoices
|
151
|
+
if invoice.financial_year == financial_year
|
152
|
+
),
|
153
|
+
5,
|
154
|
+
)
|
155
|
+
)
|
156
|
+
|
157
|
+
data.append(business_data)
|
158
|
+
return data
|
@@ -236,13 +236,13 @@ issuer_filter_node_factory = forms.mk_filter_node_factory(
|
|
236
236
|
antenne_filter_node_factory = forms.mk_filter_node_factory(
|
237
237
|
antenne_node,
|
238
238
|
empty_filter_msg="Toutes",
|
239
|
-
title="Antenne de rattachement
|
239
|
+
title="Antenne de rattachement",
|
240
240
|
)
|
241
241
|
|
242
242
|
follower_filter_node_factory = forms.mk_filter_node_factory(
|
243
243
|
follower_node,
|
244
244
|
empty_filter_msg="Tous",
|
245
|
-
title="Accompagnateur
|
245
|
+
title="Accompagnateur",
|
246
246
|
)
|
247
247
|
|
248
248
|
conseiller_choice_node = forms.mk_choice_node_factory(
|
@@ -152,10 +152,8 @@ def get_list_schema(admin: bool = False):
|
|
152
152
|
validator=deferred_company_datas_validator,
|
153
153
|
),
|
154
154
|
)
|
155
|
+
schema.add_before("items_per_page", antenne_filter_node_factory(name="antenne_id"))
|
155
156
|
if admin:
|
156
|
-
schema.add_before(
|
157
|
-
"items_per_page", antenne_filter_node_factory(name="antenne_id")
|
158
|
-
)
|
159
157
|
schema.add_before(
|
160
158
|
"items_per_page", follower_filter_node_factory(name="follower_id")
|
161
159
|
)
|
@@ -423,10 +423,10 @@ def get_list_schema(
|
|
423
423
|
if user and include_open:
|
424
424
|
if is_current_user:
|
425
425
|
label = "Uniquement les ateliers où je suis inscrit"
|
426
|
-
default =
|
426
|
+
default = False
|
427
427
|
else:
|
428
428
|
label = "Uniquement les ateliers où l’utilisateur est inscrit"
|
429
|
-
default =
|
429
|
+
default = False
|
430
430
|
only_subscribed_node = colander.SchemaNode(
|
431
431
|
colander.Boolean(),
|
432
432
|
name="onlysubscribed",
|
@@ -1,14 +1,15 @@
|
|
1
|
+
import datetime
|
2
|
+
|
1
3
|
from paginate_sqlalchemy import SqlalchemyOrmPage
|
2
4
|
from sqlalchemy import desc
|
5
|
+
|
6
|
+
from caerp import resources
|
3
7
|
from caerp.models.activity import (
|
4
8
|
Event,
|
5
9
|
Attendance,
|
6
10
|
Activity,
|
7
11
|
)
|
8
|
-
from caerp.models.workshop import
|
9
|
-
Timeslot,
|
10
|
-
)
|
11
|
-
from caerp import resources
|
12
|
+
from caerp.models.workshop import Timeslot
|
12
13
|
from caerp.panels.company_index import utils
|
13
14
|
|
14
15
|
|
@@ -22,6 +23,7 @@ def _user_events_query(user_ids):
|
|
22
23
|
query = Event.query().with_polymorphic([Timeslot, Activity])
|
23
24
|
query = query.filter(Event.type_.in_(["timeslot", "activity"]))
|
24
25
|
query = query.filter(Event.attendances.any(Attendance.account_id.in_(user_ids)))
|
26
|
+
query = query.filter(Event.datetime >= datetime.datetime.now())
|
25
27
|
query = query.order_by(desc(Event.datetime))
|
26
28
|
return query
|
27
29
|
|
@@ -36,10 +38,10 @@ def coming_events_panel(context, request):
|
|
36
38
|
current_user = request.identity
|
37
39
|
if current_user in context.employees:
|
38
40
|
query = _user_events_query(request.identity.id)
|
39
|
-
title = "Mes
|
41
|
+
title = "Mes événements à venir"
|
40
42
|
else:
|
41
43
|
query = _user_events_query([u.id for u in context.employees])
|
42
|
-
title = "
|
44
|
+
title = "Prochains événements de l'enseigne"
|
43
45
|
|
44
46
|
page_nb = utils.get_page_number(request, "events_page_nb")
|
45
47
|
items_per_page = utils.get_items_per_page(request, "events_per_page")
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import datetime
|
2
|
+
|
3
|
+
from paginate_sqlalchemy import SqlalchemyOrmPage
|
4
|
+
from sqlalchemy import or_
|
5
|
+
|
6
|
+
from caerp import resources
|
7
|
+
from caerp.models.activity import Attendance
|
8
|
+
from caerp.models.workshop import Workshop
|
9
|
+
from caerp.panels.company_index import utils
|
10
|
+
|
11
|
+
|
12
|
+
def coming_workshops_panel(context, request):
|
13
|
+
"""
|
14
|
+
Return the list of the upcoming CAE workshops
|
15
|
+
where the user is or can ben registered
|
16
|
+
"""
|
17
|
+
if not request.is_xhr:
|
18
|
+
resources.event_list_js.need()
|
19
|
+
|
20
|
+
title = "Prochains ateliers de la CAE"
|
21
|
+
current_user = request.identity
|
22
|
+
|
23
|
+
query = Workshop.query()
|
24
|
+
query = query.filter(Workshop.datetime >= datetime.datetime.now())
|
25
|
+
query = query.filter(
|
26
|
+
or_(
|
27
|
+
Workshop.attendances.any(Attendance.account_id == current_user.id),
|
28
|
+
Workshop.signup_mode == "open",
|
29
|
+
)
|
30
|
+
)
|
31
|
+
query = query.order_by(Workshop.datetime)
|
32
|
+
|
33
|
+
page_nb = utils.get_page_number(request, "workshops_page_nb")
|
34
|
+
items_per_page = utils.get_items_per_page(request, "workshops_per_page")
|
35
|
+
|
36
|
+
paginated_workshops = SqlalchemyOrmPage(
|
37
|
+
query,
|
38
|
+
page_nb,
|
39
|
+
items_per_page=items_per_page,
|
40
|
+
url_maker=utils.make_get_list_url("workshops"),
|
41
|
+
)
|
42
|
+
|
43
|
+
result_data = {"workshops": paginated_workshops, "title": title}
|
44
|
+
return result_data
|
45
|
+
|
46
|
+
|
47
|
+
def includeme(config):
|
48
|
+
config.add_panel(
|
49
|
+
coming_workshops_panel,
|
50
|
+
"cae_coming_workshops",
|
51
|
+
renderer="panels/company_index/coming_workshops.mako",
|
52
|
+
)
|
@@ -78,7 +78,7 @@ def get_companies(request, company=None):
|
|
78
78
|
:rtype: list
|
79
79
|
"""
|
80
80
|
companies = []
|
81
|
-
if request.has_permission(PERMISSIONS["global.
|
81
|
+
if request.has_permission(PERMISSIONS["global.company_view"]):
|
82
82
|
if company is not None:
|
83
83
|
companies = (
|
84
84
|
Company.label_datas_query(request)
|
@@ -137,7 +137,7 @@ def company_choice(request, companies, current_company=None):
|
|
137
137
|
url = request.current_route_path(id=company_datas.id)
|
138
138
|
else:
|
139
139
|
url = request.route_path(COMPANY_ROUTE, id=company_datas.id)
|
140
|
-
if request.has_permission(PERMISSIONS["global.
|
140
|
+
if request.has_permission(PERMISSIONS["global.company_view"]):
|
141
141
|
label = Company.format_label_from_datas(
|
142
142
|
company_datas, with_select_search_datas=True
|
143
143
|
)
|
@@ -216,7 +216,7 @@ def submenu_panel(context, request):
|
|
216
216
|
return {}
|
217
217
|
|
218
218
|
# There are no submenus for non admins
|
219
|
-
if not request.has_permission(PERMISSIONS["global.
|
219
|
+
if not request.has_permission(PERMISSIONS["global.access_ea"]):
|
220
220
|
return {}
|
221
221
|
|
222
222
|
current_company = get_current_company(request, submenu=True)
|