├── .editorconfig ├── .eslintrc.yml ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── doc.yml │ ├── pre-commit.yml │ └── test.yaml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .prettierrc.yml ├── .pylintrc ├── .pylintrc-mandatory ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ └── debug.js ├── _templates │ └── layout.html ├── architecture.md ├── changelog.rst ├── code_of_conduct.md ├── conf.py ├── configuring.rst ├── contributing.md ├── deduplicator │ ├── gettingstarted.md │ ├── images │ │ └── kibana_query_ui.png │ ├── index.md │ └── install.md ├── disbursement │ └── index.md ├── features.md ├── images │ ├── architecture_core.png │ ├── architecture_ecosystem_1.png │ ├── architecture_ecosystem_2.png │ └── openg2p_core.jpg ├── index.rst ├── installing.md ├── make.bat ├── programs │ ├── concepts.md │ ├── cycle_manager.rst │ ├── dashboards.md │ ├── deduplication_manager.md │ ├── eligibility_manager.rst │ ├── entitlement_manager.rst │ ├── images │ │ ├── openg2p_overview.png │ │ └── programs_dashboard.png │ ├── notification_manager.rst │ └── program_manager.rst ├── registrants │ ├── api.md │ ├── concepts.md │ ├── exporting.md │ ├── images │ │ ├── export_1.png │ │ ├── export_2.png │ │ ├── export_3.png │ │ ├── export_configure.png │ │ ├── export_to_import.png │ │ ├── group_list.png │ │ ├── group_membership.png │ │ ├── group_membership_type.png │ │ ├── group_ui.png │ │ ├── import_2.png │ │ ├── import_3.png │ │ ├── import_4.png │ │ ├── import_mapping.png │ │ ├── individual_list.png │ │ ├── indivividual_ui.png │ │ ├── registrant_ids.png │ │ ├── registrant_relation_config.png │ │ └── registrant_relations.png │ └── importing.md ├── requirements.txt ├── roadmap.md ├── supported-browsers.csv └── using │ ├── audit_logs.md │ ├── managing_programs.md │ └── managing_users.md ├── g2p_additional_data ├── README.md ├── __init__.py ├── __manifest__.py ├── i18n │ └── g2p_additional_data.pot ├── models │ ├── __init__.py │ ├── additional_data.py │ ├── additional_data_tags.py │ ├── datasource.py │ ├── registrant.py │ └── registrant_additional_data.py ├── security │ └── ir.model.access.csv └── views │ ├── additional_data.xml │ ├── additional_data_tags.xml │ ├── datasource.xml │ ├── group_views.xml │ ├── individual_views.xml │ └── registrant_additional_data.xml ├── g2p_custom_field ├── CHANGELOG.md ├── README.md ├── __init__.py ├── __manifest__.py ├── i18n │ └── g2p_custom_field.pot └── models │ ├── __init__.py │ └── cus_partner.py ├── g2p_idpass ├── __init__.py ├── __manifest__.py ├── data │ └── id_pass.xml ├── i18n │ └── g2p_idpass.pot ├── models │ ├── __init__.py │ ├── id_pass.py │ └── registrant.py ├── security │ └── ir.model.access.csv └── views │ ├── id_pass_view.xml │ └── registrant.xml ├── g2p_importer_odk ├── README.md ├── __init__.py ├── __manifest__.py ├── components │ ├── __init__.py │ ├── additional_data_importer.py │ ├── additional_data_mapper.py │ ├── odk_client.py │ ├── res_partner_data_mapper.py │ └── res_partner_group_data_importer.py ├── data │ ├── import_backend.xml │ ├── import_recordset.xml │ ├── import_source.xml │ └── import_type.xml ├── i18n │ └── g2p_importer_odk.pot ├── models │ ├── __init__.py │ ├── source_mixin.py │ └── source_odk.py ├── security │ └── ir.model.access.csv └── views │ ├── menuitems.xml │ └── source_views.xml ├── g2p_programs ├── CHANGELOG.md ├── README.md ├── __init__.py ├── __manifest__.py ├── data │ ├── group_membership_kinds.xml │ └── sequences.xml ├── i18n │ └── g2p_programs.pot ├── models │ ├── __init__.py │ ├── accounting │ │ ├── __init__.py │ │ ├── account_journal.py │ │ ├── fund_management.py │ │ └── fund_report.py │ ├── constants.py │ ├── cycle.py │ ├── cycle_membership.py │ ├── duplicate.py │ ├── entitlement.py │ ├── job_related_mixin.py │ ├── managers │ │ ├── __init__.py │ │ ├── base_manager.py │ │ ├── cycle_manager.py │ │ ├── deduplication_manager.py │ │ ├── eligibility_manager.py │ │ ├── entitlement_manager.py │ │ ├── manager_mixin.py │ │ ├── notification_manager.py │ │ ├── program_manager.py │ │ └── source_mixin.py │ ├── program_config.py │ ├── program_membership.py │ ├── programs.py │ └── registrant.py ├── report │ ├── report_format.xml │ └── voucher_card.xml ├── security │ ├── ir.model.access.csv │ └── program_security.xml ├── static │ └── src │ │ ├── js │ │ └── create_program.js │ │ └── xml │ │ └── create_program_template.xml ├── views │ ├── accounting │ │ ├── account_journal_config_view.xml │ │ ├── account_journal_view.xml │ │ ├── fund_management_view.xml │ │ └── fund_report_view.xml │ ├── cycle_membership_view.xml │ ├── cycle_view.xml │ ├── duplicate_view.xml │ ├── entitlement_view.xml │ ├── main_view.xml │ ├── managers │ │ ├── cycle_manager_view.xml │ │ ├── deduplication_manager_view.xml │ │ ├── eligibility_manager_view.xml │ │ ├── entitlement_manager_view.xml │ │ ├── notification_manager_view.xml │ │ └── program_manager_view.xml │ ├── program_config_view.xml │ ├── program_membership_view.xml │ ├── programs_view.xml │ └── registrant_view.xml └── wizard │ ├── __init__.py │ ├── assign_to_program_wizard.py │ ├── assign_to_program_wizard.xml │ ├── create_program_wizard.py │ ├── create_program_wizard.xml │ ├── multi_entitlement_approval_wizard.py │ └── multi_entitlement_approval_wizard.xml ├── g2p_registrant ├── .gitignore ├── CHANGELOG.md ├── README.md ├── __init__.py ├── __manifest__.py ├── data │ ├── group_kinds.xml │ └── group_membership_kinds.xml ├── i18n │ └── fr_FR.po ├── models │ ├── __init__.py │ ├── group.py │ ├── group_membership.py │ ├── individual.py │ ├── phone_number.py │ ├── reg_id.py │ ├── reg_relationship.py │ └── registrant.py ├── security │ ├── ir.model.access.csv │ └── newlogic_security.xml ├── static │ └── src │ │ └── img │ │ └── icons │ │ └── contacts.png ├── views │ ├── group_membership_kinds_view.xml │ ├── group_membership_view.xml │ ├── groups_view.xml │ ├── id_types_view.xml │ ├── individuals_view.xml │ ├── main_view.xml │ ├── membership_kinds_view.xml │ ├── phone_number_view.xml │ ├── reg_id_view.xml │ ├── reg_relationship_view.xml │ └── relationships_view.xml └── wizard │ ├── __init__.py │ ├── disable_registrant.py │ └── disable_registrant_view.xml ├── g2p_registrant_rule ├── CHANGELOG.md ├── README.md ├── __init__.py ├── __manifest__.py └── security │ └── registrant_rule.xml └── newlogic_g2p_overview.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/_static/debug.js -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/configuring.rst -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/deduplicator/gettingstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/deduplicator/gettingstarted.md -------------------------------------------------------------------------------- /docs/deduplicator/images/kibana_query_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/deduplicator/images/kibana_query_ui.png -------------------------------------------------------------------------------- /docs/deduplicator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/deduplicator/index.md -------------------------------------------------------------------------------- /docs/deduplicator/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/deduplicator/install.md -------------------------------------------------------------------------------- /docs/disbursement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/disbursement/index.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/images/architecture_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/images/architecture_core.png -------------------------------------------------------------------------------- /docs/images/architecture_ecosystem_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/images/architecture_ecosystem_1.png -------------------------------------------------------------------------------- /docs/images/architecture_ecosystem_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/images/architecture_ecosystem_2.png -------------------------------------------------------------------------------- /docs/images/openg2p_core.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/images/openg2p_core.jpg -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/installing.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/programs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/concepts.md -------------------------------------------------------------------------------- /docs/programs/cycle_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/cycle_manager.rst -------------------------------------------------------------------------------- /docs/programs/dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/dashboards.md -------------------------------------------------------------------------------- /docs/programs/deduplication_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/deduplication_manager.md -------------------------------------------------------------------------------- /docs/programs/eligibility_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/eligibility_manager.rst -------------------------------------------------------------------------------- /docs/programs/entitlement_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/entitlement_manager.rst -------------------------------------------------------------------------------- /docs/programs/images/openg2p_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/images/openg2p_overview.png -------------------------------------------------------------------------------- /docs/programs/images/programs_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/images/programs_dashboard.png -------------------------------------------------------------------------------- /docs/programs/notification_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/notification_manager.rst -------------------------------------------------------------------------------- /docs/programs/program_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/programs/program_manager.rst -------------------------------------------------------------------------------- /docs/registrants/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/api.md -------------------------------------------------------------------------------- /docs/registrants/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/concepts.md -------------------------------------------------------------------------------- /docs/registrants/exporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/exporting.md -------------------------------------------------------------------------------- /docs/registrants/images/export_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/export_1.png -------------------------------------------------------------------------------- /docs/registrants/images/export_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/export_2.png -------------------------------------------------------------------------------- /docs/registrants/images/export_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/export_3.png -------------------------------------------------------------------------------- /docs/registrants/images/export_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/export_configure.png -------------------------------------------------------------------------------- /docs/registrants/images/export_to_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/export_to_import.png -------------------------------------------------------------------------------- /docs/registrants/images/group_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/group_list.png -------------------------------------------------------------------------------- /docs/registrants/images/group_membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/group_membership.png -------------------------------------------------------------------------------- /docs/registrants/images/group_membership_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/group_membership_type.png -------------------------------------------------------------------------------- /docs/registrants/images/group_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/group_ui.png -------------------------------------------------------------------------------- /docs/registrants/images/import_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/import_2.png -------------------------------------------------------------------------------- /docs/registrants/images/import_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/import_3.png -------------------------------------------------------------------------------- /docs/registrants/images/import_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/import_4.png -------------------------------------------------------------------------------- /docs/registrants/images/import_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/import_mapping.png -------------------------------------------------------------------------------- /docs/registrants/images/individual_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/individual_list.png -------------------------------------------------------------------------------- /docs/registrants/images/indivividual_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/indivividual_ui.png -------------------------------------------------------------------------------- /docs/registrants/images/registrant_ids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/registrant_ids.png -------------------------------------------------------------------------------- /docs/registrants/images/registrant_relation_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/registrant_relation_config.png -------------------------------------------------------------------------------- /docs/registrants/images/registrant_relations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/images/registrant_relations.png -------------------------------------------------------------------------------- /docs/registrants/importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/registrants/importing.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/supported-browsers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/supported-browsers.csv -------------------------------------------------------------------------------- /docs/using/audit_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/using/audit_logs.md -------------------------------------------------------------------------------- /docs/using/managing_programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/docs/using/managing_programs.md -------------------------------------------------------------------------------- /docs/using/managing_users.md: -------------------------------------------------------------------------------- 1 | # Managing Users 2 | -------------------------------------------------------------------------------- /g2p_additional_data/README.md: -------------------------------------------------------------------------------- 1 | # G2P Additional Data 2 | -------------------------------------------------------------------------------- /g2p_additional_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/__init__.py -------------------------------------------------------------------------------- /g2p_additional_data/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/__manifest__.py -------------------------------------------------------------------------------- /g2p_additional_data/i18n/g2p_additional_data.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/i18n/g2p_additional_data.pot -------------------------------------------------------------------------------- /g2p_additional_data/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/__init__.py -------------------------------------------------------------------------------- /g2p_additional_data/models/additional_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/additional_data.py -------------------------------------------------------------------------------- /g2p_additional_data/models/additional_data_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/additional_data_tags.py -------------------------------------------------------------------------------- /g2p_additional_data/models/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/datasource.py -------------------------------------------------------------------------------- /g2p_additional_data/models/registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/registrant.py -------------------------------------------------------------------------------- /g2p_additional_data/models/registrant_additional_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/models/registrant_additional_data.py -------------------------------------------------------------------------------- /g2p_additional_data/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_additional_data/views/additional_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/additional_data.xml -------------------------------------------------------------------------------- /g2p_additional_data/views/additional_data_tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/additional_data_tags.xml -------------------------------------------------------------------------------- /g2p_additional_data/views/datasource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/datasource.xml -------------------------------------------------------------------------------- /g2p_additional_data/views/group_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/group_views.xml -------------------------------------------------------------------------------- /g2p_additional_data/views/individual_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/individual_views.xml -------------------------------------------------------------------------------- /g2p_additional_data/views/registrant_additional_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_additional_data/views/registrant_additional_data.xml -------------------------------------------------------------------------------- /g2p_custom_field/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/CHANGELOG.md -------------------------------------------------------------------------------- /g2p_custom_field/README.md: -------------------------------------------------------------------------------- 1 | # G2P Custom Field 2 | -------------------------------------------------------------------------------- /g2p_custom_field/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/__init__.py -------------------------------------------------------------------------------- /g2p_custom_field/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/__manifest__.py -------------------------------------------------------------------------------- /g2p_custom_field/i18n/g2p_custom_field.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/i18n/g2p_custom_field.pot -------------------------------------------------------------------------------- /g2p_custom_field/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/models/__init__.py -------------------------------------------------------------------------------- /g2p_custom_field/models/cus_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_custom_field/models/cus_partner.py -------------------------------------------------------------------------------- /g2p_idpass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/__init__.py -------------------------------------------------------------------------------- /g2p_idpass/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/__manifest__.py -------------------------------------------------------------------------------- /g2p_idpass/data/id_pass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/data/id_pass.xml -------------------------------------------------------------------------------- /g2p_idpass/i18n/g2p_idpass.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/i18n/g2p_idpass.pot -------------------------------------------------------------------------------- /g2p_idpass/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/models/__init__.py -------------------------------------------------------------------------------- /g2p_idpass/models/id_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/models/id_pass.py -------------------------------------------------------------------------------- /g2p_idpass/models/registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/models/registrant.py -------------------------------------------------------------------------------- /g2p_idpass/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_idpass/views/id_pass_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/views/id_pass_view.xml -------------------------------------------------------------------------------- /g2p_idpass/views/registrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_idpass/views/registrant.xml -------------------------------------------------------------------------------- /g2p_importer_odk/README.md: -------------------------------------------------------------------------------- 1 | # ODK Import 2 | -------------------------------------------------------------------------------- /g2p_importer_odk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/__init__.py -------------------------------------------------------------------------------- /g2p_importer_odk/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/__manifest__.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/__init__.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/additional_data_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/additional_data_importer.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/additional_data_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/additional_data_mapper.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/odk_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/odk_client.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/res_partner_data_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/res_partner_data_mapper.py -------------------------------------------------------------------------------- /g2p_importer_odk/components/res_partner_group_data_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/components/res_partner_group_data_importer.py -------------------------------------------------------------------------------- /g2p_importer_odk/data/import_backend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/data/import_backend.xml -------------------------------------------------------------------------------- /g2p_importer_odk/data/import_recordset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/data/import_recordset.xml -------------------------------------------------------------------------------- /g2p_importer_odk/data/import_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/data/import_source.xml -------------------------------------------------------------------------------- /g2p_importer_odk/data/import_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/data/import_type.xml -------------------------------------------------------------------------------- /g2p_importer_odk/i18n/g2p_importer_odk.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/i18n/g2p_importer_odk.pot -------------------------------------------------------------------------------- /g2p_importer_odk/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/models/__init__.py -------------------------------------------------------------------------------- /g2p_importer_odk/models/source_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/models/source_mixin.py -------------------------------------------------------------------------------- /g2p_importer_odk/models/source_odk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/models/source_odk.py -------------------------------------------------------------------------------- /g2p_importer_odk/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_importer_odk/views/menuitems.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/views/menuitems.xml -------------------------------------------------------------------------------- /g2p_importer_odk/views/source_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_importer_odk/views/source_views.xml -------------------------------------------------------------------------------- /g2p_programs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/CHANGELOG.md -------------------------------------------------------------------------------- /g2p_programs/README.md: -------------------------------------------------------------------------------- 1 | # G2P Programs 2 | -------------------------------------------------------------------------------- /g2p_programs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/__init__.py -------------------------------------------------------------------------------- /g2p_programs/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/__manifest__.py -------------------------------------------------------------------------------- /g2p_programs/data/group_membership_kinds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/data/group_membership_kinds.xml -------------------------------------------------------------------------------- /g2p_programs/data/sequences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/data/sequences.xml -------------------------------------------------------------------------------- /g2p_programs/i18n/g2p_programs.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/i18n/g2p_programs.pot -------------------------------------------------------------------------------- /g2p_programs/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/__init__.py -------------------------------------------------------------------------------- /g2p_programs/models/accounting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/accounting/__init__.py -------------------------------------------------------------------------------- /g2p_programs/models/accounting/account_journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/accounting/account_journal.py -------------------------------------------------------------------------------- /g2p_programs/models/accounting/fund_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/accounting/fund_management.py -------------------------------------------------------------------------------- /g2p_programs/models/accounting/fund_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/accounting/fund_report.py -------------------------------------------------------------------------------- /g2p_programs/models/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/constants.py -------------------------------------------------------------------------------- /g2p_programs/models/cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/cycle.py -------------------------------------------------------------------------------- /g2p_programs/models/cycle_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/cycle_membership.py -------------------------------------------------------------------------------- /g2p_programs/models/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/duplicate.py -------------------------------------------------------------------------------- /g2p_programs/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/entitlement.py -------------------------------------------------------------------------------- /g2p_programs/models/job_related_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/job_related_mixin.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/__init__.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/base_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/base_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/cycle_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/cycle_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/deduplication_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/deduplication_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/eligibility_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/entitlement_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/manager_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/manager_mixin.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/notification_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/notification_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/program_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/program_manager.py -------------------------------------------------------------------------------- /g2p_programs/models/managers/source_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/managers/source_mixin.py -------------------------------------------------------------------------------- /g2p_programs/models/program_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/program_config.py -------------------------------------------------------------------------------- /g2p_programs/models/program_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/program_membership.py -------------------------------------------------------------------------------- /g2p_programs/models/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/programs.py -------------------------------------------------------------------------------- /g2p_programs/models/registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/models/registrant.py -------------------------------------------------------------------------------- /g2p_programs/report/report_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/report/report_format.xml -------------------------------------------------------------------------------- /g2p_programs/report/voucher_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/report/voucher_card.xml -------------------------------------------------------------------------------- /g2p_programs/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_programs/security/program_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/security/program_security.xml -------------------------------------------------------------------------------- /g2p_programs/static/src/js/create_program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/static/src/js/create_program.js -------------------------------------------------------------------------------- /g2p_programs/static/src/xml/create_program_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/static/src/xml/create_program_template.xml -------------------------------------------------------------------------------- /g2p_programs/views/accounting/account_journal_config_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/accounting/account_journal_config_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/accounting/account_journal_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/accounting/account_journal_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/accounting/fund_management_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/accounting/fund_management_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/accounting/fund_report_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/accounting/fund_report_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/cycle_membership_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/cycle_membership_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/cycle_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/cycle_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/duplicate_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/duplicate_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/entitlement_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/entitlement_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/main_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/cycle_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/cycle_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/deduplication_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/deduplication_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/eligibility_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/eligibility_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/entitlement_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/entitlement_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/notification_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/notification_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/managers/program_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/managers/program_manager_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/program_config_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/program_config_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/program_membership_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/program_membership_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/programs_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/programs_view.xml -------------------------------------------------------------------------------- /g2p_programs/views/registrant_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/views/registrant_view.xml -------------------------------------------------------------------------------- /g2p_programs/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/__init__.py -------------------------------------------------------------------------------- /g2p_programs/wizard/assign_to_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/assign_to_program_wizard.py -------------------------------------------------------------------------------- /g2p_programs/wizard/assign_to_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/assign_to_program_wizard.xml -------------------------------------------------------------------------------- /g2p_programs/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /g2p_programs/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /g2p_programs/wizard/multi_entitlement_approval_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/multi_entitlement_approval_wizard.py -------------------------------------------------------------------------------- /g2p_programs/wizard/multi_entitlement_approval_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_programs/wizard/multi_entitlement_approval_wizard.xml -------------------------------------------------------------------------------- /g2p_registrant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/.gitignore -------------------------------------------------------------------------------- /g2p_registrant/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/CHANGELOG.md -------------------------------------------------------------------------------- /g2p_registrant/README.md: -------------------------------------------------------------------------------- 1 | # Registrant 2 | -------------------------------------------------------------------------------- /g2p_registrant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/__init__.py -------------------------------------------------------------------------------- /g2p_registrant/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/__manifest__.py -------------------------------------------------------------------------------- /g2p_registrant/data/group_kinds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/data/group_kinds.xml -------------------------------------------------------------------------------- /g2p_registrant/data/group_membership_kinds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/data/group_membership_kinds.xml -------------------------------------------------------------------------------- /g2p_registrant/i18n/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/i18n/fr_FR.po -------------------------------------------------------------------------------- /g2p_registrant/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/__init__.py -------------------------------------------------------------------------------- /g2p_registrant/models/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/group.py -------------------------------------------------------------------------------- /g2p_registrant/models/group_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/group_membership.py -------------------------------------------------------------------------------- /g2p_registrant/models/individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/individual.py -------------------------------------------------------------------------------- /g2p_registrant/models/phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/phone_number.py -------------------------------------------------------------------------------- /g2p_registrant/models/reg_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/reg_id.py -------------------------------------------------------------------------------- /g2p_registrant/models/reg_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/reg_relationship.py -------------------------------------------------------------------------------- /g2p_registrant/models/registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/models/registrant.py -------------------------------------------------------------------------------- /g2p_registrant/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_registrant/security/newlogic_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/security/newlogic_security.xml -------------------------------------------------------------------------------- /g2p_registrant/static/src/img/icons/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/static/src/img/icons/contacts.png -------------------------------------------------------------------------------- /g2p_registrant/views/group_membership_kinds_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/group_membership_kinds_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/group_membership_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/group_membership_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/groups_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/groups_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/id_types_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/id_types_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/individuals_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/individuals_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/main_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/membership_kinds_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/membership_kinds_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/phone_number_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/phone_number_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/reg_id_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/reg_id_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/reg_relationship_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/reg_relationship_view.xml -------------------------------------------------------------------------------- /g2p_registrant/views/relationships_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/views/relationships_view.xml -------------------------------------------------------------------------------- /g2p_registrant/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/wizard/__init__.py -------------------------------------------------------------------------------- /g2p_registrant/wizard/disable_registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/wizard/disable_registrant.py -------------------------------------------------------------------------------- /g2p_registrant/wizard/disable_registrant_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant/wizard/disable_registrant_view.xml -------------------------------------------------------------------------------- /g2p_registrant_rule/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Format in CHANGELOG.md 2 | 3 | ## Version[0.01] - 2022-06-15 4 | 5 | - [START] First release 6 | -------------------------------------------------------------------------------- /g2p_registrant_rule/README.md: -------------------------------------------------------------------------------- 1 | # G2P Registrant Rule 2 | -------------------------------------------------------------------------------- /g2p_registrant_rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant_rule/__init__.py -------------------------------------------------------------------------------- /g2p_registrant_rule/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant_rule/__manifest__.py -------------------------------------------------------------------------------- /g2p_registrant_rule/security/registrant_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/g2p_registrant_rule/security/registrant_rule.xml -------------------------------------------------------------------------------- /newlogic_g2p_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlogic/newlogic-g2p/HEAD/newlogic_g2p_overview.png --------------------------------------------------------------------------------