Automatic Update form OCA2FC Migrator

This commit is contained in:
Flectra Community Bot 2021-05-27 12:12:09 +00:00 committed by OCA2FC Migrator Bot
parent a20c7b8dcd
commit aabef79168
6 changed files with 171 additions and 173 deletions

View File

@ -45,23 +45,57 @@ test_all_modules:
--db_password flectra
--database test_all
--test-enable
--init account_payment_order_return,account_payment_purchase_stock,account_payment_partner,account_payment_order,account_payment_purchase,account_payment_mode,account_banking_sepa_direct_debit,account_banking_sepa_credit_transfer,account_banking_pain_base,account_payment_sale,account_banking_mandate
--init account_banking_mandate,account_payment_order_return,account_payment_order,account_payment_sale,account_payment_purchase_stock,account_payment_purchase,account_payment_partner,account_banking_pain_base,account_banking_sepa_direct_debit,account_banking_sepa_credit_transfer,account_payment_mode
--stop-after-init
--log-level error
--log-handler flectra.addons.account_banking_mandate:TEST
--log-handler flectra.addons.account_payment_order_return:TEST
--log-handler flectra.addons.account_payment_purchase_stock:TEST
--log-handler flectra.addons.account_payment_partner:TEST
--log-handler flectra.addons.account_payment_order:TEST
--log-handler flectra.addons.account_payment_sale:TEST
--log-handler flectra.addons.account_payment_purchase_stock:TEST
--log-handler flectra.addons.account_payment_purchase:TEST
--log-handler flectra.addons.account_payment_mode:TEST
--log-handler flectra.addons.account_payment_partner:TEST
--log-handler flectra.addons.account_banking_pain_base:TEST
--log-handler flectra.addons.account_banking_sepa_direct_debit:TEST
--log-handler flectra.addons.account_banking_sepa_credit_transfer:TEST
--log-handler flectra.addons.account_banking_pain_base:TEST
--log-handler flectra.addons.account_payment_sale:TEST
--log-handler flectra.addons.account_banking_mandate:TEST
--log-handler flectra.addons.account_payment_mode:TEST
"
test_module_account_banking_mandate:
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/account-payment.git ~/others/account-payment"
- 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_account_banking_mandate
- psql -h psql -U flectra -d test_account_banking_mandate -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_account_banking_mandate
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_mandate
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_banking_mandate
--test-enable -i account_banking_mandate
--stop-after-init
--log-level error
--log-handler flectra.addons.account_banking_mandate:TEST"
test_module_account_payment_order_return:
stage: testsingle
when: on_failure
@ -96,74 +130,6 @@ test_module_account_payment_order_return:
--log-level error
--log-handler flectra.addons.account_payment_order_return:TEST"
test_module_account_payment_purchase_stock:
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/account-payment.git ~/others/account-payment"
- 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_account_payment_purchase_stock
- psql -h psql -U flectra -d test_account_payment_purchase_stock -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_account_payment_purchase_stock
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_purchase_stock
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_purchase_stock
--test-enable -i account_payment_purchase_stock
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_purchase_stock:TEST"
test_module_account_payment_partner:
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/account-payment.git ~/others/account-payment"
- 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_account_payment_partner
- psql -h psql -U flectra -d test_account_payment_partner -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_account_payment_partner
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_partner
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_partner
--test-enable -i account_payment_partner
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_partner:TEST"
test_module_account_payment_order:
stage: testsingle
when: on_failure
@ -198,6 +164,74 @@ test_module_account_payment_order:
--log-level error
--log-handler flectra.addons.account_payment_order:TEST"
test_module_account_payment_sale:
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/account-payment.git ~/others/account-payment"
- 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_account_payment_sale
- psql -h psql -U flectra -d test_account_payment_sale -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_account_payment_sale
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_sale
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_sale
--test-enable -i account_payment_sale
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_sale:TEST"
test_module_account_payment_purchase_stock:
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/account-payment.git ~/others/account-payment"
- 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_account_payment_purchase_stock
- psql -h psql -U flectra -d test_account_payment_purchase_stock -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_account_payment_purchase_stock
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_purchase_stock
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_purchase_stock
--test-enable -i account_payment_purchase_stock
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_purchase_stock:TEST"
test_module_account_payment_purchase:
stage: testsingle
when: on_failure
@ -232,7 +266,7 @@ test_module_account_payment_purchase:
--log-level error
--log-handler flectra.addons.account_payment_purchase:TEST"
test_module_account_payment_mode:
test_module_account_payment_partner:
stage: testsingle
when: on_failure
image:
@ -249,22 +283,56 @@ test_module_account_payment_mode:
- 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_account_payment_mode
- psql -h psql -U flectra -d test_account_payment_mode -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_partner
- psql -h psql -U flectra -d test_account_payment_partner -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_account_payment_mode
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_mode
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_partner
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_partner
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_mode
--test-enable -i account_payment_mode
--database test_account_payment_partner
--test-enable -i account_payment_partner
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_mode:TEST"
--log-handler flectra.addons.account_payment_partner:TEST"
test_module_account_banking_pain_base:
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/account-payment.git ~/others/account-payment"
- 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_account_banking_pain_base
- psql -h psql -U flectra -d test_account_banking_pain_base -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_account_banking_pain_base
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_pain_base
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_banking_pain_base
--test-enable -i account_banking_pain_base
--stop-after-init
--log-level error
--log-handler flectra.addons.account_banking_pain_base:TEST"
test_module_account_banking_sepa_direct_debit:
stage: testsingle
@ -334,7 +402,7 @@ test_module_account_banking_sepa_credit_transfer:
--log-level error
--log-handler flectra.addons.account_banking_sepa_credit_transfer:TEST"
test_module_account_banking_pain_base:
test_module_account_payment_mode:
stage: testsingle
when: on_failure
image:
@ -351,88 +419,20 @@ test_module_account_banking_pain_base:
- 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_account_banking_pain_base
- psql -h psql -U flectra -d test_account_banking_pain_base -f ${CI_PROJECT_DIR}/ci_data/dump.sql
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_mode
- psql -h psql -U flectra -d test_account_payment_mode -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_account_banking_pain_base
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_pain_base
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_mode
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_mode
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_banking_pain_base
--test-enable -i account_banking_pain_base
--database test_account_payment_mode
--test-enable -i account_payment_mode
--stop-after-init
--log-level error
--log-handler flectra.addons.account_banking_pain_base:TEST"
test_module_account_payment_sale:
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/account-payment.git ~/others/account-payment"
- 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_account_payment_sale
- psql -h psql -U flectra -d test_account_payment_sale -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_account_payment_sale
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_sale
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_payment_sale
--test-enable -i account_payment_sale
--stop-after-init
--log-level error
--log-handler flectra.addons.account_payment_sale:TEST"
test_module_account_banking_mandate:
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/account-payment.git ~/others/account-payment"
- 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_account_banking_mandate
- psql -h psql -U flectra -d test_account_banking_mandate -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_account_banking_mandate
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_mandate
- su - flectra -c "/opt/flectra/flectra-bin
--addons-path ${CI_PROJECT_DIR},~/others/account-payment
--db_host psql
--db_port 5432
--db_user flectra
--db_password flectra
--database test_account_banking_mandate
--test-enable -i account_banking_mandate
--stop-after-init
--log-level error
--log-handler flectra.addons.account_banking_mandate:TEST"
--log-handler flectra.addons.account_payment_mode:TEST"

