Automatic Update form OCA2FC Migrator

This commit is contained in:
Flectra Community Bot 2021-07-25 02:18:55 +00:00 committed by OCA2FC Migrator Bot
parent 4d72c0d627
commit 8cedea2a0e
6 changed files with 55 additions and 50 deletions

View File

@ -47,15 +47,15 @@ test_all_modules:
--db_password flectra
--database test_all
--test-enable
--init customer_activity_statement,account_financial_report_date_range,account_tax_balance,mis_builder_cash_flow,account_financial_report,customer_outstanding_statement
--init customer_activity_statement,customer_outstanding_statement,account_financial_report_date_range,account_tax_balance,account_financial_report,mis_builder_cash_flow
--stop-after-init
--log-level error
--log-handler flectra.addons.customer_activity_statement:TEST
--log-handler flectra.addons.customer_outstanding_statement:TEST
--log-handler flectra.addons.account_financial_report_date_range:TEST
--log-handler flectra.addons.account_tax_balance:TEST
--log-handler flectra.addons.mis_builder_cash_flow:TEST
--log-handler flectra.addons.account_financial_report:TEST
--log-handler flectra.addons.customer_outstanding_statement:TEST
--log-handler flectra.addons.mis_builder_cash_flow:TEST
"
@ -95,6 +95,42 @@ test_module_customer_activity_statement:
--log-level error
--log-handler flectra.addons.customer_activity_statement:TEST"
test_module_customer_outstanding_statement:
stage: testsingle
when: on_failure
image:
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
entrypoint: ["/bin/sh", "-c"]
script:
- apt-get install -y p7zip-full
- apt install -y expect-dev
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
- su - flectra -c "mkdir ~/others"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/reporting-engine.git ~/others/reporting-engine"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-tools.git ~/others/server-tools"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-ux.git ~/others/server-ux"
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
- mkdir ${CI_PROJECT_DIR}/ci_data
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
- export PGPASSWORD="flectra"
- createdb -h psql -U flectra -O flectra -T template1 test_customer_outstanding_statement
- psql -h psql -U flectra -d test_customer_outstanding_statement -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- su - flectra -c "mkdir -p ~/.local/share/filestore"
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_customer_outstanding_statement
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_customer_outstanding_statement
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/reporting-engine,~/others/server-tools,~/others/server-ux
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_customer_outstanding_statement
--test-enable -i customer_outstanding_statement
--stop-after-init
--log-level error
--log-handler flectra.addons.customer_outstanding_statement:TEST"
test_module_account_financial_report_date_range:
stage: testsingle
when: on_failure
@ -167,42 +203,6 @@ test_module_account_tax_balance:
--log-level error
--log-handler flectra.addons.account_tax_balance:TEST"
test_module_mis_builder_cash_flow:
stage: testsingle
when: on_failure
image:
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
entrypoint: ["/bin/sh", "-c"]
script:
- apt-get install -y p7zip-full
- apt install -y expect-dev
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
- su - flectra -c "mkdir ~/others"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/reporting-engine.git ~/others/reporting-engine"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-tools.git ~/others/server-tools"
- su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-ux.git ~/others/server-ux"
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
- mkdir ${CI_PROJECT_DIR}/ci_data
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
- export PGPASSWORD="flectra"
- createdb -h psql -U flectra -O flectra -T template1 test_mis_builder_cash_flow
- psql -h psql -U flectra -d test_mis_builder_cash_flow -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- su - flectra -c "mkdir -p ~/.local/share/filestore"
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_mis_builder_cash_flow
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_mis_builder_cash_flow
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/reporting-engine,~/others/server-tools,~/others/server-ux
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_mis_builder_cash_flow
--test-enable -i mis_builder_cash_flow
--stop-after-init
--log-level error
--log-handler flectra.addons.mis_builder_cash_flow:TEST"
test_module_account_financial_report:
stage: testsingle
when: on_failure
@ -239,7 +239,7 @@ test_module_account_financial_report:
--log-level error
--log-handler flectra.addons.account_financial_report:TEST"
test_module_customer_outstanding_statement:
test_module_mis_builder_cash_flow:
stage: testsingle
when: on_failure
image:
@ -258,20 +258,20 @@ test_module_customer_outstanding_statement:
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
- export PGPASSWORD="flectra"
- createdb -h psql -U flectra -O flectra -T template1 test_customer_outstanding_statement
- psql -h psql -U flectra -d test_customer_outstanding_statement -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- createdb -h psql -U flectra -O flectra -T template1 test_mis_builder_cash_flow
- psql -h psql -U flectra -d test_mis_builder_cash_flow -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- su - flectra -c "mkdir -p ~/.local/share/filestore"
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_customer_outstanding_statement
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_customer_outstanding_statement
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_mis_builder_cash_flow
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_mis_builder_cash_flow
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/reporting-engine,~/others/server-tools,~/others/server-ux
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_customer_outstanding_statement
--test-enable -i customer_outstanding_statement
--database test_mis_builder_cash_flow
--test-enable -i mis_builder_cash_flow
--stop-after-init
--log-level error
--log-handler flectra.addons.customer_outstanding_statement:TEST"
--log-handler flectra.addons.mis_builder_cash_flow:TEST"

View File

@ -10,10 +10,10 @@ Available addons
addon | version | summary
--- | --- | ---
[customer_activity_statement](customer_activity_statement/) | 1.0.2.1.2| OCA Financial Reports
[customer_outstanding_statement](customer_outstanding_statement/) | 1.0.2.1.2| OCA Financial Reports
[account_financial_report_date_range](account_financial_report_date_range/) | 1.0.1.0.0| Add Date Range field to the Odoo OE standard addons financial reports wizard.
[account_tax_balance](account_tax_balance/) | 1.0.1.0.0| Compute tax balances based on date range
[mis_builder_cash_flow](mis_builder_cash_flow/) | 1.0.1.1.0| MIS Builder Cash Flow
[account_financial_report](account_financial_report/) | 1.0.2.6.0| OCA Financial Reports
[customer_outstanding_statement](customer_outstanding_statement/) | 1.0.2.1.2| OCA Financial Reports
[mis_builder_cash_flow](mis_builder_cash_flow/) | 1.0.1.1.0| MIS Builder Cash Flow

View File

@ -11,6 +11,7 @@ Most of the files are
Copyright 2018 Eficent Business and IT Consuting Services, S.L.
Copyright 2019 ACSONE SA/NV (<http://acsone.eu>)
© 2016 Damien Crier (Camptocamp)
© 2016 Julien Coux (Camptocamp)
© 2018 Forest and Biomass Romania SA
Copyright 2018 Flectra Community

View File

@ -1,12 +1,14 @@
Most of the files are
<!-- Copyright 2016 Lorenzo Battistini - Agile Business Group
Copyright 2016 ACSONE SA/NV - Stéphane Bidoul
Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
Copyright 2016 Lorenzo Battistini - Agile Business Group
Copyright 2016 Tecnativa - Antonio Espinosa
Copyright 2017 ACSONE SA/NV
Copyright 2017 Tecnativa - Pedro M. Baeza
© 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
© 2016 Giovanni Capalbo
© 2016 Giovanni Capalbo <giovanni@therp.nl>
© 2016 Lorenzo Battistini - Agile Business Group
Copyright 2018 Flectra Community

View File

@ -1,5 +1,6 @@
Most of the files are
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
Copyright 2018 Eficent Business and IT Consulting Services S.L.
Copyright 2018 Flectra Community

View File

@ -1,5 +1,6 @@
Most of the files are
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
Copyright 2018 Eficent Business and IT Consulting Services S.L.
Copyright 2018 Flectra Community