From d29ce4ddebb008917db7794dca16a03646674bf7 Mon Sep 17 00:00:00 2001 From: hoangvv Date: Mon, 3 Mar 2025 14:57:30 +0700 Subject: [PATCH] update --- Makefile | 5 +++-- exercise | 2 +- extra-addons | 2 +- modules.yaml | 14 ++++++++++++++ requirements.txt | 5 ++++- 5 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 modules.yaml diff --git a/Makefile b/Makefile index 9ae03e4c8..6387ed643 100644 --- a/Makefile +++ b/Makefile @@ -82,10 +82,11 @@ scaffold_module: read -p "addons Path[eg:addons, extra-addons, exercise]: " ModulePath; \ ${PYTHON} odoo-bin scaffold $$ModuleName && \ mv $$ModuleName ${PWD}/$$ModulePath; - cleanup_addons: @bash ${PWD}/setup/clean_up_addons.sh $(shell echo $(ADDONS) | tr ',' ' ') - +install_modules: + ${PYTHON} odoo-bin --config=${CONFIG} -d ${DATABASE} -i ${MODULES} --xmlrpc-port=${PORT} + ##### Docker Deployment ######### run_test_docker: sudo ${DOCKER_EXEC} ${CONTAINER_ID} odoo --test-tags :TestAccountMove.test_out_invoice_auto_post_monthly,TestAccountMove.test_included_tax --log-level=test --test-enable -d testdb-${TAG} --stop-after-init --config=/etc/odoo/${CONFIG} --xmlrpc-port=8071 && \ diff --git a/exercise b/exercise index 6baa85597..081505ce3 160000 --- a/exercise +++ b/exercise @@ -1 +1 @@ -Subproject commit 6baa855977686dfd47787b4b4b0f3a77ca15460f +Subproject commit 081505ce33ee5925763d9b5c8b42aad2ee594c36 diff --git a/extra-addons b/extra-addons index 8646f30b4..242819aff 160000 --- a/extra-addons +++ b/extra-addons @@ -1 +1 @@ -Subproject commit 8646f30b4e5c0294fe84dc839c315bd90fe8e5f8 +Subproject commit 242819affd65508a37158d7e4151ca9432829a1f diff --git a/modules.yaml b/modules.yaml new file mode 100644 index 000000000..c82147039 --- /dev/null +++ b/modules.yaml @@ -0,0 +1,14 @@ +branches: + community/feature/hrbudget: + modules: + - hr_budget + community/dynamic_docx_report_pdf: + modules: + - dynamic_docx_pdf_report_omax + community/feature/orgchart: + modules: + - hr_employee_org_chart + community/feature/multiapproval: + modules: + - multi_level_approval + - multi_level_approval_configuration \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index a99cc312c..646a7ffd7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -101,4 +101,7 @@ boto3 ; python_version > '3.10' paramiko ; python_version > '3.10' proxmoxer ; python_version > '3.10' requests ; python_version > '3.10' -google_auth ; python_version > '3.10' \ No newline at end of file +google_auth ; python_version > '3.10' +odoorpc ; python_version > '3.10' +openai ; python_version > '3.10' +pysftp ; python_version > '3.10' \ No newline at end of file