View File

@ -9,16 +9,16 @@ Available addons
addon | version | summary
--- | --- | ---
[account_banking_mandate](account_banking_mandate/) | 2.0.1.1.0| Banking mandates
[account_payment_order_return](account_payment_order_return/) | 2.0.1.0.1| Account Payment Order Return
[account_payment_purchase_stock](account_payment_purchase_stock/) | 2.0.1.0.0| Integrate Account Payment Purchase with Stock
[account_payment_partner](account_payment_partner/) | 2.0.1.1.2| Adds payment mode on partners and invoices
[account_payment_order](account_payment_order/) | 2.0.1.2.0| Account Payment Order
[account_payment_sale](account_payment_sale/) | 2.0.1.0.0| Adds payment mode on sale orders
[account_payment_purchase_stock](account_payment_purchase_stock/) | 2.0.1.0.0| Integrate Account Payment Purchase with Stock
[account_payment_purchase](account_payment_purchase/) | 2.0.1.0.0| Adds Bank Account and Payment Mode on Purchase Orders
[account_payment_mode](account_payment_mode/) | 2.0.1.0.1| Account Payment Mode
[account_payment_partner](account_payment_partner/) | 2.0.1.1.2| Adds payment mode on partners and invoices
[account_banking_pain_base](account_banking_pain_base/) | 2.0.1.0.0| Base module for PAIN file generation
[account_banking_sepa_direct_debit](account_banking_sepa_direct_debit/) | 2.0.1.1.0| Create SEPA files for Direct Debit
[account_banking_sepa_credit_transfer](account_banking_sepa_credit_transfer/) | 2.0.1.0.0| Create SEPA XML files for Credit Transfers
[account_banking_pain_base](account_banking_pain_base/) | 2.0.1.0.0| Base module for PAIN file generation
[account_payment_sale](account_payment_sale/) | 2.0.1.0.0| Adds payment mode on sale orders
[account_banking_mandate](account_banking_mandate/) | 2.0.1.1.0| Banking mandates
[account_payment_mode](account_payment_mode/) | 2.0.1.0.1| Account Payment Mode

