├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── license.txt ├── requirements.txt ├── rfq_opening_process ├── __init__.py ├── config │ ├── __init__.py │ ├── desktop.py │ └── docs.py ├── controllers │ └── generate_template.py ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ ├── .gitkeep │ └── js │ │ └── todo.js ├── rfq_opening_process │ ├── __init__.py │ ├── client_scripts │ │ └── committee_note_list.js │ ├── custom │ │ ├── request_for_quotation.json │ │ ├── supplier_quotation.json │ │ └── supplier_quotation_item.json │ ├── doctype │ │ ├── __init__.py │ │ ├── committee │ │ │ ├── __init__.py │ │ │ ├── committee.js │ │ │ ├── committee.json │ │ │ ├── committee.py │ │ │ └── test_committee.py │ │ ├── committee_member │ │ │ ├── __init__.py │ │ │ ├── committee_member.json │ │ │ └── committee_member.py │ │ ├── committee_note │ │ │ ├── __init__.py │ │ │ ├── committee_note.js │ │ │ ├── committee_note.json │ │ │ ├── committee_note.py │ │ │ └── test_committee_note.py │ │ ├── request_for_quotation │ │ │ └── request_for_quotation.py │ │ ├── rfq_opening_settings │ │ │ ├── __init__.py │ │ │ ├── rfq_opening_settings.js │ │ │ ├── rfq_opening_settings.json │ │ │ ├── rfq_opening_settings.py │ │ │ └── test_rfq_opening_settings.py │ │ └── supplier_quotation │ │ │ └── supplier_quotation.py │ └── patches │ │ └── user_custom_field.py ├── templates │ ├── __init__.py │ ├── includes │ │ ├── rfq_committee_register.html │ │ ├── rfq_evaluation_minutes.html │ │ └── rfq_opening_minutes.html │ └── pages │ │ └── __init__.py └── www │ └── __init__.py └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/license.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/requirements.txt -------------------------------------------------------------------------------- /rfq_opening_process/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | -------------------------------------------------------------------------------- /rfq_opening_process/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/config/desktop.py -------------------------------------------------------------------------------- /rfq_opening_process/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/config/docs.py -------------------------------------------------------------------------------- /rfq_opening_process/controllers/generate_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/controllers/generate_template.py -------------------------------------------------------------------------------- /rfq_opening_process/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/hooks.py -------------------------------------------------------------------------------- /rfq_opening_process/modules.txt: -------------------------------------------------------------------------------- 1 | RFQ Opening Process -------------------------------------------------------------------------------- /rfq_opening_process/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/patches.txt -------------------------------------------------------------------------------- /rfq_opening_process/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/public/js/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/public/js/todo.js -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/client_scripts/committee_note_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/client_scripts/committee_note_list.js -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/custom/request_for_quotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/custom/request_for_quotation.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/custom/supplier_quotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/custom/supplier_quotation.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/custom/supplier_quotation_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/custom/supplier_quotation_item.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee/committee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee/committee.js -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee/committee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee/committee.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee/committee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee/committee.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee/test_committee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee/test_committee.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_member/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_member/committee_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_member/committee_member.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_member/committee_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_member/committee_member.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_note/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.js -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_note/committee_note.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/committee_note/test_committee_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/committee_note/test_committee_note.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/request_for_quotation/request_for_quotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/request_for_quotation/request_for_quotation.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.js -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.json -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/rfq_opening_settings.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/test_rfq_opening_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/rfq_opening_settings/test_rfq_opening_settings.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/doctype/supplier_quotation/supplier_quotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/doctype/supplier_quotation/supplier_quotation.py -------------------------------------------------------------------------------- /rfq_opening_process/rfq_opening_process/patches/user_custom_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/rfq_opening_process/patches/user_custom_field.py -------------------------------------------------------------------------------- /rfq_opening_process/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/templates/includes/rfq_committee_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/templates/includes/rfq_committee_register.html -------------------------------------------------------------------------------- /rfq_opening_process/templates/includes/rfq_evaluation_minutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/templates/includes/rfq_evaluation_minutes.html -------------------------------------------------------------------------------- /rfq_opening_process/templates/includes/rfq_opening_minutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/rfq_opening_process/templates/includes/rfq_opening_minutes.html -------------------------------------------------------------------------------- /rfq_opening_process/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rfq_opening_process/www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navariltd/navari_rfq_opening/HEAD/setup.py --------------------------------------------------------------------------------