mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-23 06:02:03 +00:00
Automatic Update form OCA2FC Migrator
This commit is contained in:
parent
cffdc15091
commit
e15b18c7c1
126
.gitlab-ci.yml
126
.gitlab-ci.yml
@ -23,7 +23,6 @@ test_all_modules:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt-get install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -44,15 +43,16 @@ test_all_modules:
|
|||||||
--db_password flectra
|
--db_password flectra
|
||||||
--database test_all
|
--database test_all
|
||||||
--test-enable
|
--test-enable
|
||||||
--init account_invoice_start_end_dates,account_cutoff_base,account_cutoff_accrual_subscription,account_cutoff_accrual_picking,account_multicurrency_revaluation,account_cutoff_start_end_dates
|
--init account_invoice_start_end_dates,account_cutoff_start_end_dates,account_fiscal_year_closing,account_cutoff_base,account_cutoff_accrual_picking,account_multicurrency_revaluation,account_cutoff_accrual_subscription
|
||||||
--stop-after-init
|
--stop-after-init
|
||||||
--log-level error
|
--log-level error
|
||||||
--log-handler flectra.addons.account_invoice_start_end_dates:TEST
|
--log-handler flectra.addons.account_invoice_start_end_dates:TEST
|
||||||
|
--log-handler flectra.addons.account_cutoff_start_end_dates:TEST
|
||||||
|
--log-handler flectra.addons.account_fiscal_year_closing:TEST
|
||||||
--log-handler flectra.addons.account_cutoff_base:TEST
|
--log-handler flectra.addons.account_cutoff_base:TEST
|
||||||
--log-handler flectra.addons.account_cutoff_accrual_subscription:TEST
|
|
||||||
--log-handler flectra.addons.account_cutoff_accrual_picking:TEST
|
--log-handler flectra.addons.account_cutoff_accrual_picking:TEST
|
||||||
--log-handler flectra.addons.account_multicurrency_revaluation:TEST
|
--log-handler flectra.addons.account_multicurrency_revaluation:TEST
|
||||||
--log-handler flectra.addons.account_cutoff_start_end_dates:TEST
|
--log-handler flectra.addons.account_cutoff_accrual_subscription:TEST
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
@ -64,7 +64,6 @@ test_module_account_invoice_start_end_dates:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -89,6 +88,70 @@ test_module_account_invoice_start_end_dates:
|
|||||||
--log-level error
|
--log-level error
|
||||||
--log-handler flectra.addons.account_invoice_start_end_dates:TEST"
|
--log-handler flectra.addons.account_invoice_start_end_dates:TEST"
|
||||||
|
|
||||||
|
test_module_account_cutoff_start_end_dates:
|
||||||
|
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
|
||||||
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
|
- su - flectra -c "mkdir ~/others"
|
||||||
|
- 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_cutoff_start_end_dates
|
||||||
|
- psql -h psql -U flectra -d test_account_cutoff_start_end_dates -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_cutoff_start_end_dates
|
||||||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_cutoff_start_end_dates
|
||||||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||||||
|
--addons-path ${CI_PROJECT_DIR}
|
||||||
|
--db_host psql
|
||||||
|
--db_port 5432
|
||||||
|
--db_user flectra
|
||||||
|
--db_password flectra
|
||||||
|
--database test_account_cutoff_start_end_dates
|
||||||
|
--test-enable -i account_cutoff_start_end_dates
|
||||||
|
--stop-after-init
|
||||||
|
--log-level error
|
||||||
|
--log-handler flectra.addons.account_cutoff_start_end_dates:TEST"
|
||||||
|
|
||||||
|
test_module_account_fiscal_year_closing:
|
||||||
|
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
|
||||||
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
|
- su - flectra -c "mkdir ~/others"
|
||||||
|
- 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_fiscal_year_closing
|
||||||
|
- psql -h psql -U flectra -d test_account_fiscal_year_closing -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_fiscal_year_closing
|
||||||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_fiscal_year_closing
|
||||||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||||||
|
--addons-path ${CI_PROJECT_DIR}
|
||||||
|
--db_host psql
|
||||||
|
--db_port 5432
|
||||||
|
--db_user flectra
|
||||||
|
--db_password flectra
|
||||||
|
--database test_account_fiscal_year_closing
|
||||||
|
--test-enable -i account_fiscal_year_closing
|
||||||
|
--stop-after-init
|
||||||
|
--log-level error
|
||||||
|
--log-handler flectra.addons.account_fiscal_year_closing:TEST"
|
||||||
|
|
||||||
test_module_account_cutoff_base:
|
test_module_account_cutoff_base:
|
||||||
stage: testsingle
|
stage: testsingle
|
||||||
when: on_failure
|
when: on_failure
|
||||||
@ -97,7 +160,6 @@ test_module_account_cutoff_base:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -122,39 +184,6 @@ test_module_account_cutoff_base:
|
|||||||
--log-level error
|
--log-level error
|
||||||
--log-handler flectra.addons.account_cutoff_base:TEST"
|
--log-handler flectra.addons.account_cutoff_base:TEST"
|
||||||
|
|
||||||
test_module_account_cutoff_accrual_subscription:
|
|
||||||
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"
|
|
||||||
- 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_cutoff_accrual_subscription
|
|
||||||
- psql -h psql -U flectra -d test_account_cutoff_accrual_subscription -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_cutoff_accrual_subscription
|
|
||||||
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_cutoff_accrual_subscription
|
|
||||||
- su - flectra -c "/opt/flectra/flectra-bin
|
|
||||||
--addons-path ${CI_PROJECT_DIR}
|
|
||||||
--db_host psql
|
|
||||||
--db_port 5432
|
|
||||||
--db_user flectra
|
|
||||||
--db_password flectra
|
|
||||||
--database test_account_cutoff_accrual_subscription
|
|
||||||
--test-enable -i account_cutoff_accrual_subscription
|
|
||||||
--stop-after-init
|
|
||||||
--log-level error
|
|
||||||
--log-handler flectra.addons.account_cutoff_accrual_subscription:TEST"
|
|
||||||
|
|
||||||
test_module_account_cutoff_accrual_picking:
|
test_module_account_cutoff_accrual_picking:
|
||||||
stage: testsingle
|
stage: testsingle
|
||||||
when: on_failure
|
when: on_failure
|
||||||
@ -163,7 +192,6 @@ test_module_account_cutoff_accrual_picking:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -196,7 +224,6 @@ test_module_account_multicurrency_revaluation:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -221,7 +248,7 @@ test_module_account_multicurrency_revaluation:
|
|||||||
--log-level error
|
--log-level error
|
||||||
--log-handler flectra.addons.account_multicurrency_revaluation:TEST"
|
--log-handler flectra.addons.account_multicurrency_revaluation:TEST"
|
||||||
|
|
||||||
test_module_account_cutoff_start_end_dates:
|
test_module_account_cutoff_accrual_subscription:
|
||||||
stage: testsingle
|
stage: testsingle
|
||||||
when: on_failure
|
when: on_failure
|
||||||
image:
|
image:
|
||||||
@ -229,7 +256,6 @@ test_module_account_cutoff_start_end_dates:
|
|||||||
entrypoint: ["/bin/sh", "-c"]
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- apt-get install -y p7zip-full
|
- apt-get install -y p7zip-full
|
||||||
- apt install -y expect-dev
|
|
||||||
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
- pip3 install -r ${CI_PROJECT_DIR}/requirements.txt
|
||||||
- su - flectra -c "mkdir ~/others"
|
- su - flectra -c "mkdir ~/others"
|
||||||
- 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
|
- 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
|
||||||
@ -237,20 +263,20 @@ test_module_account_cutoff_start_end_dates:
|
|||||||
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
- 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
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||||||
- export PGPASSWORD="flectra"
|
- export PGPASSWORD="flectra"
|
||||||
- createdb -h psql -U flectra -O flectra -T template1 test_account_cutoff_start_end_dates
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_cutoff_accrual_subscription
|
||||||
- psql -h psql -U flectra -d test_account_cutoff_start_end_dates -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
- psql -h psql -U flectra -d test_account_cutoff_accrual_subscription -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||||||
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||||||
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_cutoff_start_end_dates
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_cutoff_accrual_subscription
|
||||||
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_cutoff_start_end_dates
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_cutoff_accrual_subscription
|
||||||
- su - flectra -c "/opt/flectra/flectra-bin
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||||||
--addons-path ${CI_PROJECT_DIR}
|
--addons-path ${CI_PROJECT_DIR}
|
||||||
--db_host psql
|
--db_host psql
|
||||||
--db_port 5432
|
--db_port 5432
|
||||||
--db_user flectra
|
--db_user flectra
|
||||||
--db_password flectra
|
--db_password flectra
|
||||||
--database test_account_cutoff_start_end_dates
|
--database test_account_cutoff_accrual_subscription
|
||||||
--test-enable -i account_cutoff_start_end_dates
|
--test-enable -i account_cutoff_accrual_subscription
|
||||||
--stop-after-init
|
--stop-after-init
|
||||||
--log-level error
|
--log-level error
|
||||||
--log-handler flectra.addons.account_cutoff_start_end_dates:TEST"
|
--log-handler flectra.addons.account_cutoff_accrual_subscription:TEST"
|
||||||
|
|
||||||
|
13
README.md
13
README.md
@ -9,11 +9,12 @@ Available addons
|
|||||||
|
|
||||||
addon | version | summary
|
addon | version | summary
|
||||||
--- | --- | ---
|
--- | --- | ---
|
||||||
[account_invoice_start_end_dates](account_invoice_start_end_dates/) | 2.0.1.1.0| Adds start/end dates on invoice/move lines
|
[account_invoice_start_end_dates](account_invoice_start_end_dates/) | 2.0.1.2.0| Adds start/end dates on invoice/move lines
|
||||||
[account_cutoff_base](account_cutoff_base/) | 2.0.1.2.1| Base module for Account Cut-offs
|
[account_cutoff_start_end_dates](account_cutoff_start_end_dates/) | 2.0.1.1.0| Cutoffs based on start/end dates
|
||||||
[account_cutoff_accrual_subscription](account_cutoff_accrual_subscription/) | 2.0.1.0.0| Accrued expenses based on subscriptions
|
[account_fiscal_year_closing](account_fiscal_year_closing/) | 2.0.1.0.1| Generic fiscal year closing wizard
|
||||||
[account_cutoff_accrual_picking](account_cutoff_accrual_picking/) | 2.0.1.1.0| Accrued expense & accrued revenue from pickings
|
[account_cutoff_base](account_cutoff_base/) | 2.0.1.4.0| Base module for Account Cut-offs
|
||||||
[account_multicurrency_revaluation](account_multicurrency_revaluation/) | 2.0.1.0.0| Manage revaluation for multicurrency environment
|
[account_cutoff_accrual_picking](account_cutoff_accrual_picking/) | 2.0.1.2.0| Accrued expense & accrued revenue from pickings
|
||||||
[account_cutoff_start_end_dates](account_cutoff_start_end_dates/) | 2.0.1.0.0| Cutoffs based on start/end dates
|
[account_multicurrency_revaluation](account_multicurrency_revaluation/) | 2.0.1.1.0| Manage revaluation for multicurrency environment
|
||||||
|
[account_cutoff_accrual_subscription](account_cutoff_accrual_subscription/) | 2.0.2.0.0| Accrued expenses based on subscriptions
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "Account Cut-off Accrual Picking",
|
"name": "Account Cut-off Accrual Picking",
|
||||||
"version": "2.0.1.1.0",
|
"version": "2.0.1.2.0",
|
||||||
"category": "Accounting",
|
"category": "Accounting",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Accrued expense & accrued revenue from pickings",
|
"summary": "Accrued expense & accrued revenue from pickings",
|
||||||
|
@ -78,6 +78,52 @@ msgstr ""
|
|||||||
msgid "Picking Analysis Interval"
|
msgid "Picking Analysis Interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity minus invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
||||||
|
@ -19,13 +19,7 @@ msgstr ""
|
|||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s line ID %d"
|
msgid "%s: %s"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "%s line ID %d: %s"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
@ -33,18 +27,6 @@ msgstr ""
|
|||||||
msgid "Account Cut-off"
|
msgid "Account Cut-off"
|
||||||
msgstr "Abgrenzungskonto"
|
msgstr "Abgrenzungskonto"
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Accrued Expense Tax Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Accrued Revenue Tax Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model,name:account_cutoff_accrual_picking.model_res_company
|
#: model:ir.model,name:account_cutoff_accrual_picking.model_res_company
|
||||||
msgid "Companies"
|
msgid "Companies"
|
||||||
@ -56,16 +38,25 @@ msgid "Config Settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_account_cutoff__display_name
|
||||||
#, python-format
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_company__display_name
|
||||||
msgid "Invoice %s line ID %d"
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_config_settings__display_name
|
||||||
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_account_cutoff__id
|
||||||
#, python-format
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_company__id
|
||||||
msgid "Missing '%s' on tax '%s'."
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_config_settings__id
|
||||||
msgstr "Fehlende '%s' bei Steuer '%s'."
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_account_cutoff____last_update
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_company____last_update
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_picking.field_res_config_settings____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
@ -93,6 +84,52 @@ msgstr ""
|
|||||||
msgid "Picking Analysis Interval"
|
msgid "Picking Analysis Interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity minus invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
||||||
@ -116,6 +153,10 @@ msgstr ""
|
|||||||
msgid "days"
|
msgid "days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, python-format
|
||||||
|
#~ msgid "Missing '%s' on tax '%s'."
|
||||||
|
#~ msgstr "Fehlende '%s' bei Steuer '%s'."
|
||||||
|
|
||||||
#~ msgid "Account Cut-off Line"
|
#~ msgid "Account Cut-off Line"
|
||||||
#~ msgstr "Abgrenzungsposten"
|
#~ msgstr "Abgrenzungsposten"
|
||||||
|
|
||||||
|
@ -79,12 +79,57 @@ msgstr ""
|
|||||||
msgid "Picking Analysis Interval"
|
msgid "Picking Analysis Interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity minus invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
||||||
msgid ""
|
msgid ""
|
||||||
"The value of the field 'Picking Analysis Interval' must be strictly "
|
"The value of the field 'Picking Analysis Interval' must be strictly positive."
|
||||||
"positive."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
|
@ -81,12 +81,57 @@ msgstr ""
|
|||||||
msgid "Picking Analysis Interval"
|
msgid "Picking Analysis Interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity minus invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
||||||
msgid ""
|
msgid ""
|
||||||
"The value of the field 'Picking Analysis Interval' must be strictly "
|
"The value of the field 'Picking Analysis Interval' must be strictly positive."
|
||||||
"positive."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
|
@ -85,12 +85,57 @@ msgstr ""
|
|||||||
msgid "Picking Analysis Interval"
|
msgid "Picking Analysis Interval"
|
||||||
msgstr "Intervallo analisi prelievi"
|
msgstr "Intervallo analisi prelievi"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity minus invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff delivered quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity details:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Pre-cutoff invoiced quantity:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_picking
|
||||||
|
#: code:addons/account_cutoff_accrual_picking/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_picking
|
#. module: account_cutoff_accrual_picking
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_account_cutoff_picking_interval_days_positive
|
||||||
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
#: model:ir.model.constraint,message:account_cutoff_accrual_picking.constraint_res_company_cutoff_picking_interval_days_positive
|
||||||
msgid ""
|
msgid ""
|
||||||
"The value of the field 'Picking Analysis Interval' must be strictly "
|
"The value of the field 'Picking Analysis Interval' must be strictly positive."
|
||||||
"positive."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il valore del campo \"Intervallo analisi prelievi\" deve essere strettamente "
|
"Il valore del campo \"Intervallo analisi prelievi\" deve essere strettamente "
|
||||||
"positivo."
|
"positivo."
|
||||||
|
@ -2,11 +2,15 @@
|
|||||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
import pytz
|
||||||
from dateutil.relativedelta import relativedelta
|
from dateutil.relativedelta import relativedelta
|
||||||
|
|
||||||
from flectra import _, api, fields, models
|
from flectra import _, api, fields, models
|
||||||
from flectra.exceptions import UserError
|
from flectra.exceptions import UserError
|
||||||
from flectra.tools import float_compare, float_is_zero
|
from flectra.tools import float_is_zero
|
||||||
|
from flectra.tools.misc import format_date, format_datetime, formatLang
|
||||||
|
|
||||||
|
|
||||||
class AccountCutoff(models.Model):
|
class AccountCutoff(models.Model):
|
||||||
@ -58,6 +62,47 @@ class AccountCutoff(models.Model):
|
|||||||
accrual_account_id = account_mapping[account_id]
|
accrual_account_id = account_mapping[account_id]
|
||||||
else:
|
else:
|
||||||
accrual_account_id = account_id
|
accrual_account_id = account_id
|
||||||
|
uom_name = vdict["product"].uom_id.name
|
||||||
|
notes = vdict["notes"]
|
||||||
|
precut_delivered_qty_fl = formatLang(
|
||||||
|
self.env, vdict.get("precut_delivered_qty", 0), dp="Product Unit of Measure"
|
||||||
|
)
|
||||||
|
notes += (
|
||||||
|
"\n"
|
||||||
|
+ _("Pre-cutoff delivered quantity:")
|
||||||
|
+ " %s %s"
|
||||||
|
% (
|
||||||
|
precut_delivered_qty_fl,
|
||||||
|
uom_name,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if vdict.get("precut_delivered_logs"):
|
||||||
|
notes += (
|
||||||
|
"\n"
|
||||||
|
+ _("Pre-cutoff delivered quantity details:")
|
||||||
|
+ "\n%s" % "\n".join(vdict["precut_delivered_logs"])
|
||||||
|
)
|
||||||
|
precut_invoiced_qty_fl = formatLang(
|
||||||
|
self.env, vdict.get("precut_invoiced_qty", 0), dp="Product Unit of Measure"
|
||||||
|
)
|
||||||
|
notes += (
|
||||||
|
"\n"
|
||||||
|
+ _("Pre-cutoff invoiced quantity:")
|
||||||
|
+ " %s %s" % (precut_invoiced_qty_fl, uom_name)
|
||||||
|
)
|
||||||
|
if vdict.get("precut_invoiced_logs"):
|
||||||
|
notes += (
|
||||||
|
"\n"
|
||||||
|
+ _("Pre-cutoff invoiced quantity details:")
|
||||||
|
+ "\n%s" % "\n".join(vdict["precut_invoiced_logs"])
|
||||||
|
)
|
||||||
|
qty_fl = formatLang(self.env, qty, dp="Product Unit of Measure")
|
||||||
|
notes += (
|
||||||
|
"\n"
|
||||||
|
+ _("Pre-cutoff delivered quantity minus invoiced quantity:")
|
||||||
|
+ " %s %s" % (qty_fl, uom_name)
|
||||||
|
)
|
||||||
|
|
||||||
vals = {
|
vals = {
|
||||||
"parent_id": self.id,
|
"parent_id": self.id,
|
||||||
"partner_id": vdict["partner"].id,
|
"partner_id": vdict["partner"].id,
|
||||||
@ -71,6 +116,7 @@ class AccountCutoff(models.Model):
|
|||||||
"amount": amount,
|
"amount": amount,
|
||||||
"cutoff_amount": amount_company_currency,
|
"cutoff_amount": amount_company_currency,
|
||||||
"price_origin": vdict.get("price_origin"),
|
"price_origin": vdict.get("price_origin"),
|
||||||
|
"notes": notes,
|
||||||
}
|
}
|
||||||
|
|
||||||
if vdict["taxes"] and self.company_id.accrual_taxes:
|
if vdict["taxes"] and self.company_id.accrual_taxes:
|
||||||
@ -89,7 +135,9 @@ class AccountCutoff(models.Model):
|
|||||||
)
|
)
|
||||||
return vals
|
return vals
|
||||||
|
|
||||||
def order_line_update_oline_dict(self, order_line, order_type, oline_dict):
|
def order_line_update_oline_dict(
|
||||||
|
self, order_line, order_type, oline_dict, cutoff_datetime
|
||||||
|
):
|
||||||
assert order_line not in oline_dict
|
assert order_line not in oline_dict
|
||||||
dpo = self.env["decimal.precision"]
|
dpo = self.env["decimal.precision"]
|
||||||
qty_prec = dpo.precision_get("Product Unit of Measure")
|
qty_prec = dpo.precision_get("Product Unit of Measure")
|
||||||
@ -101,35 +149,105 @@ class AccountCutoff(models.Model):
|
|||||||
ilines = order_line.invoice_lines
|
ilines = order_line.invoice_lines
|
||||||
oline_dict[order_line] = {
|
oline_dict[order_line] = {
|
||||||
"precut_delivered_qty": 0.0, # in product_uom
|
"precut_delivered_qty": 0.0, # in product_uom
|
||||||
|
"precut_delivered_logs": [],
|
||||||
"precut_invoiced_qty": 0.0, # in product_uom
|
"precut_invoiced_qty": 0.0, # in product_uom
|
||||||
|
"precut_invoiced_logs": [],
|
||||||
"name": _("%s: %s") % (order.name, order_line.name),
|
"name": _("%s: %s") % (order.name, order_line.name),
|
||||||
"product": product,
|
"product": product,
|
||||||
"partner": order.partner_id.commercial_partner_id,
|
"partner": order.partner_id.commercial_partner_id,
|
||||||
|
"notes": "",
|
||||||
}
|
}
|
||||||
if order_type == "purchase":
|
if order_type == "purchase":
|
||||||
invoice_type = "in_invoice"
|
ordered_qty = order_line.product_uom._compute_quantity(
|
||||||
|
order_line.product_qty, product_uom
|
||||||
|
)
|
||||||
|
oline_dict[order_line]["notes"] = _(
|
||||||
|
"Purchase order %s confirmed on %s\n"
|
||||||
|
"Purchase Order Line: %s (ordered qty: %s %s)"
|
||||||
|
) % (
|
||||||
|
order.name,
|
||||||
|
format_datetime(self.env, order.date_approve),
|
||||||
|
order_line.name,
|
||||||
|
formatLang(self.env, ordered_qty, dp="Product Unit of Measure"),
|
||||||
|
product_uom.name,
|
||||||
|
)
|
||||||
elif order_type == "sale":
|
elif order_type == "sale":
|
||||||
invoice_type = "out_invoice"
|
ordered_qty = order_line.product_uom._compute_quantity(
|
||||||
|
order_line.product_uom_qty, product_uom
|
||||||
|
)
|
||||||
|
oline_dict[order_line]["notes"] = _(
|
||||||
|
"Sale order %s confirmed on %s\n"
|
||||||
|
"Sale Order Line: %s (ordered qty: %s %s)"
|
||||||
|
) % (
|
||||||
|
order.name,
|
||||||
|
format_datetime(self.env, order.date_order),
|
||||||
|
order_line.name,
|
||||||
|
formatLang(self.env, ordered_qty, dp="Product Unit of Measure"),
|
||||||
|
product_uom.name,
|
||||||
|
)
|
||||||
for move in moves:
|
for move in moves:
|
||||||
# TODO: improve comparaison of date and datetime
|
if move.state == "done" and move.date <= cutoff_datetime:
|
||||||
# for our friends far away from GMT
|
sign = 0
|
||||||
if move.state == "done" and move.date.date() <= self.cutoff_date:
|
if (
|
||||||
move_qty = move.product_uom._compute_quantity(
|
move.location_id.usage != "internal"
|
||||||
move.product_uom_qty, product_uom
|
and move.location_dest_id.usage == "internal"
|
||||||
)
|
):
|
||||||
oline_dict[order_line]["precut_delivered_qty"] += move_qty
|
# purchase: regular move ; sale: reverse move
|
||||||
|
sign = order_type == "purchase" and 1 or -1
|
||||||
|
elif (
|
||||||
|
move.location_id.usage == "internal"
|
||||||
|
and move.location_dest_id.usage != "internal"
|
||||||
|
):
|
||||||
|
# purchase: reverse move ; sale: regular move
|
||||||
|
sign = order_type == "sale" and 1 or -1
|
||||||
|
if sign:
|
||||||
|
move_qty = move.product_uom._compute_quantity(
|
||||||
|
move.product_uom_qty * sign, product_uom
|
||||||
|
)
|
||||||
|
oline_dict[order_line]["precut_delivered_qty"] += move_qty
|
||||||
|
move_qty_formatted = formatLang(
|
||||||
|
self.env, move_qty, dp="Product Unit of Measure"
|
||||||
|
)
|
||||||
|
oline_dict[order_line]["precut_delivered_logs"].append(
|
||||||
|
" • %s %s (picking %s transfered on %s from %s to %s)"
|
||||||
|
% (
|
||||||
|
move_qty_formatted,
|
||||||
|
move.product_id.uom_id.name,
|
||||||
|
move.picking_id.name or "none",
|
||||||
|
format_datetime(self.env, move.date),
|
||||||
|
move.location_id.display_name,
|
||||||
|
move.location_dest_id.display_name,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
price_origin = False
|
price_origin = False
|
||||||
|
move_type2label = dict(
|
||||||
|
self.env["account.move"].fields_get("move_type", "selection")["move_type"][
|
||||||
|
"selection"
|
||||||
|
]
|
||||||
|
)
|
||||||
for iline in ilines:
|
for iline in ilines:
|
||||||
invoice = iline.move_id
|
invoice = iline.move_id
|
||||||
if (
|
if not float_is_zero(iline.quantity, precision_digits=qty_prec):
|
||||||
invoice.move_type == invoice_type
|
sign = invoice.move_type in ("out_refund", "in_refund") and -1 or 1
|
||||||
and float_compare(iline.quantity, 0, precision_digits=qty_prec) > 0
|
|
||||||
):
|
|
||||||
iline_qty_puom = iline.product_uom_id._compute_quantity(
|
iline_qty_puom = iline.product_uom_id._compute_quantity(
|
||||||
iline.quantity, product_uom
|
iline.quantity * sign, product_uom
|
||||||
)
|
)
|
||||||
if invoice.date <= self.cutoff_date:
|
if invoice.date <= self.cutoff_date:
|
||||||
oline_dict[order_line]["precut_invoiced_qty"] += iline_qty_puom
|
oline_dict[order_line]["precut_invoiced_qty"] += iline_qty_puom
|
||||||
|
iline_qty_puom_formatted = formatLang(
|
||||||
|
self.env, iline_qty_puom, dp="Product Unit of Measure"
|
||||||
|
)
|
||||||
|
oline_dict[order_line]["precut_invoiced_logs"].append(
|
||||||
|
" • %s %s (%s %s dated %s)"
|
||||||
|
% (
|
||||||
|
iline_qty_puom_formatted,
|
||||||
|
iline.product_id.uom_id.name,
|
||||||
|
move_type2label[invoice.move_type],
|
||||||
|
invoice.name,
|
||||||
|
format_date(self.env, invoice.date),
|
||||||
|
)
|
||||||
|
)
|
||||||
# Most recent invoice line used for price_unit, account,...
|
# Most recent invoice line used for price_unit, account,...
|
||||||
price_unit = iline.price_subtotal / iline_qty_puom
|
price_unit = iline.price_subtotal / iline_qty_puom
|
||||||
price_origin = invoice.name
|
price_origin = invoice.name
|
||||||
@ -188,7 +306,7 @@ class AccountCutoff(models.Model):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
def stock_move_update_oline_dict(self, move_line, oline_dict):
|
def stock_move_update_oline_dict(self, move_line, oline_dict, cutoff_datetime):
|
||||||
dpo = self.env["decimal.precision"]
|
dpo = self.env["decimal.precision"]
|
||||||
qty_prec = dpo.precision_get("Product Unit of Measure")
|
qty_prec = dpo.precision_get("Product Unit of Measure")
|
||||||
if self.cutoff_type == "accrued_expense":
|
if self.cutoff_type == "accrued_expense":
|
||||||
@ -200,7 +318,7 @@ class AccountCutoff(models.Model):
|
|||||||
)
|
)
|
||||||
):
|
):
|
||||||
self.order_line_update_oline_dict(
|
self.order_line_update_oline_dict(
|
||||||
move_line.purchase_line_id, "purchase", oline_dict
|
move_line.purchase_line_id, "purchase", oline_dict, cutoff_datetime
|
||||||
)
|
)
|
||||||
elif self.cutoff_type == "accrued_revenue":
|
elif self.cutoff_type == "accrued_revenue":
|
||||||
if (
|
if (
|
||||||
@ -211,7 +329,7 @@ class AccountCutoff(models.Model):
|
|||||||
)
|
)
|
||||||
):
|
):
|
||||||
self.order_line_update_oline_dict(
|
self.order_line_update_oline_dict(
|
||||||
move_line.sale_line_id, "sale", oline_dict
|
move_line.sale_line_id, "sale", oline_dict, cutoff_datetime
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_lines(self):
|
def get_lines(self):
|
||||||
@ -229,16 +347,14 @@ class AccountCutoff(models.Model):
|
|||||||
|
|
||||||
# Create account mapping dict
|
# Create account mapping dict
|
||||||
account_mapping = self._get_mapping_dict()
|
account_mapping = self._get_mapping_dict()
|
||||||
|
cutoff_datetime = self._get_cutoff_datetime()
|
||||||
|
min_date_dt = cutoff_datetime - relativedelta(days=self.picking_interval_days)
|
||||||
|
|
||||||
min_date_dt = self.cutoff_date - relativedelta(days=self.picking_interval_days)
|
|
||||||
|
|
||||||
# TODO date_done is a Datetime field, so maybe we need more clever code
|
|
||||||
# for our friends which are far away from GMT
|
|
||||||
pickings = spo.search(
|
pickings = spo.search(
|
||||||
[
|
[
|
||||||
("picking_type_code", "=", pick_type_map[cutoff_type]),
|
("picking_type_code", "=", pick_type_map[cutoff_type]),
|
||||||
("state", "=", "done"),
|
("state", "=", "done"),
|
||||||
("date_done", "<=", self.cutoff_date),
|
("date_done", "<=", cutoff_datetime),
|
||||||
("date_done", ">=", min_date_dt),
|
("date_done", ">=", min_date_dt),
|
||||||
("company_id", "=", self.company_id.id),
|
("company_id", "=", self.company_id.id),
|
||||||
]
|
]
|
||||||
@ -254,7 +370,7 @@ class AccountCutoff(models.Model):
|
|||||||
# -> we use precut_delivered_qty - precut_invoiced_qty
|
# -> we use precut_delivered_qty - precut_invoiced_qty
|
||||||
for p in pickings:
|
for p in pickings:
|
||||||
for move in p.move_lines.filtered(lambda m: m.state == "done"):
|
for move in p.move_lines.filtered(lambda m: m.state == "done"):
|
||||||
self.stock_move_update_oline_dict(move, oline_dict)
|
self.stock_move_update_oline_dict(move, oline_dict, cutoff_datetime)
|
||||||
|
|
||||||
# from pprint import pprint
|
# from pprint import pprint
|
||||||
# pprint(oline_dict)
|
# pprint(oline_dict)
|
||||||
@ -263,3 +379,12 @@ class AccountCutoff(models.Model):
|
|||||||
if vals:
|
if vals:
|
||||||
aclo.create(vals)
|
aclo.create(vals)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
def _get_cutoff_datetime(self):
|
||||||
|
self.ensure_one()
|
||||||
|
cutoff_date = datetime.combine(self.cutoff_date, datetime.max.time())
|
||||||
|
tz = self.env.user.tz and pytz.timezone(self.env.user.tz) or pytz.utc
|
||||||
|
cutoff_datetime_aware = tz.localize(cutoff_date)
|
||||||
|
cutoff_datetime_utc = cutoff_datetime_aware.astimezone(pytz.utc)
|
||||||
|
cutoff_datetime_utc_naive = cutoff_datetime_utc.replace(tzinfo=None)
|
||||||
|
return cutoff_datetime_utc_naive
|
||||||
|
@ -4,6 +4,7 @@ Most of the files are
|
|||||||
Copyright 2018-2022 Akretion France (http://www.akretion.com/)
|
Copyright 2018-2022 Akretion France (http://www.akretion.com/)
|
||||||
Copyright 2019-2021 Akretion France (http://www.akretion.com/)
|
Copyright 2019-2021 Akretion France (http://www.akretion.com/)
|
||||||
Copyright 2019-2022 Akretion France (http://www.akretion.com/)
|
Copyright 2019-2022 Akretion France (http://www.akretion.com/)
|
||||||
|
Copyright 2023 Akretion France (http://www.akretion.com/)
|
||||||
Copyright 2018 Flectra Community
|
Copyright 2018 Flectra Community
|
||||||
|
|
||||||
Many files also contain contributions from third
|
Many files also contain contributions from third
|
||||||
|
@ -35,7 +35,7 @@ This module allows you to easily compute accrued expenses (and accrued revenues)
|
|||||||
Configuration
|
Configuration
|
||||||
=============
|
=============
|
||||||
|
|
||||||
Go to the menu *Accounting > Configuration > Cut-offs > Subscriptions* and create subscriptions: they are used as the expected expenses (or revenue). For exemple, you may create a subscription for your office rental, your Internet access, your insurance contracts, etc.
|
Go to the menu *Accounting > Configuration > Accounting > Subscriptions* and create subscriptions: they are used as the expected expenses (or revenue). For exemple, you may create a subscription for your office rental, your Internet access, your insurance contracts, etc.
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "Account Accrual Subscriptions",
|
"name": "Account Accrual Subscriptions",
|
||||||
"version": "2.0.1.0.0",
|
"version": "2.0.2.0.0",
|
||||||
"category": "Accounting",
|
"category": "Accounting",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Accrued expenses based on subscriptions",
|
"summary": "Accrued expenses based on subscriptions",
|
||||||
@ -16,6 +16,7 @@
|
|||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
"security/ir_rule.xml",
|
"security/ir_rule.xml",
|
||||||
"views/account_cutoff_accrual_subscription.xml",
|
"views/account_cutoff_accrual_subscription.xml",
|
||||||
|
"views/account_cutoff_line.xml",
|
||||||
],
|
],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,18 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Plural-Forms: \n"
|
"Plural-Forms: \n"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "%s → %s%s: %s %s over min. amount ⇒ no provisionning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "%s → %s%s: %s %s under min. amount ⇒provisionning %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -31,6 +43,11 @@ msgstr ""
|
|||||||
msgid "Account Cut-off"
|
msgid "Account Cut-off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model,name:account_cutoff_accrual_subscription.model_account_cutoff_line
|
||||||
|
msgid "Account Cut-off Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__active
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__active
|
||||||
msgid "Active"
|
msgid "Active"
|
||||||
@ -53,6 +70,14 @@ msgstr ""
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"CONFIG: %s periodicity, start date %s, min. expense amount %s, default "
|
||||||
|
"provision amount %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__company_id
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__company_id
|
||||||
msgid "Company"
|
msgid "Company"
|
||||||
@ -87,6 +112,7 @@ msgstr ""
|
|||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__display_name
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__display_name
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__display_name
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__display_name
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__display_name
|
||||||
msgid "Display Name"
|
msgid "Display Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -106,12 +132,14 @@ msgstr ""
|
|||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__id
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__id
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__id
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__id
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__id
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff____last_update
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff____last_update
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription____last_update
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription____last_update
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line____last_update
|
||||||
msgid "Last Modified on"
|
msgid "Last Modified on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -142,7 +170,7 @@ msgid "Missing source journals."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff_accrual_subscription.py:0
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Missing supplier on subscription '%s'."
|
msgid "Missing supplier on subscription '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -162,33 +190,36 @@ msgstr ""
|
|||||||
msgid "No Partner"
|
msgid "No Partner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Odoo cannot compute the fiscal year start date."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff_accrual_subscription.py:0
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff_accrual_subscription.py:0
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "On subscription %s, the start date is not the first day of a month."
|
msgid "On subscription %s, the start date is not the first day of a month."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "PERIODS:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "PRORATED min. amount %s, default provisionning amount %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__partner_type
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__partner_type
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
msgid "Partner Type"
|
msgid "Partner Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
|
||||||
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Period from %s to %s: %s %s over the minimum amount %s => no provisionning."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
|
||||||
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Period from %s to %s: %s %s under the minimum amount %s. Default "
|
|
||||||
"provisionning amount is %s => provisionning %s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__periodicity
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__periodicity
|
||||||
msgid "Periodicity"
|
msgid "Periodicity"
|
||||||
@ -222,6 +253,11 @@ msgstr ""
|
|||||||
msgid "Start Date"
|
msgid "Start Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__subscription_id
|
||||||
|
msgid "Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_form
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_form
|
||||||
msgid "Subscription Name"
|
msgid "Subscription Name"
|
||||||
@ -272,6 +308,11 @@ msgstr ""
|
|||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__type_tax_use
|
||||||
|
msgid "Type Tax Use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_accrual_subscription
|
#. module: account_cutoff_accrual_subscription
|
||||||
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__year
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__year
|
||||||
msgid "Yearly"
|
msgid "Yearly"
|
||||||
|
322
account_cutoff_accrual_subscription/i18n/it.po
Normal file
322
account_cutoff_accrual_subscription/i18n/it.po
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * account_cutoff_accrual_subscription
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 14.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"PO-Revision-Date: 2023-05-09 13:36+0000\n"
|
||||||
|
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||||
|
"Language-Team: none\n"
|
||||||
|
"Language: it\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: Weblate 4.14.1\n"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "%s → %s%s: %s %s over min. amount ⇒ no provisionning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "%s → %s%s: %s %s under min. amount ⇒provisionning %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"<p>No provision for subscription <a href=# data-oe-"
|
||||||
|
"model=account.cutoff.accrual.subscription data-oe-id=%d>%s</a>:</p>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__account_id
|
||||||
|
msgid "Account"
|
||||||
|
msgstr "Conto"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model,name:account_cutoff_accrual_subscription.model_account_cutoff
|
||||||
|
msgid "Account Cut-off"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model,name:account_cutoff_accrual_subscription.model_account_cutoff_line
|
||||||
|
msgid "Account Cut-off Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__active
|
||||||
|
msgid "Active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__analytic_account_id
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
msgid "Analytic Account"
|
||||||
|
msgstr "Conto analitico"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__partner_type__any
|
||||||
|
msgid "Any Partner"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_form
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
msgid "Archived"
|
||||||
|
msgstr "In archivio"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"CONFIG: %s periodicity, start date %s, min. expense amount %s, default "
|
||||||
|
"provision amount %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__company_id
|
||||||
|
msgid "Company"
|
||||||
|
msgstr "Azienda"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__company_currency_id
|
||||||
|
msgid "Company Currency"
|
||||||
|
msgstr "Valuta aziendale"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Computing provisions from %d subscriptions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__provision_amount
|
||||||
|
msgid "Default Provision Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__display_name
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__display_name
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nome visualizzato"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__subscription_type__expense
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
#, python-format
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
msgid "Expense Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff__id
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__id
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff____last_update
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription____last_update
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Ultima modifica il"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ultimo aggiornamento di"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Ultimo aggiornamento il"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__min_amount
|
||||||
|
msgid "Minimum Expense Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,help:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__min_amount
|
||||||
|
msgid "Minimum expense amount without taxes over the period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Missing source journals."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff_accrual_subscription.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Missing supplier on subscription '%s'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__month
|
||||||
|
msgid "Monthly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__name
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__partner_type__none
|
||||||
|
msgid "No Partner"
|
||||||
|
msgstr "Nessun partner"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Odoo cannot compute the fiscal year start date."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff_accrual_subscription.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "On subscription %s, the start date is not the first day of a month."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "PERIODS:"
|
||||||
|
msgstr "PERIODI:"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "PRORATED min. amount %s, default provisionning amount %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__partner_type
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
msgid "Partner Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__periodicity
|
||||||
|
msgid "Periodicity"
|
||||||
|
msgstr "Periodicità"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__quarter
|
||||||
|
msgid "Quarterly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__subscription_type__revenue
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
#, python-format
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__semester
|
||||||
|
msgid "Semesterly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__partner_type__one
|
||||||
|
msgid "Specific Partner"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__start_date
|
||||||
|
msgid "Start Date"
|
||||||
|
msgstr "Data inizio"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_line__subscription_id
|
||||||
|
msgid "Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_form
|
||||||
|
msgid "Subscription Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.actions.act_window,name:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_action
|
||||||
|
#: model:ir.ui.menu,name:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_menu
|
||||||
|
msgid "Subscriptions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model,name:account_cutoff_accrual_subscription.model_account_cutoff_accrual_subscription
|
||||||
|
msgid "Subscriptions to compute accrual cutoffs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__partner_id
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_accrual_subscription.account_cutoff_accrual_subscription_search
|
||||||
|
msgid "Supplier"
|
||||||
|
msgstr "Fornitore"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__tax_ids
|
||||||
|
msgid "Taxes"
|
||||||
|
msgstr "Imposte"
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: code:addons/account_cutoff_accrual_subscription/models/account_cutoff.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"The cutoffs with subscription only work when the cutoff date (%s) is the "
|
||||||
|
"last day of a month."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.constraint,message:account_cutoff_accrual_subscription.constraint_account_cutoff_accrual_subscription_provision_amount_positive
|
||||||
|
msgid "The default provision amount must be positive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.constraint,message:account_cutoff_accrual_subscription.constraint_account_cutoff_accrual_subscription_min_amount_positive
|
||||||
|
msgid "The minimum amount must be positive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__subscription_type
|
||||||
|
msgid "Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_accrual_subscription.field_account_cutoff_accrual_subscription__type_tax_use
|
||||||
|
msgid "Type Tax Use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_accrual_subscription
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_accrual_subscription.selection__account_cutoff_accrual_subscription__periodicity__year
|
||||||
|
msgid "Yearly"
|
||||||
|
msgstr ""
|
@ -6,8 +6,8 @@ from dateutil.relativedelta import relativedelta
|
|||||||
|
|
||||||
from flectra import _, fields, models
|
from flectra import _, fields, models
|
||||||
from flectra.exceptions import UserError
|
from flectra.exceptions import UserError
|
||||||
from flectra.tools import float_compare, float_is_zero, float_round
|
from flectra.tools import date_utils
|
||||||
from flectra.tools.misc import formatLang
|
from flectra.tools.misc import format_amount, format_date
|
||||||
|
|
||||||
|
|
||||||
class AccountCutoff(models.Model):
|
class AccountCutoff(models.Model):
|
||||||
@ -17,9 +17,18 @@ class AccountCutoff(models.Model):
|
|||||||
res = super().get_lines()
|
res = super().get_lines()
|
||||||
if self.cutoff_type not in ["accrued_expense", "accrued_revenue"]:
|
if self.cutoff_type not in ["accrued_expense", "accrued_revenue"]:
|
||||||
return res
|
return res
|
||||||
aml_obj = self.env["account.move.line"]
|
|
||||||
line_obj = self.env["account.cutoff.line"]
|
line_obj = self.env["account.cutoff.line"]
|
||||||
sub_obj = self.env["account.cutoff.accrual.subscription"]
|
sub_obj = self.env["account.cutoff.accrual.subscription"]
|
||||||
|
|
||||||
|
fy_start_date, fy_end_date = date_utils.get_fiscal_year(
|
||||||
|
self.cutoff_date,
|
||||||
|
day=self.company_id.fiscalyear_last_day,
|
||||||
|
month=int(self.company_id.fiscalyear_last_month),
|
||||||
|
)
|
||||||
|
if not fy_start_date:
|
||||||
|
raise UserError(_("Flectra cannot compute the fiscal year start date."))
|
||||||
|
|
||||||
type2subtype = {
|
type2subtype = {
|
||||||
"accrued_expense": "expense",
|
"accrued_expense": "expense",
|
||||||
"accrued_revenue": "revenue",
|
"accrued_revenue": "revenue",
|
||||||
@ -44,132 +53,24 @@ class AccountCutoff(models.Model):
|
|||||||
"The cutoffs with subscription only work when the cutoff "
|
"The cutoffs with subscription only work when the cutoff "
|
||||||
"date (%s) is the last day of a month."
|
"date (%s) is the last day of a month."
|
||||||
)
|
)
|
||||||
% self.cutoff_date
|
% format_date(self.env, self.cutoff_date)
|
||||||
)
|
)
|
||||||
if not self.source_journal_ids:
|
if not self.source_journal_ids:
|
||||||
raise UserError(_("Missing source journals."))
|
raise UserError(_("Missing source journals."))
|
||||||
self.message_post(
|
self.message_post(
|
||||||
body=_("Computing provisions from %d subscriptions.") % len(subs)
|
body=_("Computing provisions from %d subscriptions.") % len(subs)
|
||||||
)
|
)
|
||||||
periodicity2months = {
|
common_domain = [("journal_id", "in", self.source_journal_ids.ids)]
|
||||||
"month": 1,
|
if self.source_move_state == "posted":
|
||||||
"quarter": 3,
|
common_domain.append(("parent_state", "=", "posted"))
|
||||||
"semester": 6,
|
else:
|
||||||
"year": 12,
|
common_domain.append(("parent_state", "in", ("draft", "posted")))
|
||||||
}
|
|
||||||
company_currency = self.company_currency_id
|
|
||||||
prec = company_currency.rounding
|
|
||||||
work = {}
|
work = {}
|
||||||
# Generate time intervals and compute existing expenses/revenue
|
# Generate time intervals and compute existing expenses/revenue
|
||||||
for sub in subs:
|
for sub in subs:
|
||||||
months = periodicity2months[sub.periodicity]
|
sub._process_subscription(
|
||||||
work[sub] = {"intervals": [], "sub": sub}
|
work, fy_start_date, self.cutoff_date, common_domain, sign
|
||||||
end_date = self.cutoff_date
|
)
|
||||||
domain_base = [
|
|
||||||
("company_id", "=", sub.company_id.id),
|
|
||||||
("journal_id", "in", self.source_journal_ids.ids),
|
|
||||||
("account_id", "=", sub.account_id.id),
|
|
||||||
("analytic_account_id", "=", sub.analytic_account_id.id or False),
|
|
||||||
]
|
|
||||||
if sub.partner_type == "one":
|
|
||||||
if sub.partner_id:
|
|
||||||
domain_base.append(("partner_id", "=", sub.partner_id.id))
|
|
||||||
else:
|
|
||||||
raise UserError(
|
|
||||||
_("Missing supplier on subscription '%s'.") % sub.display_name
|
|
||||||
)
|
|
||||||
elif sub.partner_type == "none":
|
|
||||||
domain_base.append(("partner_id", "=", False))
|
|
||||||
domain_base_w_start_end = domain_base + [
|
|
||||||
("start_date", "!=", False),
|
|
||||||
("end_date", "!=", False),
|
|
||||||
]
|
|
||||||
|
|
||||||
for _i in range(int(12 / months)):
|
|
||||||
start_date = end_date + relativedelta(day=1, months=-(months - 1))
|
|
||||||
if start_date < sub.start_date:
|
|
||||||
break
|
|
||||||
# compute amount
|
|
||||||
amount = 0
|
|
||||||
# 1. No start/end dates
|
|
||||||
no_start_end_res = aml_obj.read_group(
|
|
||||||
domain_base
|
|
||||||
+ [
|
|
||||||
("date", "<=", fields.Date.to_string(end_date)),
|
|
||||||
("date", ">=", fields.Date.to_string(start_date)),
|
|
||||||
("start_date", "=", False),
|
|
||||||
("end_date", "=", False),
|
|
||||||
],
|
|
||||||
["balance"],
|
|
||||||
[],
|
|
||||||
)
|
|
||||||
amount_no_start_end = (
|
|
||||||
no_start_end_res and no_start_end_res[0]["balance"] or 0
|
|
||||||
)
|
|
||||||
amount += amount_no_start_end * sign
|
|
||||||
# 2. Start/end dates, INSIDE interval
|
|
||||||
inside_res = aml_obj.read_group(
|
|
||||||
domain_base_w_start_end
|
|
||||||
+ [
|
|
||||||
("start_date", ">=", start_date),
|
|
||||||
("end_date", "<=", end_date),
|
|
||||||
],
|
|
||||||
["balance"],
|
|
||||||
[],
|
|
||||||
)
|
|
||||||
amount_inside = inside_res and inside_res[0]["balance"] or 0
|
|
||||||
amount += amount_inside * sign
|
|
||||||
# 3. Start/end dates, OVER interval
|
|
||||||
mlines = aml_obj.search(
|
|
||||||
domain_base_w_start_end
|
|
||||||
+ [
|
|
||||||
("start_date", "<", start_date),
|
|
||||||
("end_date", ">", end_date),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
for mline in mlines:
|
|
||||||
total_days = (mline.end_date - mline.start_date).days + 1
|
|
||||||
days_in_interval = (end_date - start_date).days + 1
|
|
||||||
amount_in_interval = mline.balance * days_in_interval / total_days
|
|
||||||
amount += amount_in_interval * sign
|
|
||||||
# 4. Start/end dates, start_date before, end_date inside
|
|
||||||
mlines = aml_obj.search(
|
|
||||||
domain_base_w_start_end
|
|
||||||
+ [
|
|
||||||
("start_date", "<", start_date),
|
|
||||||
("end_date", ">=", start_date),
|
|
||||||
("end_date", "<=", end_date),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
for mline in mlines:
|
|
||||||
total_days = (mline.end_date - mline.start_date).days + 1
|
|
||||||
days_in_interval = (mline.end_date - start_date).days + 1
|
|
||||||
amount_in_interval = mline.balance * days_in_interval / total_days
|
|
||||||
amount += amount_in_interval * sign
|
|
||||||
# 5. Start/end dates, start_date inside, end_date after
|
|
||||||
mlines = aml_obj.search(
|
|
||||||
domain_base_w_start_end
|
|
||||||
+ [
|
|
||||||
("start_date", ">=", start_date),
|
|
||||||
("start_date", "<=", end_date),
|
|
||||||
("end_date", ">", end_date),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
for mline in mlines:
|
|
||||||
total_days = (mline.end_date - mline.start_date).days + 1
|
|
||||||
days_in_interval = (end_date - mline.start_date).days + 1
|
|
||||||
amount_in_interval = mline.balance * days_in_interval / total_days
|
|
||||||
amount += amount_in_interval * sign
|
|
||||||
|
|
||||||
work[sub]["intervals"].append(
|
|
||||||
{
|
|
||||||
"start": start_date,
|
|
||||||
"end": end_date,
|
|
||||||
"amount": float_round(amount, precision_rounding=prec),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
# prepare next interval
|
|
||||||
end_date = start_date + relativedelta(days=-1)
|
|
||||||
# Create mapping dict
|
# Create mapping dict
|
||||||
mapping = self._get_mapping_dict()
|
mapping = self._get_mapping_dict()
|
||||||
sub_type_label = sub_type == "expense" and _("Expense") or _("Revenue")
|
sub_type_label = sub_type == "expense" and _("Expense") or _("Revenue")
|
||||||
@ -188,76 +89,60 @@ class AccountCutoff(models.Model):
|
|||||||
# Write the details of the computation in the notes
|
# Write the details of the computation in the notes
|
||||||
# (or in the chatter if the amount to provision is 0)
|
# (or in the chatter if the amount to provision is 0)
|
||||||
sub = data["sub"]
|
sub = data["sub"]
|
||||||
company_currency = self.company_currency_id
|
ccur = self.company_currency_id
|
||||||
prec = company_currency.rounding
|
notes = [
|
||||||
notes = []
|
_(
|
||||||
|
"CONFIG: %s periodicity, start date %s, "
|
||||||
|
"min. expense amount %s, default provision amount %s"
|
||||||
|
)
|
||||||
|
% (
|
||||||
|
sub._fields["periodicity"].convert_to_export(sub.periodicity, sub),
|
||||||
|
format_date(self.env, sub.start_date),
|
||||||
|
format_amount(self.env, sub.min_amount, ccur),
|
||||||
|
format_amount(self.env, sub.provision_amount, ccur),
|
||||||
|
),
|
||||||
|
_("PERIODS:"),
|
||||||
|
]
|
||||||
cutoff_amount = 0
|
cutoff_amount = 0
|
||||||
for interval in data["intervals"]:
|
for interval in data["intervals"]:
|
||||||
if (
|
prorata_label = (
|
||||||
float_compare(
|
interval["prorata"]
|
||||||
interval["amount"], sub.min_amount, precision_rounding=prec
|
and " "
|
||||||
|
+ _("PRORATED min. amount %s, default provisionning amount %s")
|
||||||
|
% (
|
||||||
|
format_amount(self.env, interval["min_amount"], ccur),
|
||||||
|
format_amount(self.env, interval["provision_amount"], ccur),
|
||||||
)
|
)
|
||||||
< 0
|
or ""
|
||||||
):
|
)
|
||||||
period_cutoff_amount = self.company_currency_id.round(
|
if ccur.compare_amounts(interval["amount"], interval["min_amount"]) < 0:
|
||||||
sub.provision_amount - interval["amount"]
|
period_cutoff_amount = ccur.round(
|
||||||
|
interval["provision_amount"] - interval["amount"]
|
||||||
)
|
)
|
||||||
notes.append(
|
notes.append(
|
||||||
_(
|
_("%s → %s%s: %s %s under min. amount ⇒provisionning %s")
|
||||||
"Period from %s to %s: %s %s under the minimum "
|
|
||||||
"amount %s. Default provisionning amount is %s "
|
|
||||||
"=> provisionning %s."
|
|
||||||
)
|
|
||||||
% (
|
% (
|
||||||
fields.Date.to_string(interval["start"]),
|
format_date(self.env, interval["start"]),
|
||||||
fields.Date.to_string(interval["end"]),
|
format_date(self.env, interval["end"]),
|
||||||
|
prorata_label,
|
||||||
sub_type_label,
|
sub_type_label,
|
||||||
formatLang(
|
format_amount(self.env, interval["amount"], ccur),
|
||||||
self.env,
|
format_amount(self.env, period_cutoff_amount, ccur),
|
||||||
interval["amount"],
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
formatLang(
|
|
||||||
self.env,
|
|
||||||
sub.min_amount,
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
formatLang(
|
|
||||||
self.env,
|
|
||||||
sub.provision_amount,
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
formatLang(
|
|
||||||
self.env,
|
|
||||||
period_cutoff_amount,
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
cutoff_amount += period_cutoff_amount * lsign
|
cutoff_amount += period_cutoff_amount * lsign
|
||||||
else:
|
else:
|
||||||
notes.append(
|
notes.append(
|
||||||
_(
|
_("%s → %s%s: %s %s over min. amount ⇒ no provisionning")
|
||||||
"Period from %s to %s: %s %s over the minimum "
|
|
||||||
"amount %s => no provisionning."
|
|
||||||
)
|
|
||||||
% (
|
% (
|
||||||
fields.Date.to_string(interval["start"]),
|
format_date(self.env, interval["start"]),
|
||||||
fields.Date.to_string(interval["end"]),
|
format_date(self.env, interval["end"]),
|
||||||
|
prorata_label,
|
||||||
sub_type_label,
|
sub_type_label,
|
||||||
formatLang(
|
format_amount(self.env, interval["amount"], ccur),
|
||||||
self.env,
|
|
||||||
interval["amount"],
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
formatLang(
|
|
||||||
self.env,
|
|
||||||
sub.min_amount,
|
|
||||||
currency_obj=self.company_currency_id,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if float_is_zero(cutoff_amount, precision_rounding=prec):
|
if ccur.is_zero(cutoff_amount):
|
||||||
msg = _(
|
msg = _(
|
||||||
"<p>No provision for subscription <a href=# "
|
"<p>No provision for subscription <a href=# "
|
||||||
"data-oe-model=account.cutoff.accrual.subscription "
|
"data-oe-model=account.cutoff.accrual.subscription "
|
||||||
@ -280,6 +165,7 @@ class AccountCutoff(models.Model):
|
|||||||
else:
|
else:
|
||||||
cutoff_account_id = sub.account_id.id
|
cutoff_account_id = sub.account_id.id
|
||||||
vals = {
|
vals = {
|
||||||
|
"subscription_id": sub.id,
|
||||||
"parent_id": self.id,
|
"parent_id": self.id,
|
||||||
"partner_id": partner_id,
|
"partner_id": partner_id,
|
||||||
"account_id": sub.account_id.id,
|
"account_id": sub.account_id.id,
|
||||||
@ -296,6 +182,13 @@ class AccountCutoff(models.Model):
|
|||||||
cutoff_amount, partner=sub.partner_id, handle_price_include=False
|
cutoff_amount, partner=sub.partner_id, handle_price_include=False
|
||||||
)
|
)
|
||||||
vals["tax_line_ids"] = self._prepare_tax_lines(
|
vals["tax_line_ids"] = self._prepare_tax_lines(
|
||||||
tax_compute_all_res, company_currency
|
tax_compute_all_res, ccur
|
||||||
)
|
)
|
||||||
return vals
|
return vals
|
||||||
|
|
||||||
|
class AccountCutoffLine(models.Model):
|
||||||
|
_inherit = "account.cutoff.line"
|
||||||
|
|
||||||
|
subscription_id = fields.Many2one(
|
||||||
|
"account.cutoff.accrual.subscription", ondelete="restrict"
|
||||||
|
)
|
||||||
|
@ -2,8 +2,14 @@
|
|||||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from dateutil.relativedelta import relativedelta
|
||||||
|
|
||||||
from flectra import _, api, fields, models
|
from flectra import _, api, fields, models
|
||||||
from flectra.exceptions import ValidationError
|
from flectra.exceptions import UserError, ValidationError
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class AccountCutoffAccrualSubscription(models.Model):
|
class AccountCutoffAccrualSubscription(models.Model):
|
||||||
@ -82,13 +88,24 @@ class AccountCutoffAccrualSubscription(models.Model):
|
|||||||
domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]",
|
domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]",
|
||||||
check_company=True,
|
check_company=True,
|
||||||
)
|
)
|
||||||
|
type_tax_use = fields.Char(compute="_compute_type_tax_use")
|
||||||
tax_ids = fields.Many2many(
|
tax_ids = fields.Many2many(
|
||||||
"account.tax",
|
"account.tax",
|
||||||
string="Taxes",
|
string="Taxes",
|
||||||
domain="[('price_include', '=', False), ('company_id', '=', company_id)]",
|
domain="[('price_include', '=', False), ('company_id', '=', company_id), "
|
||||||
|
"('type_tax_use', '=', type_tax_use)]",
|
||||||
check_company=True,
|
check_company=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@api.depends("subscription_type")
|
||||||
|
def _compute_type_tax_use(self):
|
||||||
|
mapping = {
|
||||||
|
"revenue": "sale",
|
||||||
|
"expense": "purchase",
|
||||||
|
}
|
||||||
|
for sub in self:
|
||||||
|
sub.type_tax_use = mapping.get(sub.subscription_type)
|
||||||
|
|
||||||
@api.constrains("start_date")
|
@api.constrains("start_date")
|
||||||
def check_start_date(self):
|
def check_start_date(self):
|
||||||
for sub in self:
|
for sub in self:
|
||||||
@ -116,7 +133,10 @@ class AccountCutoffAccrualSubscription(models.Model):
|
|||||||
|
|
||||||
@api.onchange("min_amount")
|
@api.onchange("min_amount")
|
||||||
def min_amount_change(self):
|
def min_amount_change(self):
|
||||||
if self.min_amount > 0 and not self.provision_amount:
|
if (
|
||||||
|
self.company_currency_id.compare_amounts(self.min_amount, 0) > 0
|
||||||
|
and not self.provision_amount
|
||||||
|
):
|
||||||
self.provision_amount = self.min_amount
|
self.provision_amount = self.min_amount
|
||||||
|
|
||||||
@api.onchange("account_id")
|
@api.onchange("account_id")
|
||||||
@ -128,3 +148,165 @@ class AccountCutoffAccrualSubscription(models.Model):
|
|||||||
def partner_type_change(self):
|
def partner_type_change(self):
|
||||||
if self.partner_type != "one":
|
if self.partner_type != "one":
|
||||||
self.partner_id = False
|
self.partner_id = False
|
||||||
|
|
||||||
|
def _process_subscription(
|
||||||
|
self, work, fy_start_date, cutoff_date, common_domain, sign
|
||||||
|
):
|
||||||
|
self.ensure_one()
|
||||||
|
logger.debug("Processing subscription %s", self.display_name)
|
||||||
|
aml_obj = self.env["account.move.line"]
|
||||||
|
periodicity2months = {
|
||||||
|
"month": 1,
|
||||||
|
"quarter": 3,
|
||||||
|
"semester": 6,
|
||||||
|
"year": 12,
|
||||||
|
}
|
||||||
|
company = self.company_id
|
||||||
|
ccur = company.currency_id
|
||||||
|
months = periodicity2months[self.periodicity]
|
||||||
|
work[self] = {"intervals": [], "sub": self}
|
||||||
|
domain_base = common_domain + [
|
||||||
|
("company_id", "=", company.id),
|
||||||
|
("account_id", "=", self.account_id.id),
|
||||||
|
("analytic_account_id", "=", self.analytic_account_id.id or False),
|
||||||
|
]
|
||||||
|
if self.partner_type == "one":
|
||||||
|
if self.partner_id:
|
||||||
|
domain_base.append(("partner_id", "=", self.partner_id.id))
|
||||||
|
else:
|
||||||
|
raise UserError(
|
||||||
|
_("Missing supplier on subscription '%s'.") % self.display_name
|
||||||
|
)
|
||||||
|
elif self.partner_type == "none":
|
||||||
|
domain_base.append(("partner_id", "=", False))
|
||||||
|
domain_base_w_start_end = domain_base + [
|
||||||
|
("start_date", "!=", False),
|
||||||
|
("end_date", "!=", False),
|
||||||
|
]
|
||||||
|
|
||||||
|
start_date = fy_start_date # initialize start_date
|
||||||
|
while start_date < cutoff_date:
|
||||||
|
end_date = start_date + relativedelta(day=31, months=(months - 1))
|
||||||
|
logger.debug("Compute interval from %s to %s", start_date, end_date)
|
||||||
|
if self.start_date > end_date:
|
||||||
|
logger.debug(
|
||||||
|
"Skip interval because subscription start_date %s > end_date",
|
||||||
|
self.start_date,
|
||||||
|
)
|
||||||
|
start_date = end_date + relativedelta(days=1)
|
||||||
|
continue
|
||||||
|
# the next start_date is set at the very end of this method
|
||||||
|
min_amount = self.min_amount
|
||||||
|
provision_amount = self.provision_amount
|
||||||
|
prorata = False
|
||||||
|
if end_date > cutoff_date or self.start_date > start_date:
|
||||||
|
prorata = True
|
||||||
|
initial_interval_days = (end_date - start_date).days + 1
|
||||||
|
if end_date > cutoff_date:
|
||||||
|
end_date = cutoff_date
|
||||||
|
if self.start_date > start_date:
|
||||||
|
start_date = self.start_date
|
||||||
|
final_interval_days = (end_date - start_date).days + 1
|
||||||
|
ratio = final_interval_days / initial_interval_days
|
||||||
|
min_amount = ccur.round(min_amount * ratio)
|
||||||
|
provision_amount = ccur.round(provision_amount * ratio)
|
||||||
|
logger.debug(
|
||||||
|
"Interval has been prorated: %s to %s "
|
||||||
|
"initial_interval_days=%d final_interval_days=%s",
|
||||||
|
start_date,
|
||||||
|
end_date,
|
||||||
|
initial_interval_days,
|
||||||
|
final_interval_days,
|
||||||
|
)
|
||||||
|
logger.debug(
|
||||||
|
"min_amount prorated from %s to %s", self.min_amount, min_amount
|
||||||
|
)
|
||||||
|
logger.debug(
|
||||||
|
"provision_amount prorated from %s to %s",
|
||||||
|
self.provision_amount,
|
||||||
|
provision_amount,
|
||||||
|
)
|
||||||
|
# compute amount
|
||||||
|
amount = 0
|
||||||
|
# 1. No start/end dates
|
||||||
|
no_start_end_res = aml_obj.read_group(
|
||||||
|
domain_base
|
||||||
|
+ [
|
||||||
|
("date", "<=", end_date),
|
||||||
|
("date", ">=", start_date),
|
||||||
|
("start_date", "=", False),
|
||||||
|
("end_date", "=", False),
|
||||||
|
],
|
||||||
|
["balance"],
|
||||||
|
[],
|
||||||
|
)
|
||||||
|
amount_no_start_end = (
|
||||||
|
no_start_end_res and no_start_end_res[0]["balance"] or 0
|
||||||
|
)
|
||||||
|
amount += amount_no_start_end * sign
|
||||||
|
# 2. Start/end dates, INSIDE interval
|
||||||
|
inside_res = aml_obj.read_group(
|
||||||
|
domain_base_w_start_end
|
||||||
|
+ [
|
||||||
|
("start_date", ">=", start_date),
|
||||||
|
("end_date", "<=", end_date),
|
||||||
|
],
|
||||||
|
["balance"],
|
||||||
|
[],
|
||||||
|
)
|
||||||
|
amount_inside = inside_res and inside_res[0]["balance"] or 0
|
||||||
|
amount += amount_inside * sign
|
||||||
|
# 3. Start/end dates, OVER interval
|
||||||
|
mlines = aml_obj.search(
|
||||||
|
domain_base_w_start_end
|
||||||
|
+ [
|
||||||
|
("start_date", "<", start_date),
|
||||||
|
("end_date", ">", end_date),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
for mline in mlines:
|
||||||
|
total_days = (mline.end_date - mline.start_date).days + 1
|
||||||
|
days_in_interval = (end_date - start_date).days + 1
|
||||||
|
amount_in_interval = mline.balance * days_in_interval / total_days
|
||||||
|
amount += amount_in_interval * sign
|
||||||
|
# 4. Start/end dates, start_date before, end_date inside
|
||||||
|
mlines = aml_obj.search(
|
||||||
|
domain_base_w_start_end
|
||||||
|
+ [
|
||||||
|
("start_date", "<", start_date),
|
||||||
|
("end_date", ">=", start_date),
|
||||||
|
("end_date", "<=", end_date),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
for mline in mlines:
|
||||||
|
total_days = (mline.end_date - mline.start_date).days + 1
|
||||||
|
days_in_interval = (mline.end_date - start_date).days + 1
|
||||||
|
amount_in_interval = mline.balance * days_in_interval / total_days
|
||||||
|
amount += amount_in_interval * sign
|
||||||
|
# 5. Start/end dates, start_date inside, end_date after
|
||||||
|
mlines = aml_obj.search(
|
||||||
|
domain_base_w_start_end
|
||||||
|
+ [
|
||||||
|
("start_date", ">=", start_date),
|
||||||
|
("start_date", "<=", end_date),
|
||||||
|
("end_date", ">", end_date),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
for mline in mlines:
|
||||||
|
total_days = (mline.end_date - mline.start_date).days + 1
|
||||||
|
days_in_interval = (end_date - mline.start_date).days + 1
|
||||||
|
amount_in_interval = mline.balance * days_in_interval / total_days
|
||||||
|
amount += amount_in_interval * sign
|
||||||
|
|
||||||
|
work[self]["intervals"].append(
|
||||||
|
{
|
||||||
|
"start": start_date,
|
||||||
|
"end": end_date,
|
||||||
|
"amount": ccur.round(amount),
|
||||||
|
"prorata": prorata,
|
||||||
|
"min_amount": min_amount,
|
||||||
|
"provision_amount": provision_amount,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
# prepare next interval
|
||||||
|
start_date = end_date + relativedelta(days=1)
|
||||||
|
@ -384,7 +384,7 @@ ul.auto-toc {
|
|||||||
</div>
|
</div>
|
||||||
<div class="section" id="configuration">
|
<div class="section" id="configuration">
|
||||||
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
|
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
|
||||||
<p>Go to the menu <em>Accounting > Configuration > Cut-offs > Subscriptions</em> and create subscriptions: they are used as the expected expenses (or revenue). For exemple, you may create a subscription for your office rental, your Internet access, your insurance contracts, etc.</p>
|
<p>Go to the menu <em>Accounting > Configuration > Accounting > Subscriptions</em> and create subscriptions: they are used as the expected expenses (or revenue). For exemple, you may create a subscription for your office rental, your Internet access, your insurance contracts, etc.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="bug-tracker">
|
<div class="section" id="bug-tracker">
|
||||||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
<group name="main">
|
<group name="main">
|
||||||
<field name="subscription_type" />
|
<field name="subscription_type" />
|
||||||
<field name="active" invisible="1" />
|
<field name="active" invisible="1" />
|
||||||
|
<field name="type_tax_use" invisible="1" />
|
||||||
<field name="partner_type" />
|
<field name="partner_type" />
|
||||||
<field
|
<field
|
||||||
name="partner_id"
|
name="partner_id"
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<!--
|
||||||
|
Copyright 2023 Akretion France (http://www.akretion.com/)
|
||||||
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
-->
|
||||||
|
<flectra>
|
||||||
|
|
||||||
|
|
||||||
|
<record id="account_cutoff_line_form" model="ir.ui.view">
|
||||||
|
<field name="model">account.cutoff.line</field>
|
||||||
|
<field name="inherit_id" ref="account_cutoff_base.account_cutoff_line_form" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="parent_id" position="after">
|
||||||
|
<field
|
||||||
|
name="subscription_id"
|
||||||
|
attrs="{'invisible': [('subscription_id', '=', False)]}"
|
||||||
|
/>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
|
||||||
|
</flectra>
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "Account Cut-off Base",
|
"name": "Account Cut-off Base",
|
||||||
"version": "2.0.1.2.1",
|
"version": "2.0.1.4.0",
|
||||||
"category": "Accounting & Finance",
|
"category": "Accounting & Finance",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Base module for Account Cut-offs",
|
"summary": "Base module for Account Cut-offs",
|
||||||
|
@ -387,6 +387,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -597,6 +602,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -667,6 +683,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -398,6 +398,11 @@ msgstr "Erledigt"
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Entwurf"
|
msgstr "Entwurf"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -608,6 +613,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -678,6 +694,11 @@ msgstr "Reihenfolge"
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Quelle"
|
msgstr "Quelle"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -11,8 +11,8 @@ msgstr ""
|
|||||||
"POT-Creation-Date: 2018-01-25 11:09+0000\n"
|
"POT-Creation-Date: 2018-01-25 11:09+0000\n"
|
||||||
"PO-Revision-Date: 2022-02-23 00:16+0000\n"
|
"PO-Revision-Date: 2022-02-23 00:16+0000\n"
|
||||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
||||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
|
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||||
"23907/es_AR/)\n"
|
"teams/23907/es_AR/)\n"
|
||||||
"Language: es_AR\n"
|
"Language: es_AR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -397,6 +397,11 @@ msgstr "Hecho"
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Borrador"
|
msgstr "Borrador"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -607,6 +612,17 @@ msgstr "Socio en Movimiento de Línea"
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr "Socio en Movimiento de Línea Predeterminado"
|
msgstr "Socio en Movimiento de Línea Predeterminado"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -679,6 +695,11 @@ msgstr "Secuencia"
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Recurso"
|
msgstr "Recurso"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -396,6 +396,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -606,6 +611,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -676,6 +692,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -398,6 +398,11 @@ msgstr "Terminé"
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Brouillon"
|
msgstr "Brouillon"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -608,6 +613,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -678,6 +694,11 @@ msgstr "Séquence"
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Source"
|
msgstr "Source"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -10,15 +10,15 @@ msgstr ""
|
|||||||
"Project-Id-Version: Odoo Server 11.0\n"
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-03-23 23:20+0000\n"
|
"POT-Creation-Date: 2018-03-23 23:20+0000\n"
|
||||||
"PO-Revision-Date: 2022-04-12 18:05+0000\n"
|
"PO-Revision-Date: 2023-05-18 16:44+0000\n"
|
||||||
"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
|
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.3.2\n"
|
"X-Generator: Weblate 4.16.4\n"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_form
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_form
|
||||||
@ -72,7 +72,7 @@ msgstr "Competenza su imposte"
|
|||||||
#: model:ir.ui.menu,name:account_cutoff_base.account_expense_accrual_menu
|
#: model:ir.ui.menu,name:account_cutoff_base.account_expense_accrual_menu
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Accrued Expense"
|
msgid "Accrued Expense"
|
||||||
msgstr "Ratei passivi"
|
msgstr "Rateo passivo"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
@ -88,7 +88,7 @@ msgstr "Conto imposta ratei passivi"
|
|||||||
#: model:ir.ui.menu,name:account_cutoff_base.account_revenue_accrual_menu
|
#: model:ir.ui.menu,name:account_cutoff_base.account_revenue_accrual_menu
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Accrued Revenue"
|
msgid "Accrued Revenue"
|
||||||
msgstr "Ratei attivi"
|
msgstr "Rateo attivo"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
@ -161,7 +161,7 @@ msgstr "Numero allegati"
|
|||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_form
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_form
|
||||||
msgid "Back to Draft"
|
msgid "Back to Draft"
|
||||||
msgstr "Ritorna in bozza"
|
msgstr "Reimposta a bozza"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff_tax_line__base
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff_tax_line__base
|
||||||
@ -396,20 +396,25 @@ msgstr "Completata"
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Bozza"
|
msgstr "Bozza"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr "Registrazioni in bozza e confermate"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr "Chi sta seguendo"
|
msgstr "Seguito da"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_channel_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_channel_ids
|
||||||
msgid "Followers (Channels)"
|
msgid "Followers (Channels)"
|
||||||
msgstr "Chi sta seguendo (canali)"
|
msgstr "Seguito da (canali)"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_partner_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_partner_ids
|
||||||
msgid "Followers (Partners)"
|
msgid "Followers (Partners)"
|
||||||
msgstr "Chi sta seguendo (contatti)"
|
msgstr "Seguito da (partner)"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__activity_type_icon
|
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__activity_type_icon
|
||||||
@ -452,7 +457,7 @@ msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
|
|||||||
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__message_has_error
|
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__message_has_error
|
||||||
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__message_has_sms_error
|
#: model:ir.model.fields,help:account_cutoff_base.field_account_cutoff__message_has_sms_error
|
||||||
msgid "If checked, some messages have a delivery error."
|
msgid "If checked, some messages have a delivery error."
|
||||||
msgstr "Se selezionata, alcuni messaggi presentano un errore di consegna."
|
msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna."
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_is_follower
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_is_follower
|
||||||
@ -526,7 +531,7 @@ msgstr "\"%s\" mancante per l'imposta \"%s\"."
|
|||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__my_activity_date_deadline
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__my_activity_date_deadline
|
||||||
msgid "My Activity Deadline"
|
msgid "My Activity Deadline"
|
||||||
msgstr "Scadenza attività"
|
msgstr "Scadenza mia attività"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__activity_date_deadline
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__activity_date_deadline
|
||||||
@ -606,6 +611,17 @@ msgstr "Partner nella riga movimento"
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr "Partner nella riga movimento in modo predefinito"
|
msgstr "Partner nella riga movimento in modo predefinito"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr "Confermare registrazione separata"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr "Registrazioni confermate"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -613,7 +629,7 @@ msgstr "Partner nella riga movimento in modo predefinito"
|
|||||||
#: model:ir.ui.menu,name:account_cutoff_base.account_cutoff_prepaid_expense_menu
|
#: model:ir.ui.menu,name:account_cutoff_base.account_cutoff_prepaid_expense_menu
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Prepaid Expense"
|
msgid "Prepaid Expense"
|
||||||
msgstr "Risconti attivi"
|
msgstr "Risconto attivo"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
@ -622,7 +638,7 @@ msgstr "Risconti attivi"
|
|||||||
#: model:ir.ui.menu,name:account_cutoff_base.account_cutoff_prepaid_revenue_menu
|
#: model:ir.ui.menu,name:account_cutoff_base.account_cutoff_prepaid_revenue_menu
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Prepaid Revenue"
|
msgid "Prepaid Revenue"
|
||||||
msgstr "Risconti passivi"
|
msgstr "Risconto passivo"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff_line__price_origin
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff_line__price_origin
|
||||||
@ -661,7 +677,7 @@ msgstr "Utente responsabile"
|
|||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_has_sms_error
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_has_sms_error
|
||||||
msgid "SMS Delivery error"
|
msgid "SMS Delivery error"
|
||||||
msgstr "Errore di consegna SMS"
|
msgstr "Errore consegna SMS"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
@ -678,6 +694,11 @@ msgstr "Sequenza"
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Origine"
|
msgstr "Origine"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr "Registrazioni di origine"
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
@ -701,9 +722,9 @@ msgid ""
|
|||||||
"Today: Activity date is today\n"
|
"Today: Activity date is today\n"
|
||||||
"Planned: Future activities."
|
"Planned: Future activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Stato basato sulle attività\n"
|
"Stato in base alle attività\n"
|
||||||
"In ritardo: scadenza già superata\n"
|
"Scaduto: la data richiesta è trascorsa\n"
|
||||||
"Oggi: attività in data odierna\n"
|
"Oggi: la data attività è oggi\n"
|
||||||
"Pianificato: attività future."
|
"Pianificato: attività future."
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Concept"
|
msgstr "Concept"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -397,6 +397,11 @@ msgstr "Concluído"
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr "Rascunho"
|
msgstr "Rascunho"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -607,6 +612,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -677,6 +693,11 @@ msgstr "Sequência"
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Origem"
|
msgstr "Origem"
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -394,6 +394,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -604,6 +609,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -674,6 +690,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -392,6 +392,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -602,6 +607,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -672,6 +688,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -393,6 +393,11 @@ msgstr ""
|
|||||||
msgid "Draft"
|
msgid "Draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__draft_posted
|
||||||
|
msgid "Draft and Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__message_follower_ids
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
@ -603,6 +608,17 @@ msgstr ""
|
|||||||
msgid "Partner on Move Line by Default"
|
msgid "Partner on Move Line by Default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_company__post_cutoff_move
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_res_config_settings__post_cutoff_move
|
||||||
|
msgid "Post Cut-off Entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields.selection,name:account_cutoff_base.selection__account_cutoff__source_move_state__posted
|
||||||
|
msgid "Posted Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
#: code:addons/account_cutoff_base/models/account_cutoff.py:0
|
||||||
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
#: model:ir.actions.act_window,name:account_cutoff_base.account_cutoff_prepaid_expense_action
|
||||||
@ -673,6 +689,11 @@ msgstr ""
|
|||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: account_cutoff_base
|
||||||
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__source_move_state
|
||||||
|
msgid "Source Entries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: account_cutoff_base
|
#. module: account_cutoff_base
|
||||||
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
#: model:ir.model.fields,field_description:account_cutoff_base.field_account_cutoff__state
|
||||||
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
#: model_terms:ir.ui.view,arch_db:account_cutoff_base.account_cutoff_filter
|
||||||
|
@ -94,6 +94,12 @@ class AccountCutoff(models.Model):
|
|||||||
readonly=True,
|
readonly=True,
|
||||||
states={"draft": [("readonly", False)]},
|
states={"draft": [("readonly", False)]},
|
||||||
)
|
)
|
||||||
|
source_move_state = fields.Selection(
|
||||||
|
[("posted", "Posted Entries"), ("draft_posted", "Draft and Posted Entries")],
|
||||||
|
string="Source Entries",
|
||||||
|
required=True,
|
||||||
|
default="posted",
|
||||||
|
)
|
||||||
move_id = fields.Many2one(
|
move_id = fields.Many2one(
|
||||||
"account.move",
|
"account.move",
|
||||||
string="Cut-off Journal Entry",
|
string="Cut-off Journal Entry",
|
||||||
@ -150,7 +156,9 @@ class AccountCutoff(models.Model):
|
|||||||
default=lambda self: self.env.company,
|
default=lambda self: self.env.company,
|
||||||
)
|
)
|
||||||
company_currency_id = fields.Many2one(
|
company_currency_id = fields.Many2one(
|
||||||
related="company_id.currency_id", string="Company Currency"
|
related="company_id.currency_id",
|
||||||
|
string="Company Currency",
|
||||||
|
store=True,
|
||||||
)
|
)
|
||||||
line_ids = fields.One2many(
|
line_ids = fields.One2many(
|
||||||
comodel_name="account.cutoff.line",
|
comodel_name="account.cutoff.line",
|
||||||
@ -302,6 +310,8 @@ class AccountCutoff(models.Model):
|
|||||||
to_provision = self._merge_provision_lines(provision_lines)
|
to_provision = self._merge_provision_lines(provision_lines)
|
||||||
vals = self._prepare_move(to_provision)
|
vals = self._prepare_move(to_provision)
|
||||||
move = move_obj.create(vals)
|
move = move_obj.create(vals)
|
||||||
|
if self.company_id.post_cutoff_move:
|
||||||
|
move._post(soft=False)
|
||||||
self.write({"move_id": move.id, "state": "done"})
|
self.write({"move_id": move.id, "state": "done"})
|
||||||
self.message_post(body=_("Journal entry generated"))
|
self.message_post(body=_("Journal entry generated"))
|
||||||
|
|
||||||
@ -413,7 +423,7 @@ class AccountCutoffLine(models.Model):
|
|||||||
company_currency_id = fields.Many2one(
|
company_currency_id = fields.Many2one(
|
||||||
related="parent_id.company_currency_id",
|
related="parent_id.company_currency_id",
|
||||||
string="Company Currency",
|
string="Company Currency",
|
||||||
readonly=True,
|
store=True,
|
||||||
)
|
)
|
||||||
partner_id = fields.Many2one("res.partner", string="Partner", readonly=True)
|
partner_id = fields.Many2one("res.partner", string="Partner", readonly=True)
|
||||||
quantity = fields.Float(
|
quantity = fields.Float(
|
||||||
@ -449,7 +459,9 @@ class AccountCutoffLine(models.Model):
|
|||||||
readonly=True,
|
readonly=True,
|
||||||
)
|
)
|
||||||
cutoff_account_code = fields.Char(
|
cutoff_account_code = fields.Char(
|
||||||
related="cutoff_account_id.code", string="Cut-off Account Code", readonly=True
|
related="cutoff_account_id.code",
|
||||||
|
string="Cut-off Account Code",
|
||||||
|
store=True,
|
||||||
)
|
)
|
||||||
analytic_account_id = fields.Many2one(
|
analytic_account_id = fields.Many2one(
|
||||||
"account.analytic.account",
|
"account.analytic.account",
|
||||||
@ -525,10 +537,10 @@ class AccountCutoffTaxLine(models.Model):
|
|||||||
help="Tax Cut-off Amount in the company currency.",
|
help="Tax Cut-off Amount in the company currency.",
|
||||||
)
|
)
|
||||||
currency_id = fields.Many2one(
|
currency_id = fields.Many2one(
|
||||||
related="parent_id.currency_id", string="Currency", readonly=True
|
related="parent_id.currency_id", string="Currency", store=True
|
||||||
)
|
)
|
||||||
company_currency_id = fields.Many2one(
|
company_currency_id = fields.Many2one(
|
||||||
related="parent_id.company_currency_id",
|
related="parent_id.company_currency_id",
|
||||||
string="Company Currency",
|
string="Company Currency",
|
||||||
readonly=True,
|
store=True,
|
||||||
)
|
)
|
||||||
|
@ -19,6 +19,7 @@ class ResCompany(models.Model):
|
|||||||
string="Partner on Move Line by Default"
|
string="Partner on Move Line by Default"
|
||||||
)
|
)
|
||||||
accrual_taxes = fields.Boolean(string="Accrual On Taxes", default=True)
|
accrual_taxes = fields.Boolean(string="Accrual On Taxes", default=True)
|
||||||
|
post_cutoff_move = fields.Boolean(string="Post Cut-off Entry")
|
||||||
default_accrued_revenue_account_id = fields.Many2one(
|
default_accrued_revenue_account_id = fields.Many2one(
|
||||||
comodel_name="account.account",
|
comodel_name="account.account",
|
||||||
string="Default Account for Accrued Revenues",
|
string="Default Account for Accrued Revenues",
|
||||||
|
@ -65,6 +65,7 @@
|
|||||||
name="cutoff_date"
|
name="cutoff_date"
|
||||||
options="{'datepicker': {'warn_future': true}}"
|
options="{'datepicker': {'warn_future': true}}"
|
||||||
/>
|
/>
|
||||||
|
<field name="source_move_state" widget="radio" />
|
||||||
<field name="total_cutoff_amount" />
|
<field name="total_cutoff_amount" />
|
||||||
<field
|
<field
|
||||||
name="company_id"
|
name="company_id"
|
||||||
|
@ -36,6 +36,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-12 col-md-12 o_setting_box" id="post_cutoff_move">
|
||||||
|
<div class="o_setting_left_pane">
|
||||||
|
<field name="post_cutoff_move" />
|
||||||
|
</div>
|
||||||
|
<div class="o_setting_right_pane">
|
||||||
|
<div class="row" id="post_cutoff_move_label">
|
||||||
|
<label for="post_cutoff_move" class="col-md-5" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="col-12 col-md-12 o_setting_box">
|
<div class="col-12 col-md-12 o_setting_box">
|
||||||
<div class="o_setting_left_pane" />
|
<div class="o_setting_left_pane" />
|
||||||
<div class="o_setting_right_pane">
|
<div class="o_setting_right_pane">
|
||||||
|
@ -19,6 +19,9 @@ class ResConfigSettings(models.TransientModel):
|
|||||||
related="company_id.default_cutoff_move_partner", readonly=False
|
related="company_id.default_cutoff_move_partner", readonly=False
|
||||||
)
|
)
|
||||||
accrual_taxes = fields.Boolean(related="company_id.accrual_taxes", readonly=False)
|
accrual_taxes = fields.Boolean(related="company_id.accrual_taxes", readonly=False)
|
||||||
|
post_cutoff_move = fields.Boolean(
|
||||||
|
related="company_id.post_cutoff_move", readonly=False
|
||||||
|
)
|
||||||
dft_accrued_revenue_account_id = fields.Many2one(
|
dft_accrued_revenue_account_id = fields.Many2one(
|
||||||
related="company_id.default_accrued_revenue_account_id",
|
related="company_id.default_accrued_revenue_account_id",
|
||||||
readonly=False,
|
readonly=False,
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "Account Cut-off Start End Dates",
|
"name": "Account Cut-off Start End Dates",
|
||||||
"version": "2.0.1.0.0",
|
"version": "2.0.1.1.0",
|
||||||
"category": "Accounting & Finance",
|
"category": "Accounting & Finance",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Cutoffs based on start/end dates",
|
"summary": "Cutoffs based on start/end dates",
|
||||||
|
@ -184,6 +184,10 @@ class AccountCutoff(models.Model):
|
|||||||
("company_id", "=", self.company_id.id),
|
("company_id", "=", self.company_id.id),
|
||||||
("balance", "!=", 0),
|
("balance", "!=", 0),
|
||||||
]
|
]
|
||||||
|
if self.source_move_state == "posted":
|
||||||
|
domain.append(("parent_state", "=", "posted"))
|
||||||
|
else:
|
||||||
|
domain.append(("parent_state", "in", ("draft", "posted")))
|
||||||
|
|
||||||
if self.cutoff_type in ["prepaid_expense", "prepaid_revenue"]:
|
if self.cutoff_type in ["prepaid_expense", "prepaid_revenue"]:
|
||||||
if self.forecast:
|
if self.forecast:
|
||||||
|
@ -94,7 +94,7 @@
|
|||||||
name="attrs"
|
name="attrs"
|
||||||
>{'invisible': ['|', '|', ('line_ids', '=', False), ('state', '=', 'done'), ('forecast', '=', True)]}</attribute>
|
>{'invisible': ['|', '|', ('line_ids', '=', False), ('state', '=', 'done'), ('forecast', '=', True)]}</attribute>
|
||||||
</button>
|
</button>
|
||||||
<field name="cutoff_date" position="after">
|
<field name="source_move_state" position="after">
|
||||||
<field
|
<field
|
||||||
name="source_journal_ids"
|
name="source_journal_ids"
|
||||||
widget="many2many_tags"
|
widget="many2many_tags"
|
||||||
|
21
account_fiscal_year_closing/COPYRIGHT
Normal file
21
account_fiscal_year_closing/COPYRIGHT
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Most of the files are
|
||||||
|
|
||||||
|
:Copyright: This stylesheet has been placed in the public domain.
|
||||||
|
<!-- Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||||
|
<!-- Copyright 2017 Tecnativa - Pedro M. Baeza
|
||||||
|
Copyright 2016 Tecnativa - Antonio Espinosa
|
||||||
|
Copyright 2016-2017 Tecnativa - Pedro M. Baeza
|
||||||
|
Copyright 2017 Tecnativa - Pedro M. Baeza
|
||||||
|
Copyright 2020 CorporateHub (https://corporatehub.eu)
|
||||||
|
Copyright 2020 Sergio Corato <https://github.com/sergiocorato>
|
||||||
|
Copyright 2018 Flectra Community
|
||||||
|
|
||||||
|
Many files also contain contributions from third
|
||||||
|
parties. In this case the original copyright of
|
||||||
|
the contributions can be traced through the
|
||||||
|
history of the source version control system.
|
||||||
|
|
||||||
|
When that is not the case, the files contain a prominent
|
||||||
|
notice stating the original copyright and applicable
|
||||||
|
license, or come with their own dedicated COPYRIGHT
|
||||||
|
and/or LICENSE file.
|
663
account_fiscal_year_closing/LICENSE
Normal file
663
account_fiscal_year_closing/LICENSE
Normal file
@ -0,0 +1,663 @@
|
|||||||
|
For copyright information, please see the COPYRIGHT file.
|
||||||
|
|
||||||
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU Affero General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works, specifically designed to ensure
|
||||||
|
cooperation with the community in the case of network server software.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
our General Public Licenses are intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
Developers that use our General Public Licenses protect your rights
|
||||||
|
with two steps: (1) assert copyright on the software, and (2) offer
|
||||||
|
you this License which gives you legal permission to copy, distribute
|
||||||
|
and/or modify the software.
|
||||||
|
|
||||||
|
A secondary benefit of defending all users' freedom is that
|
||||||
|
improvements made in alternate versions of the program, if they
|
||||||
|
receive widespread use, become available for other developers to
|
||||||
|
incorporate. Many developers of free software are heartened and
|
||||||
|
encouraged by the resulting cooperation. However, in the case of
|
||||||
|
software used on network servers, this result may fail to come about.
|
||||||
|
The GNU General Public License permits making a modified version and
|
||||||
|
letting the public access it on a server without ever releasing its
|
||||||
|
source code to the public.
|
||||||
|
|
||||||
|
The GNU Affero General Public License is designed specifically to
|
||||||
|
ensure that, in such cases, the modified source code becomes available
|
||||||
|
to the community. It requires the operator of a network server to
|
||||||
|
provide the source code of the modified version running there to the
|
||||||
|
users of that server. Therefore, public use of a modified version, on
|
||||||
|
a publicly accessible server, gives the public access to the source
|
||||||
|
code of the modified version.
|
||||||
|
|
||||||
|
An older license, called the Affero General Public License and
|
||||||
|
published by Affero, was designed to accomplish similar goals. This is
|
||||||
|
a different license, not a version of the Affero GPL, but Affero has
|
||||||
|
released a new version of the Affero GPL which permits relicensing under
|
||||||
|
this license.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, if you modify the
|
||||||
|
Program, your modified version must prominently offer all users
|
||||||
|
interacting with it remotely through a computer network (if your version
|
||||||
|
supports such interaction) an opportunity to receive the Corresponding
|
||||||
|
Source of your version by providing access to the Corresponding Source
|
||||||
|
from a network server at no charge, through some standard or customary
|
||||||
|
means of facilitating copying of software. This Corresponding Source
|
||||||
|
shall include the Corresponding Source for any work covered by version 3
|
||||||
|
of the GNU General Public License that is incorporated pursuant to the
|
||||||
|
following paragraph.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the work with which it is combined will remain governed by version
|
||||||
|
3 of the GNU General Public License.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU Affero General Public License from time to time. Such new versions
|
||||||
|
will be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU Affero General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU Affero General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU Affero General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as published
|
||||||
|
by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If your software can interact with users remotely through a computer
|
||||||
|
network, you should also make sure that it provides a way for users to
|
||||||
|
get its source. For example, if your program is a web application, its
|
||||||
|
interface could display a "Source" link that leads users to an archive
|
||||||
|
of the code. There are many ways you could offer source, and different
|
||||||
|
solutions will be better for different programs; see section 13 for the
|
||||||
|
specific requirements.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
145
account_fiscal_year_closing/README.rst
Normal file
145
account_fiscal_year_closing/README.rst
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
===================
|
||||||
|
Fiscal year closing
|
||||||
|
===================
|
||||||
|
|
||||||
|
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
|
!! changes will be overwritten. !!
|
||||||
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||||
|
:target: https://odoo-community.org/page/development-status
|
||||||
|
:alt: Beta
|
||||||
|
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||||
|
:alt: License: AGPL-3
|
||||||
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--closing-lightgray.png?logo=github
|
||||||
|
:target: https://github.com/OCA/account-closing/tree/14.0/account_fiscal_year_closing
|
||||||
|
:alt: OCA/account-closing
|
||||||
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||||
|
:target: https://translation.odoo-community.org/projects/account-closing-14-0/account-closing-14-0-account_fiscal_year_closing
|
||||||
|
:alt: Translate me on Weblate
|
||||||
|
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||||
|
:target: https://runbot.odoo-community.org/runbot/89/14.0
|
||||||
|
:alt: Try me on Runbot
|
||||||
|
|
||||||
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||||
|
|
||||||
|
This module implements a generic fiscal year closing system for those
|
||||||
|
countries where closing/opening moves or other kind of closing operations are
|
||||||
|
mandatory in accounting books.
|
||||||
|
|
||||||
|
It includes a template mechanism that can be used in localizations for
|
||||||
|
providing the possible configurations to be used by the closing engine.
|
||||||
|
|
||||||
|
**Table of contents**
|
||||||
|
|
||||||
|
.. contents::
|
||||||
|
:local:
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
=============
|
||||||
|
|
||||||
|
If you want to add a closing template or check existing ones:
|
||||||
|
|
||||||
|
#. Go to *Accounting/Invoicing > Configuration > Fiscal year closing > Closing templates*.
|
||||||
|
#. Click on Create.
|
||||||
|
#. Put a name for the template.
|
||||||
|
#. Mark if you want to check if there's any draft move in the date range
|
||||||
|
before making the closing operations.
|
||||||
|
#. Select the chart templates for which companies that have this chart you want
|
||||||
|
this template to be available for.
|
||||||
|
#. Add one line for each of the journal entries you want to create on the
|
||||||
|
closing operation.
|
||||||
|
#. This line has a name, a code, an optional journal (selectable per company),
|
||||||
|
a sequence for ordering this line with the others, and the type we want to
|
||||||
|
assign on the resulting journal entry created.
|
||||||
|
#. Then you can configure accounts for being mapped on the section
|
||||||
|
"Accounts mapping".
|
||||||
|
#. If you put a destination account on each mapping line, then the balance of
|
||||||
|
the source account will be transferred to that account.
|
||||||
|
#. If there's no destination account, then the balance of the account will be
|
||||||
|
nullified through one or several journal items with the opposite balance.
|
||||||
|
#. The way these opposite journal items will be created is determined by the
|
||||||
|
closing type in the section "Account closing types":
|
||||||
|
|
||||||
|
* Balance: There will be only one journal item with the opposite balance.
|
||||||
|
* Un-reconciled: The opposite balance will be grouped by the partner field
|
||||||
|
in the period journal entries.
|
||||||
|
|
||||||
|
#. There's a default closing type to use, and you can specify others by
|
||||||
|
account type.
|
||||||
|
#. You can configure a closing operation for being the reverse move of another
|
||||||
|
previous move generated by a closing operation (typically, the opening
|
||||||
|
move after the closing one). For making that, fill the "Inverse config"
|
||||||
|
field with the code of the closing operation you want to reverse, and
|
||||||
|
place this operation after that one (not necessarily immediately after).
|
||||||
|
#. The balances of the inverted journal items and the initial ones are
|
||||||
|
reconciled by default.
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
For closing a fiscal year:
|
||||||
|
|
||||||
|
#. Go to *Accounting > Adviser > Fiscal year closings*
|
||||||
|
#. Click on create.
|
||||||
|
#. Select the year for which you want to perform the closing. If your fiscal
|
||||||
|
year doesn't coincide with a natural year, input the last year of both of
|
||||||
|
the involved years.
|
||||||
|
#. Select the closing template you want to use.
|
||||||
|
#. Click on "Calculate".
|
||||||
|
#. Check the result clicking on the "Show Moves" or "Show Move Lines" buttons.
|
||||||
|
#. If everything is OK, then click on "Confirm and post moves" for finishing
|
||||||
|
the closing, posting and reconciling the journal entries.
|
||||||
|
#. You can cancel the closing in any moment pressing "Cancel" button, which
|
||||||
|
unreconciles and removes closing journal entries.
|
||||||
|
#. If one of the created journal entries is unbalanced, as Odoo doesn't allow
|
||||||
|
to create unbalanced entries, a new screen will be shown for checking the
|
||||||
|
problem on the created entry.
|
||||||
|
|
||||||
|
Bug Tracker
|
||||||
|
===========
|
||||||
|
|
||||||
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-closing/issues>`_.
|
||||||
|
In case of trouble, please check there if your issue has already been reported.
|
||||||
|
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||||
|
`feedback <https://github.com/OCA/account-closing/issues/new?body=module:%20account_fiscal_year_closing%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||||
|
|
||||||
|
Do not contact contributors directly about support or help with technical issues.
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Authors
|
||||||
|
~~~~~~~
|
||||||
|
|
||||||
|
* Tecnativa
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||||
|
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||||
|
* Jordi Ballester Alomar <https://github.com/JordiBForgeFlow>
|
||||||
|
* Sergio Corato <https://github.com/sergiocorato>
|
||||||
|
* `CorporateHub <https://corporatehub.eu/>`__
|
||||||
|
|
||||||
|
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
||||||
|
|
||||||
|
Maintainers
|
||||||
|
~~~~~~~~~~~
|
||||||
|
|
||||||
|
This module is maintained by the OCA.
|
||||||
|
|
||||||
|
.. image:: https://odoo-community.org/logo.png
|
||||||
|
:alt: Odoo Community Association
|
||||||
|
:target: https://odoo-community.org
|
||||||
|
|
||||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
mission is to support the collaborative development of Odoo features and
|
||||||
|
promote its widespread use.
|
||||||
|
|
||||||
|
This module is part of the `OCA/account-closing <https://github.com/OCA/account-closing/tree/14.0/account_fiscal_year_closing>`_ project on GitHub.
|
||||||
|
|
||||||
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user