├── .copier-answers.yml ├── .editorconfig ├── .eslintrc.yml ├── .flake8 ├── .github ├── auto_assign.yml ├── dependabot.yml └── workflows │ ├── auto-assign-pr.yml │ ├── auto-assign.yml │ ├── cla.yml │ ├── code-analysis.yml │ ├── pre-commit.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .prettierrc.yml ├── .pylintrc ├── .pylintrc-mandatory ├── COPYRIGHT ├── LICENSE ├── README.md ├── g2p_entitlement_cash ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── g2p_entitlement_cash.pot ├── models │ ├── __init__.py │ └── entitlement_manager.py ├── readme │ └── DESCRIPTION.rst ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ ├── test_create_program_wizard.py │ └── test_entitlement_manager.py ├── views │ └── entitlement_manager_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── license_header.txt ├── setup ├── .setuptools-odoo-make-default-ignore ├── README ├── _metapackage │ ├── VERSION.txt │ └── setup.py ├── g2p_entitlement_cash │ ├── odoo │ │ └── addons │ │ │ └── g2p_entitlement_cash │ └── setup.py ├── spp_auto_update_entitlements │ ├── odoo │ │ └── addons │ │ │ └── spp_auto_update_entitlements │ └── setup.py ├── spp_basic_cash_entitlement_spent │ ├── odoo │ │ └── addons │ │ │ └── spp_basic_cash_entitlement_spent │ └── setup.py ├── spp_dashboard │ ├── odoo │ │ └── addons │ │ │ └── spp_dashboard │ └── setup.py ├── spp_eligibility_sql │ ├── odoo │ │ └── addons │ │ │ └── spp_eligibility_sql │ └── setup.py ├── spp_eligibility_tags │ ├── odoo │ │ └── addons │ │ │ └── spp_eligibility_tags │ └── setup.py ├── spp_ent_trans │ ├── odoo │ │ └── addons │ │ │ └── spp_ent_trans │ └── setup.py ├── spp_entitlement_basket │ ├── odoo │ │ └── addons │ │ │ └── spp_entitlement_basket │ └── setup.py ├── spp_entitlement_in_kind │ ├── odoo │ │ └── addons │ │ │ └── spp_entitlement_in_kind │ └── setup.py ├── spp_exclusion_filter │ ├── odoo │ │ └── addons │ │ │ └── spp_exclusion_filter │ └── setup.py ├── spp_pos │ ├── odoo │ │ └── addons │ │ │ └── spp_pos │ └── setup.py ├── spp_program_id │ ├── odoo │ │ └── addons │ │ │ └── spp_program_id │ └── setup.py ├── spp_programs │ ├── odoo │ │ └── addons │ │ │ └── spp_programs │ └── setup.py ├── spp_programs_compliance_criteria │ ├── odoo │ │ └── addons │ │ │ └── spp_programs_compliance_criteria │ └── setup.py └── spp_programs_sp │ ├── odoo │ └── addons │ │ └── spp_programs_sp │ └── setup.py ├── spp_auto_update_entitlements ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── cycle.py │ └── entitlement.py ├── static │ └── description │ │ ├── icon.png │ │ └── index.html └── views │ ├── cycle_view.xml │ └── entitlements_view.xml ├── spp_basic_cash_entitlement_spent ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── spp_basic_cash_entitlement_spent.pot ├── models │ ├── __init__.py │ └── entitlement.py ├── readme │ └── DESCRIPTION.rst ├── static │ └── description │ │ └── index.html └── tests │ ├── __init__.py │ └── test_g2p_entitlement.py ├── spp_dashboard ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── main.py ├── data │ └── dashboard_templates.xml ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── spp_dashboard.pot ├── models │ ├── __init__.py │ ├── cycles.py │ ├── dashboard_block.py │ ├── dashboard_menu.py │ └── programs.py ├── readme │ └── DESCRIPTION.rst ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── js │ │ └── dynamic_dashboard.js └── views │ ├── cycles_view.xml │ ├── dashboard_block_view.xml │ ├── dashboard_menu_view.xml │ ├── main_view.xml │ └── programs_view.xml ├── spp_eligibility_sql ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── eligibility_manager.py │ └── programs.py ├── security │ └── ir.model.access.csv ├── tests │ ├── __init__.py │ └── test_create_program_wizard.py ├── views │ └── eligibility_manager_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── spp_eligibility_tags ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── spp_eligibility_tags.pot ├── models │ ├── __init__.py │ └── eligibility_manager.py ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ ├── test_create_program_wizard.py │ └── test_eligibility_manager.py ├── views │ └── eligibility_manager_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── spp_ent_trans ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ └── transactions.py ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ └── icon.png └── views │ ├── inkind_transactions_view.xml │ └── transactions_view.xml ├── spp_entitlement_basket ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── spp_entitlement_basket.pot ├── models │ ├── __init__.py │ ├── entitlement.py │ ├── entitlement_manager.py │ └── stock │ │ ├── __init__.py │ │ └── food_basket.py ├── readme │ └── DESCRIPTION.rst ├── security │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── css │ │ └── spp_entitlement_basket.css ├── tests │ ├── __init__.py │ ├── common.py │ ├── test_create_program_wizard.py │ ├── test_entitlement_basket.py │ ├── test_entitlement_manager.py │ └── test_food_basket.py ├── views │ ├── entitlement_manager_view.xml │ └── stock │ │ └── entitlement_basket_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── spp_entitlement_in_kind ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── spp_entitlement_in_kind.pot ├── models │ ├── __init__.py │ ├── entitlement.py │ └── entitlement_manager.py ├── readme │ └── DESCRIPTION.rst ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ ├── test_create_program_wizard.py │ └── test_entitlement_manager.py ├── views │ └── entitlement_manager_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── spp_exclusion_filter ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ └── managers │ │ ├── __init__.py │ │ └── eligibility_manager.py ├── views │ └── managers │ │ └── eligibility_manager_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── spp_pos ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── entitlement_product.xml ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── spp_pos.pot ├── models │ ├── __init__.py │ ├── entitlement.py │ ├── pos_category.py │ └── product_template.py ├── readme │ └── DESCRIPTION.rst ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ ├── js │ │ ├── action_button.js │ │ ├── check_keypress_entitlement.js │ │ ├── models.js │ │ └── popup_voucher.js │ │ └── view │ │ ├── action_button.xml │ │ └── popup_voucher.xml ├── tests │ ├── __init__.py │ ├── test_g2p_entitlement.py │ └── test_pos_category.py └── views │ └── product_template_views.xml ├── spp_program_id ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── ir_sequence_data.xml ├── models │ ├── __init__.py │ └── g2p_program.py └── views │ └── g2p_program_views.xml ├── spp_programs ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ar.po │ ├── ckb.po │ ├── fr.po │ └── spp_programs.pot ├── models │ ├── __init__.py │ ├── constants.py │ ├── cycle.py │ ├── eligibility.py │ ├── entitlement.py │ ├── entitlement_cash.py │ ├── managers │ │ ├── __init__.py │ │ ├── cycle_manager.py │ │ ├── eligibility_manager.py │ │ ├── entitlement_manager.py │ │ └── entitlement_manager_default.py │ ├── programs.py │ ├── registrant.py │ └── stock │ │ ├── __init__.py │ │ └── stock.py ├── report │ ├── program_approval_receipt.xml │ └── report_format.xml ├── security │ └── ir.model.access.csv ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── js │ │ ├── domain_field.js │ │ └── hide_button.js ├── tests │ ├── __init__.py │ ├── common.py │ ├── test_create_program_wiz.py │ ├── test_entitlement.py │ ├── test_entitlement_report_wiz.py │ ├── test_programs.py │ ├── test_registrant.py │ └── test_stock_rule.py ├── views │ ├── cycle_view.xml │ ├── entitlement_cash_view.xml │ ├── entitlement_view.xml │ ├── inkind_entitlement_report_view.xml │ ├── main_view.xml │ ├── managers │ │ ├── eligibility_manager_view.xml │ │ └── entitlement_manager_view.xml │ ├── programs_view.xml │ └── registrant_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ ├── create_program_wizard.xml │ ├── inkind_entitlement_report_wiz.py │ └── inkind_entitlement_report_wiz.xml ├── spp_programs_compliance_criteria ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── g2p_cycle.py │ ├── g2p_program.py │ ├── managers │ │ ├── __init__.py │ │ ├── g2p_cycle_manager_default.py │ │ ├── g2p_program_entitlement_manager_default.py │ │ └── spp_compliance_manager.py │ └── res_config_settings.py ├── security │ └── ir.model.access.csv ├── static │ └── src │ │ └── js │ │ └── field_domain.js ├── tests │ ├── __init__.py │ ├── common.py │ ├── test_g2p_cycle.py │ └── test_g2p_program_create_wizard.py ├── views │ ├── g2p_cycle_views.xml │ ├── g2p_program_views.xml │ └── res_config_settings_views.xml └── wizards │ ├── __init__.py │ ├── g2p_program_create_wizard.py │ └── g2p_program_create_wizard_views.xml ├── spp_programs_sp ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── entitlement_cash.py │ ├── entitlement_inkind.py │ ├── entitlement_manager_cash.py │ ├── entitlement_manager_default.py │ ├── entitlement_manager_inkind.py │ └── programs.py ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── views │ ├── entitlements_view.xml │ └── programs_view.xml └── wizard │ ├── __init__.py │ ├── create_program_wizard.py │ └── create_program_wizard.xml ├── test-requirements.txt └── vulnerability_disclosure_policy.md /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/auto-assign-pr.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/README.md -------------------------------------------------------------------------------- /g2p_entitlement_cash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/README.rst -------------------------------------------------------------------------------- /g2p_entitlement_cash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/__init__.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/__manifest__.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/i18n/ar.po -------------------------------------------------------------------------------- /g2p_entitlement_cash/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/i18n/ckb.po -------------------------------------------------------------------------------- /g2p_entitlement_cash/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/i18n/fr.po -------------------------------------------------------------------------------- /g2p_entitlement_cash/i18n/g2p_entitlement_cash.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/i18n/g2p_entitlement_cash.pot -------------------------------------------------------------------------------- /g2p_entitlement_cash/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/models/__init__.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/models/entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/models/entitlement_manager.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP Cash Entitlement 2 | -------------------------------------------------------------------------------- /g2p_entitlement_cash/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/security/ir.model.access.csv -------------------------------------------------------------------------------- /g2p_entitlement_cash/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/static/description/icon.png -------------------------------------------------------------------------------- /g2p_entitlement_cash/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/static/description/index.html -------------------------------------------------------------------------------- /g2p_entitlement_cash/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/tests/__init__.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/tests/test_create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/tests/test_create_program_wizard.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/tests/test_entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/tests/test_entitlement_manager.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/views/entitlement_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/views/entitlement_manager_view.xml -------------------------------------------------------------------------------- /g2p_entitlement_cash/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/wizard/__init__.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /g2p_entitlement_cash/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/g2p_entitlement_cash/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /license_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/license_header.txt -------------------------------------------------------------------------------- /setup/.setuptools-odoo-make-default-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/.setuptools-odoo-make-default-ignore -------------------------------------------------------------------------------- /setup/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/README -------------------------------------------------------------------------------- /setup/_metapackage/VERSION.txt: -------------------------------------------------------------------------------- 1 | 15.0.20230419.0 -------------------------------------------------------------------------------- /setup/_metapackage/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/_metapackage/setup.py -------------------------------------------------------------------------------- /setup/g2p_entitlement_cash/odoo/addons/g2p_entitlement_cash: -------------------------------------------------------------------------------- 1 | ../../../../g2p_entitlement_cash -------------------------------------------------------------------------------- /setup/g2p_entitlement_cash/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/g2p_entitlement_cash/setup.py -------------------------------------------------------------------------------- /setup/spp_auto_update_entitlements/odoo/addons/spp_auto_update_entitlements: -------------------------------------------------------------------------------- 1 | ../../../../spp_auto_update_entitlements -------------------------------------------------------------------------------- /setup/spp_auto_update_entitlements/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_auto_update_entitlements/setup.py -------------------------------------------------------------------------------- /setup/spp_basic_cash_entitlement_spent/odoo/addons/spp_basic_cash_entitlement_spent: -------------------------------------------------------------------------------- 1 | ../../../../spp_basic_cash_entitlement_spent -------------------------------------------------------------------------------- /setup/spp_basic_cash_entitlement_spent/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_basic_cash_entitlement_spent/setup.py -------------------------------------------------------------------------------- /setup/spp_dashboard/odoo/addons/spp_dashboard: -------------------------------------------------------------------------------- 1 | ../../../../spp_dashboard -------------------------------------------------------------------------------- /setup/spp_dashboard/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_dashboard/setup.py -------------------------------------------------------------------------------- /setup/spp_eligibility_sql/odoo/addons/spp_eligibility_sql: -------------------------------------------------------------------------------- 1 | ../../../../spp_eligibility_sql -------------------------------------------------------------------------------- /setup/spp_eligibility_sql/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_eligibility_sql/setup.py -------------------------------------------------------------------------------- /setup/spp_eligibility_tags/odoo/addons/spp_eligibility_tags: -------------------------------------------------------------------------------- 1 | ../../../../spp_eligibility_tags -------------------------------------------------------------------------------- /setup/spp_eligibility_tags/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_eligibility_tags/setup.py -------------------------------------------------------------------------------- /setup/spp_ent_trans/odoo/addons/spp_ent_trans: -------------------------------------------------------------------------------- 1 | ../../../../spp_ent_trans -------------------------------------------------------------------------------- /setup/spp_ent_trans/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_ent_trans/setup.py -------------------------------------------------------------------------------- /setup/spp_entitlement_basket/odoo/addons/spp_entitlement_basket: -------------------------------------------------------------------------------- 1 | ../../../../spp_entitlement_basket -------------------------------------------------------------------------------- /setup/spp_entitlement_basket/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_entitlement_basket/setup.py -------------------------------------------------------------------------------- /setup/spp_entitlement_in_kind/odoo/addons/spp_entitlement_in_kind: -------------------------------------------------------------------------------- 1 | ../../../../spp_entitlement_in_kind -------------------------------------------------------------------------------- /setup/spp_entitlement_in_kind/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_entitlement_in_kind/setup.py -------------------------------------------------------------------------------- /setup/spp_exclusion_filter/odoo/addons/spp_exclusion_filter: -------------------------------------------------------------------------------- 1 | ../../../../spp_exclusion_filter -------------------------------------------------------------------------------- /setup/spp_exclusion_filter/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_exclusion_filter/setup.py -------------------------------------------------------------------------------- /setup/spp_pos/odoo/addons/spp_pos: -------------------------------------------------------------------------------- 1 | ../../../../spp_pos -------------------------------------------------------------------------------- /setup/spp_pos/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_pos/setup.py -------------------------------------------------------------------------------- /setup/spp_program_id/odoo/addons/spp_program_id: -------------------------------------------------------------------------------- 1 | ../../../../spp_program_id -------------------------------------------------------------------------------- /setup/spp_program_id/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_program_id/setup.py -------------------------------------------------------------------------------- /setup/spp_programs/odoo/addons/spp_programs: -------------------------------------------------------------------------------- 1 | ../../../../spp_programs -------------------------------------------------------------------------------- /setup/spp_programs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_programs/setup.py -------------------------------------------------------------------------------- /setup/spp_programs_compliance_criteria/odoo/addons/spp_programs_compliance_criteria: -------------------------------------------------------------------------------- 1 | ../../../../spp_programs_compliance_criteria -------------------------------------------------------------------------------- /setup/spp_programs_compliance_criteria/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_programs_compliance_criteria/setup.py -------------------------------------------------------------------------------- /setup/spp_programs_sp/odoo/addons/spp_programs_sp: -------------------------------------------------------------------------------- 1 | ../../../../spp_programs_sp -------------------------------------------------------------------------------- /setup/spp_programs_sp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/setup/spp_programs_sp/setup.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/README.rst -------------------------------------------------------------------------------- /spp_auto_update_entitlements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/__init__.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/__manifest__.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/models/__init__.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/models/cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/models/cycle.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/models/entitlement.py -------------------------------------------------------------------------------- /spp_auto_update_entitlements/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/static/description/icon.png -------------------------------------------------------------------------------- /spp_auto_update_entitlements/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/static/description/index.html -------------------------------------------------------------------------------- /spp_auto_update_entitlements/views/cycle_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/views/cycle_view.xml -------------------------------------------------------------------------------- /spp_auto_update_entitlements/views/entitlements_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_auto_update_entitlements/views/entitlements_view.xml -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/README.rst -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/__init__.py -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/__manifest__.py -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/i18n/spp_basic_cash_entitlement_spent.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/i18n/spp_basic_cash_entitlement_spent.pot -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/models/__init__.py -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/models/entitlement.py -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP Basic Cash Entitlement spent 2 | -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/static/description/index.html -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_g2p_entitlement 2 | -------------------------------------------------------------------------------- /spp_basic_cash_entitlement_spent/tests/test_g2p_entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_basic_cash_entitlement_spent/tests/test_g2p_entitlement.py -------------------------------------------------------------------------------- /spp_dashboard/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/README.rst -------------------------------------------------------------------------------- /spp_dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/__init__.py -------------------------------------------------------------------------------- /spp_dashboard/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/__manifest__.py -------------------------------------------------------------------------------- /spp_dashboard/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/controllers/__init__.py -------------------------------------------------------------------------------- /spp_dashboard/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/controllers/main.py -------------------------------------------------------------------------------- /spp_dashboard/data/dashboard_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/data/dashboard_templates.xml -------------------------------------------------------------------------------- /spp_dashboard/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/i18n/ar.po -------------------------------------------------------------------------------- /spp_dashboard/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/i18n/ckb.po -------------------------------------------------------------------------------- /spp_dashboard/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/i18n/fr.po -------------------------------------------------------------------------------- /spp_dashboard/i18n/spp_dashboard.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/i18n/spp_dashboard.pot -------------------------------------------------------------------------------- /spp_dashboard/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/models/__init__.py -------------------------------------------------------------------------------- /spp_dashboard/models/cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/models/cycles.py -------------------------------------------------------------------------------- /spp_dashboard/models/dashboard_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/models/dashboard_block.py -------------------------------------------------------------------------------- /spp_dashboard/models/dashboard_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/models/dashboard_menu.py -------------------------------------------------------------------------------- /spp_dashboard/models/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/models/programs.py -------------------------------------------------------------------------------- /spp_dashboard/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP Dashboard 2 | -------------------------------------------------------------------------------- /spp_dashboard/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/static/description/icon.png -------------------------------------------------------------------------------- /spp_dashboard/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/static/description/index.html -------------------------------------------------------------------------------- /spp_dashboard/static/src/js/dynamic_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/static/src/js/dynamic_dashboard.js -------------------------------------------------------------------------------- /spp_dashboard/views/cycles_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/views/cycles_view.xml -------------------------------------------------------------------------------- /spp_dashboard/views/dashboard_block_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/views/dashboard_block_view.xml -------------------------------------------------------------------------------- /spp_dashboard/views/dashboard_menu_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/views/dashboard_menu_view.xml -------------------------------------------------------------------------------- /spp_dashboard/views/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/views/main_view.xml -------------------------------------------------------------------------------- /spp_dashboard/views/programs_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_dashboard/views/programs_view.xml -------------------------------------------------------------------------------- /spp_eligibility_sql/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spp_eligibility_sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/__init__.py -------------------------------------------------------------------------------- /spp_eligibility_sql/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/__manifest__.py -------------------------------------------------------------------------------- /spp_eligibility_sql/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/models/__init__.py -------------------------------------------------------------------------------- /spp_eligibility_sql/models/eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/models/eligibility_manager.py -------------------------------------------------------------------------------- /spp_eligibility_sql/models/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/models/programs.py -------------------------------------------------------------------------------- /spp_eligibility_sql/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_eligibility_sql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_create_program_wizard 2 | -------------------------------------------------------------------------------- /spp_eligibility_sql/tests/test_create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/tests/test_create_program_wizard.py -------------------------------------------------------------------------------- /spp_eligibility_sql/views/eligibility_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/views/eligibility_manager_view.xml -------------------------------------------------------------------------------- /spp_eligibility_sql/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/wizard/__init__.py -------------------------------------------------------------------------------- /spp_eligibility_sql/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_eligibility_sql/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_sql/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_eligibility_tags/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spp_eligibility_tags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/__init__.py -------------------------------------------------------------------------------- /spp_eligibility_tags/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/__manifest__.py -------------------------------------------------------------------------------- /spp_eligibility_tags/i18n/spp_eligibility_tags.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/i18n/spp_eligibility_tags.pot -------------------------------------------------------------------------------- /spp_eligibility_tags/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import eligibility_manager 2 | -------------------------------------------------------------------------------- /spp_eligibility_tags/models/eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/models/eligibility_manager.py -------------------------------------------------------------------------------- /spp_eligibility_tags/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_eligibility_tags/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/static/description/icon.png -------------------------------------------------------------------------------- /spp_eligibility_tags/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/static/description/index.html -------------------------------------------------------------------------------- /spp_eligibility_tags/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/tests/__init__.py -------------------------------------------------------------------------------- /spp_eligibility_tags/tests/test_create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/tests/test_create_program_wizard.py -------------------------------------------------------------------------------- /spp_eligibility_tags/tests/test_eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/tests/test_eligibility_manager.py -------------------------------------------------------------------------------- /spp_eligibility_tags/views/eligibility_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/views/eligibility_manager_view.xml -------------------------------------------------------------------------------- /spp_eligibility_tags/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import create_program_wizard 2 | -------------------------------------------------------------------------------- /spp_eligibility_tags/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_eligibility_tags/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_eligibility_tags/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_ent_trans/README.rst: -------------------------------------------------------------------------------- 1 | OpenSPP Entitlement Transactions 2 | -------------------------------------------------------------------------------- /spp_ent_trans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/__init__.py -------------------------------------------------------------------------------- /spp_ent_trans/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/__manifest__.py -------------------------------------------------------------------------------- /spp_ent_trans/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/models/__init__.py -------------------------------------------------------------------------------- /spp_ent_trans/models/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/models/transactions.py -------------------------------------------------------------------------------- /spp_ent_trans/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_ent_trans/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/static/description/icon.png -------------------------------------------------------------------------------- /spp_ent_trans/views/inkind_transactions_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/views/inkind_transactions_view.xml -------------------------------------------------------------------------------- /spp_ent_trans/views/transactions_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_ent_trans/views/transactions_view.xml -------------------------------------------------------------------------------- /spp_entitlement_basket/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/README.rst -------------------------------------------------------------------------------- /spp_entitlement_basket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/__manifest__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/i18n/ar.po -------------------------------------------------------------------------------- /spp_entitlement_basket/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/i18n/ckb.po -------------------------------------------------------------------------------- /spp_entitlement_basket/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/i18n/fr.po -------------------------------------------------------------------------------- /spp_entitlement_basket/i18n/spp_entitlement_basket.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/i18n/spp_entitlement_basket.pot -------------------------------------------------------------------------------- /spp_entitlement_basket/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/models/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/models/entitlement.py -------------------------------------------------------------------------------- /spp_entitlement_basket/models/entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/models/entitlement_manager.py -------------------------------------------------------------------------------- /spp_entitlement_basket/models/stock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/models/stock/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/models/stock/food_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/models/stock/food_basket.py -------------------------------------------------------------------------------- /spp_entitlement_basket/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP Entitlement basket in-kind 2 | -------------------------------------------------------------------------------- /spp_entitlement_basket/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_entitlement_basket/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/static/description/icon.png -------------------------------------------------------------------------------- /spp_entitlement_basket/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/static/description/index.html -------------------------------------------------------------------------------- /spp_entitlement_basket/static/src/css/spp_entitlement_basket.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/static/src/css/spp_entitlement_basket.css -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/common.py -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/test_create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/test_create_program_wizard.py -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/test_entitlement_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/test_entitlement_basket.py -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/test_entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/test_entitlement_manager.py -------------------------------------------------------------------------------- /spp_entitlement_basket/tests/test_food_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/tests/test_food_basket.py -------------------------------------------------------------------------------- /spp_entitlement_basket/views/entitlement_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/views/entitlement_manager_view.xml -------------------------------------------------------------------------------- /spp_entitlement_basket/views/stock/entitlement_basket_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/views/stock/entitlement_basket_view.xml -------------------------------------------------------------------------------- /spp_entitlement_basket/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/wizard/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_basket/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_entitlement_basket/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_basket/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_entitlement_in_kind/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/README.rst -------------------------------------------------------------------------------- /spp_entitlement_in_kind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/__manifest__.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/i18n/ar.po -------------------------------------------------------------------------------- /spp_entitlement_in_kind/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/i18n/ckb.po -------------------------------------------------------------------------------- /spp_entitlement_in_kind/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/i18n/fr.po -------------------------------------------------------------------------------- /spp_entitlement_in_kind/i18n/spp_entitlement_in_kind.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/i18n/spp_entitlement_in_kind.pot -------------------------------------------------------------------------------- /spp_entitlement_in_kind/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/models/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/models/entitlement.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/models/entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/models/entitlement_manager.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP In-Kind Entitlement 2 | -------------------------------------------------------------------------------- /spp_entitlement_in_kind/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_entitlement_in_kind/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/static/description/icon.png -------------------------------------------------------------------------------- /spp_entitlement_in_kind/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/static/description/index.html -------------------------------------------------------------------------------- /spp_entitlement_in_kind/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/tests/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/tests/test_create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/tests/test_create_program_wizard.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/tests/test_entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/tests/test_entitlement_manager.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/views/entitlement_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/views/entitlement_manager_view.xml -------------------------------------------------------------------------------- /spp_entitlement_in_kind/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/wizard/__init__.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_entitlement_in_kind/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_entitlement_in_kind/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_exclusion_filter/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spp_exclusion_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/__init__.py -------------------------------------------------------------------------------- /spp_exclusion_filter/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/__manifest__.py -------------------------------------------------------------------------------- /spp_exclusion_filter/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import managers 2 | -------------------------------------------------------------------------------- /spp_exclusion_filter/models/managers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import eligibility_manager 2 | -------------------------------------------------------------------------------- /spp_exclusion_filter/models/managers/eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/models/managers/eligibility_manager.py -------------------------------------------------------------------------------- /spp_exclusion_filter/views/managers/eligibility_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/views/managers/eligibility_manager_view.xml -------------------------------------------------------------------------------- /spp_exclusion_filter/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import create_program_wizard 2 | -------------------------------------------------------------------------------- /spp_exclusion_filter/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_exclusion_filter/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_exclusion_filter/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_pos/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/README.rst -------------------------------------------------------------------------------- /spp_pos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/__init__.py -------------------------------------------------------------------------------- /spp_pos/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/__manifest__.py -------------------------------------------------------------------------------- /spp_pos/data/entitlement_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/data/entitlement_product.xml -------------------------------------------------------------------------------- /spp_pos/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/i18n/ar.po -------------------------------------------------------------------------------- /spp_pos/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/i18n/ckb.po -------------------------------------------------------------------------------- /spp_pos/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/i18n/fr.po -------------------------------------------------------------------------------- /spp_pos/i18n/spp_pos.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/i18n/spp_pos.pot -------------------------------------------------------------------------------- /spp_pos/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/models/__init__.py -------------------------------------------------------------------------------- /spp_pos/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/models/entitlement.py -------------------------------------------------------------------------------- /spp_pos/models/pos_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/models/pos_category.py -------------------------------------------------------------------------------- /spp_pos/models/product_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/models/product_template.py -------------------------------------------------------------------------------- /spp_pos/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | OpenSPP POS 2 | -------------------------------------------------------------------------------- /spp_pos/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/description/icon.png -------------------------------------------------------------------------------- /spp_pos/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/description/index.html -------------------------------------------------------------------------------- /spp_pos/static/src/js/action_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/js/action_button.js -------------------------------------------------------------------------------- /spp_pos/static/src/js/check_keypress_entitlement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/js/check_keypress_entitlement.js -------------------------------------------------------------------------------- /spp_pos/static/src/js/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/js/models.js -------------------------------------------------------------------------------- /spp_pos/static/src/js/popup_voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/js/popup_voucher.js -------------------------------------------------------------------------------- /spp_pos/static/src/view/action_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/view/action_button.xml -------------------------------------------------------------------------------- /spp_pos/static/src/view/popup_voucher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/static/src/view/popup_voucher.xml -------------------------------------------------------------------------------- /spp_pos/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/tests/__init__.py -------------------------------------------------------------------------------- /spp_pos/tests/test_g2p_entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/tests/test_g2p_entitlement.py -------------------------------------------------------------------------------- /spp_pos/tests/test_pos_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/tests/test_pos_category.py -------------------------------------------------------------------------------- /spp_pos/views/product_template_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_pos/views/product_template_views.xml -------------------------------------------------------------------------------- /spp_program_id/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spp_program_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_program_id/__init__.py -------------------------------------------------------------------------------- /spp_program_id/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_program_id/__manifest__.py -------------------------------------------------------------------------------- /spp_program_id/data/ir_sequence_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_program_id/data/ir_sequence_data.xml -------------------------------------------------------------------------------- /spp_program_id/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import g2p_program 2 | -------------------------------------------------------------------------------- /spp_program_id/models/g2p_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_program_id/models/g2p_program.py -------------------------------------------------------------------------------- /spp_program_id/views/g2p_program_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_program_id/views/g2p_program_views.xml -------------------------------------------------------------------------------- /spp_programs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/README.rst -------------------------------------------------------------------------------- /spp_programs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/__init__.py -------------------------------------------------------------------------------- /spp_programs/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/__manifest__.py -------------------------------------------------------------------------------- /spp_programs/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/i18n/ar.po -------------------------------------------------------------------------------- /spp_programs/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/i18n/ckb.po -------------------------------------------------------------------------------- /spp_programs/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/i18n/fr.po -------------------------------------------------------------------------------- /spp_programs/i18n/spp_programs.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/i18n/spp_programs.pot -------------------------------------------------------------------------------- /spp_programs/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/__init__.py -------------------------------------------------------------------------------- /spp_programs/models/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/constants.py -------------------------------------------------------------------------------- /spp_programs/models/cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/cycle.py -------------------------------------------------------------------------------- /spp_programs/models/eligibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/eligibility.py -------------------------------------------------------------------------------- /spp_programs/models/entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/entitlement.py -------------------------------------------------------------------------------- /spp_programs/models/entitlement_cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/entitlement_cash.py -------------------------------------------------------------------------------- /spp_programs/models/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/managers/__init__.py -------------------------------------------------------------------------------- /spp_programs/models/managers/cycle_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/managers/cycle_manager.py -------------------------------------------------------------------------------- /spp_programs/models/managers/eligibility_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/managers/eligibility_manager.py -------------------------------------------------------------------------------- /spp_programs/models/managers/entitlement_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/managers/entitlement_manager.py -------------------------------------------------------------------------------- /spp_programs/models/managers/entitlement_manager_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/managers/entitlement_manager_default.py -------------------------------------------------------------------------------- /spp_programs/models/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/programs.py -------------------------------------------------------------------------------- /spp_programs/models/registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/registrant.py -------------------------------------------------------------------------------- /spp_programs/models/stock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/stock/__init__.py -------------------------------------------------------------------------------- /spp_programs/models/stock/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/models/stock/stock.py -------------------------------------------------------------------------------- /spp_programs/report/program_approval_receipt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/report/program_approval_receipt.xml -------------------------------------------------------------------------------- /spp_programs/report/report_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/report/report_format.xml -------------------------------------------------------------------------------- /spp_programs/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_programs/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/static/description/icon.png -------------------------------------------------------------------------------- /spp_programs/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/static/description/index.html -------------------------------------------------------------------------------- /spp_programs/static/src/js/domain_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/static/src/js/domain_field.js -------------------------------------------------------------------------------- /spp_programs/static/src/js/hide_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/static/src/js/hide_button.js -------------------------------------------------------------------------------- /spp_programs/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/__init__.py -------------------------------------------------------------------------------- /spp_programs/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/common.py -------------------------------------------------------------------------------- /spp_programs/tests/test_create_program_wiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_create_program_wiz.py -------------------------------------------------------------------------------- /spp_programs/tests/test_entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_entitlement.py -------------------------------------------------------------------------------- /spp_programs/tests/test_entitlement_report_wiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_entitlement_report_wiz.py -------------------------------------------------------------------------------- /spp_programs/tests/test_programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_programs.py -------------------------------------------------------------------------------- /spp_programs/tests/test_registrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_registrant.py -------------------------------------------------------------------------------- /spp_programs/tests/test_stock_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/tests/test_stock_rule.py -------------------------------------------------------------------------------- /spp_programs/views/cycle_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/cycle_view.xml -------------------------------------------------------------------------------- /spp_programs/views/entitlement_cash_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/entitlement_cash_view.xml -------------------------------------------------------------------------------- /spp_programs/views/entitlement_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/entitlement_view.xml -------------------------------------------------------------------------------- /spp_programs/views/inkind_entitlement_report_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/inkind_entitlement_report_view.xml -------------------------------------------------------------------------------- /spp_programs/views/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/main_view.xml -------------------------------------------------------------------------------- /spp_programs/views/managers/eligibility_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/managers/eligibility_manager_view.xml -------------------------------------------------------------------------------- /spp_programs/views/managers/entitlement_manager_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/managers/entitlement_manager_view.xml -------------------------------------------------------------------------------- /spp_programs/views/programs_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/programs_view.xml -------------------------------------------------------------------------------- /spp_programs/views/registrant_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/views/registrant_view.xml -------------------------------------------------------------------------------- /spp_programs/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/wizard/__init__.py -------------------------------------------------------------------------------- /spp_programs/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_programs/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /spp_programs/wizard/inkind_entitlement_report_wiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/wizard/inkind_entitlement_report_wiz.py -------------------------------------------------------------------------------- /spp_programs/wizard/inkind_entitlement_report_wiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs/wizard/inkind_entitlement_report_wiz.xml -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/__init__.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/__manifest__.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/__init__.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/g2p_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/g2p_cycle.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/g2p_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/g2p_program.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/managers/__init__.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/managers/g2p_cycle_manager_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/managers/g2p_cycle_manager_default.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/managers/g2p_program_entitlement_manager_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/managers/g2p_program_entitlement_manager_default.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/managers/spp_compliance_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/managers/spp_compliance_manager.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/models/res_config_settings.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/security/ir.model.access.csv -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/static/src/js/field_domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/static/src/js/field_domain.js -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/tests/__init__.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/tests/common.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/tests/test_g2p_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/tests/test_g2p_cycle.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/tests/test_g2p_program_create_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/tests/test_g2p_program_create_wizard.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/views/g2p_cycle_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/views/g2p_cycle_views.xml -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/views/g2p_program_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/views/g2p_program_views.xml -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/views/res_config_settings_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/views/res_config_settings_views.xml -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/wizards/__init__.py: -------------------------------------------------------------------------------- 1 | from . import g2p_program_create_wizard 2 | -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/wizards/g2p_program_create_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/wizards/g2p_program_create_wizard.py -------------------------------------------------------------------------------- /spp_programs_compliance_criteria/wizards/g2p_program_create_wizard_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_compliance_criteria/wizards/g2p_program_create_wizard_views.xml -------------------------------------------------------------------------------- /spp_programs_sp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/README.rst -------------------------------------------------------------------------------- /spp_programs_sp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/__init__.py -------------------------------------------------------------------------------- /spp_programs_sp/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/__manifest__.py -------------------------------------------------------------------------------- /spp_programs_sp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/__init__.py -------------------------------------------------------------------------------- /spp_programs_sp/models/entitlement_cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/entitlement_cash.py -------------------------------------------------------------------------------- /spp_programs_sp/models/entitlement_inkind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/entitlement_inkind.py -------------------------------------------------------------------------------- /spp_programs_sp/models/entitlement_manager_cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/entitlement_manager_cash.py -------------------------------------------------------------------------------- /spp_programs_sp/models/entitlement_manager_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/entitlement_manager_default.py -------------------------------------------------------------------------------- /spp_programs_sp/models/entitlement_manager_inkind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/entitlement_manager_inkind.py -------------------------------------------------------------------------------- /spp_programs_sp/models/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/models/programs.py -------------------------------------------------------------------------------- /spp_programs_sp/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/static/description/icon.png -------------------------------------------------------------------------------- /spp_programs_sp/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/static/description/index.html -------------------------------------------------------------------------------- /spp_programs_sp/views/entitlements_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/views/entitlements_view.xml -------------------------------------------------------------------------------- /spp_programs_sp/views/programs_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/views/programs_view.xml -------------------------------------------------------------------------------- /spp_programs_sp/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/wizard/__init__.py -------------------------------------------------------------------------------- /spp_programs_sp/wizard/create_program_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/wizard/create_program_wizard.py -------------------------------------------------------------------------------- /spp_programs_sp/wizard/create_program_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/spp_programs_sp/wizard/create_program_wizard.xml -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /vulnerability_disclosure_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSPP/openspp-program/HEAD/vulnerability_disclosure_policy.md --------------------------------------------------------------------------------