View File

@ -17,7 +17,6 @@ Most of the files are
Copyright 2020 Tecnativa - Carlos Dauden
Copyright 2021 Opener B.V. - Stefan Rijnhart <stefan@opener.amsterdam>
© 2013-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
Copyright 2018 Flectra Community
Many files also contain contributions from third

View File

@ -15,8 +15,8 @@ Most of the files are
Copyright 2017 Tecnativa - Pedro M. Baeza
Copyright 2019 ACSONE SA/NV
Copyright 2021 Tecnativa - Carlos Roca
© 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza
© 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
© 2013 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
Copyright 2018 Flectra Community
Many files also contain contributions from third

View File

@ -1,7 +1,6 @@
Most of the files are
:Copyright: This stylesheet has been placed in the public domain.
<!-- Copyright 2015-2017 Tecnativa
Copyright 2013-2016 Akretion - Alexis de Lattre
Copyright 2013-2020 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
Copyright 2013-2020 Akretion (www.akretion.com)

View File

@ -1,7 +1,6 @@
Most of the files are
:Copyright: This stylesheet has been placed in the public domain.
<!-- Copyright 2019 ACSONE SA/NV
Copyright 2015-2016 Akretion - Alexis de Lattre
Copyright 2017 Camptocamp SA
Copyright 2017 Creu Blanca
@ -10,17 +9,18 @@ Most of the files are
Copyright 2019 Tecnativa - Pedro M. Baeza
© 2009 EduSense BV (<http://www.edusense.nl>)
© 2011-2013 Therp BV (<https://therp.nl>)
© 2013-2014 ACSONE SA (<https://acsone.eu>).
© 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza
© 2014-2015 ACSONE SA/NV (<https://acsone.eu>)
© 2014-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
© 2014-2016 Serv. Tecnol. Avanzados - Pedro M. Baeza
© 2014-2016 Tecnativa - Pedro M. Baeza
© 2015-2016 Akretion (https://www.akretion.com/)
© 2016 Akretion (<https://www.akretion.com>)
© 2016 Akretion (Alexis de Lattre - alexis.delattre@akretion.com)
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
© 2016 Akretion (https://www.akretion.com/)
© 2016 Aselcis (<https://www.aselcis.com>).
© 2016 Serv. Tecnol. Avanzados - Pedro M. Baeza
© 2017 Acsone SA/NV (<https://www.acsone.eu>)
© 2017 Camptocamp SA
© 2017 Creu Blanca
Copyright 2018 Flectra Community