├── .copier-answers.yml ├── .editorconfig ├── .github └── workflows │ ├── pre-commit.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .pylintrc-mandatory ├── .ruff.toml ├── LICENSE ├── README.md ├── checklog-odoo.cfg ├── ebill_postfinance ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ ├── ir_cron.xml │ ├── mail_activity_type.xml │ └── transmit.method.xml ├── i18n │ └── ebill_postfinance.pot ├── messages │ ├── invoice-2003A.jinja │ ├── invoice-yellowbill.jinja │ └── ybInvoice_V2.0.4.xsd ├── models │ ├── __init__.py │ ├── account_move.py │ ├── account_move_line.py │ ├── ebill_payment_contract.py │ ├── ebill_postfinance_invoice_message.py │ ├── ebill_postfinance_service.py │ └── sale_order.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── INSTALL.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ ├── common.py │ ├── fixtures │ │ └── cassettes │ │ │ ├── test_ping_service.yaml │ │ │ ├── test_search_invoices.yaml │ │ │ └── test_upload_file.yaml │ ├── samples │ │ ├── credit_note_yb.xml │ │ ├── invoice_qr_yb.xml │ │ ├── invoice_qr_yb_discount.xml │ │ └── yellowbill_qr_iban.xml │ ├── test_account_move.py │ ├── test_ebill_postfinance.py │ ├── test_ebill_postfinance_message_yb.py │ └── test_ebill_postfinance_message_yb_creditnote.py └── views │ ├── ebill_payment_contract.xml │ ├── ebill_postfinance_invoice_message.xml │ ├── ebill_postfinance_service.xml │ └── message_template.xml ├── ebill_postfinance_customer_free_ref ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ebill_postfinance_customer_free_ref.pot ├── models │ ├── __init__.py │ ├── account_move.py │ └── sale_order.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html └── tests │ ├── __init__.py │ └── test_postfinance_customer_free_ref.py ├── ebill_postfinance_stock ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ebill_postfinance_stock.pot ├── messages │ └── invoice-line-stock-yellowbill.jinja ├── models │ ├── __init__.py │ └── ebill_postfinance_invoice_message.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html └── tests │ ├── __init__.py │ ├── samples │ └── invoice_qr_yb.xml │ └── test_ebill_postfinance_message_yb.py ├── eslint.config.cjs ├── l10n_ch_account_tags ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── account.account.tag-ch.csv ├── hooks.py ├── i18n │ ├── de.po │ └── l10n_ch_account_tags.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── HISTORY.md │ ├── ROADMAP.md │ └── USAGE.md └── static │ └── description │ ├── icon.png │ └── index.html ├── l10n_ch_adr_report ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── de.po │ ├── fr.pot │ └── l10n_ch_adr_report.pot ├── models │ ├── __init__.py │ └── product_product.py ├── pyproject.toml ├── readme │ ├── AUTHORS.rst │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ └── DESCRIPTION.md ├── report │ ├── DG_ch_delivery_report.xml │ ├── __init__.py │ └── dangerous_delivery_report.py ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── scss │ │ └── adr_report.scss └── tests │ ├── __init__.py │ └── test_product_product.py ├── prettier.config.cjs ├── requirements.txt ├── setup └── _metapackage │ └── pyproject.toml └── test-requirements.txt /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/.ruff.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/README.md -------------------------------------------------------------------------------- /checklog-odoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/checklog-odoo.cfg -------------------------------------------------------------------------------- /ebill_postfinance/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/README.rst -------------------------------------------------------------------------------- /ebill_postfinance/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /ebill_postfinance/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/__manifest__.py -------------------------------------------------------------------------------- /ebill_postfinance/data/ir_cron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/data/ir_cron.xml -------------------------------------------------------------------------------- /ebill_postfinance/data/mail_activity_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/data/mail_activity_type.xml -------------------------------------------------------------------------------- /ebill_postfinance/data/transmit.method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/data/transmit.method.xml -------------------------------------------------------------------------------- /ebill_postfinance/i18n/ebill_postfinance.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/i18n/ebill_postfinance.pot -------------------------------------------------------------------------------- /ebill_postfinance/messages/invoice-2003A.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/messages/invoice-2003A.jinja -------------------------------------------------------------------------------- /ebill_postfinance/messages/invoice-yellowbill.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/messages/invoice-yellowbill.jinja -------------------------------------------------------------------------------- /ebill_postfinance/messages/ybInvoice_V2.0.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/messages/ybInvoice_V2.0.4.xsd -------------------------------------------------------------------------------- /ebill_postfinance/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/__init__.py -------------------------------------------------------------------------------- /ebill_postfinance/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/account_move.py -------------------------------------------------------------------------------- /ebill_postfinance/models/account_move_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/account_move_line.py -------------------------------------------------------------------------------- /ebill_postfinance/models/ebill_payment_contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/ebill_payment_contract.py -------------------------------------------------------------------------------- /ebill_postfinance/models/ebill_postfinance_invoice_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/ebill_postfinance_invoice_message.py -------------------------------------------------------------------------------- /ebill_postfinance/models/ebill_postfinance_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/ebill_postfinance_service.py -------------------------------------------------------------------------------- /ebill_postfinance/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/models/sale_order.py -------------------------------------------------------------------------------- /ebill_postfinance/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/pyproject.toml -------------------------------------------------------------------------------- /ebill_postfinance/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/CONFIGURE.md -------------------------------------------------------------------------------- /ebill_postfinance/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /ebill_postfinance/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /ebill_postfinance/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/INSTALL.md -------------------------------------------------------------------------------- /ebill_postfinance/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/ROADMAP.md -------------------------------------------------------------------------------- /ebill_postfinance/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/readme/USAGE.md -------------------------------------------------------------------------------- /ebill_postfinance/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/security/ir.model.access.csv -------------------------------------------------------------------------------- /ebill_postfinance/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/static/description/icon.png -------------------------------------------------------------------------------- /ebill_postfinance/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/static/description/index.html -------------------------------------------------------------------------------- /ebill_postfinance/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/__init__.py -------------------------------------------------------------------------------- /ebill_postfinance/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/common.py -------------------------------------------------------------------------------- /ebill_postfinance/tests/fixtures/cassettes/test_ping_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/fixtures/cassettes/test_ping_service.yaml -------------------------------------------------------------------------------- /ebill_postfinance/tests/fixtures/cassettes/test_search_invoices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/fixtures/cassettes/test_search_invoices.yaml -------------------------------------------------------------------------------- /ebill_postfinance/tests/fixtures/cassettes/test_upload_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/fixtures/cassettes/test_upload_file.yaml -------------------------------------------------------------------------------- /ebill_postfinance/tests/samples/credit_note_yb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/samples/credit_note_yb.xml -------------------------------------------------------------------------------- /ebill_postfinance/tests/samples/invoice_qr_yb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/samples/invoice_qr_yb.xml -------------------------------------------------------------------------------- /ebill_postfinance/tests/samples/invoice_qr_yb_discount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/samples/invoice_qr_yb_discount.xml -------------------------------------------------------------------------------- /ebill_postfinance/tests/samples/yellowbill_qr_iban.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/samples/yellowbill_qr_iban.xml -------------------------------------------------------------------------------- /ebill_postfinance/tests/test_account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/test_account_move.py -------------------------------------------------------------------------------- /ebill_postfinance/tests/test_ebill_postfinance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/test_ebill_postfinance.py -------------------------------------------------------------------------------- /ebill_postfinance/tests/test_ebill_postfinance_message_yb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/test_ebill_postfinance_message_yb.py -------------------------------------------------------------------------------- /ebill_postfinance/tests/test_ebill_postfinance_message_yb_creditnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/tests/test_ebill_postfinance_message_yb_creditnote.py -------------------------------------------------------------------------------- /ebill_postfinance/views/ebill_payment_contract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/views/ebill_payment_contract.xml -------------------------------------------------------------------------------- /ebill_postfinance/views/ebill_postfinance_invoice_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/views/ebill_postfinance_invoice_message.xml -------------------------------------------------------------------------------- /ebill_postfinance/views/ebill_postfinance_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/views/ebill_postfinance_service.xml -------------------------------------------------------------------------------- /ebill_postfinance/views/message_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance/views/message_template.xml -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/README.rst -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/__manifest__.py -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/i18n/ebill_postfinance_customer_free_ref.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/i18n/ebill_postfinance_customer_free_ref.pot -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/models/__init__.py -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/models/account_move.py -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/models/sale_order.py -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/pyproject.toml -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/static/description/icon.png -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/static/description/index.html -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_postfinance_customer_free_ref 2 | -------------------------------------------------------------------------------- /ebill_postfinance_customer_free_ref/tests/test_postfinance_customer_free_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_customer_free_ref/tests/test_postfinance_customer_free_ref.py -------------------------------------------------------------------------------- /ebill_postfinance_stock/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/README.rst -------------------------------------------------------------------------------- /ebill_postfinance_stock/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /ebill_postfinance_stock/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/__manifest__.py -------------------------------------------------------------------------------- /ebill_postfinance_stock/i18n/ebill_postfinance_stock.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/i18n/ebill_postfinance_stock.pot -------------------------------------------------------------------------------- /ebill_postfinance_stock/messages/invoice-line-stock-yellowbill.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/messages/invoice-line-stock-yellowbill.jinja -------------------------------------------------------------------------------- /ebill_postfinance_stock/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ebill_postfinance_invoice_message 2 | -------------------------------------------------------------------------------- /ebill_postfinance_stock/models/ebill_postfinance_invoice_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/models/ebill_postfinance_invoice_message.py -------------------------------------------------------------------------------- /ebill_postfinance_stock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/pyproject.toml -------------------------------------------------------------------------------- /ebill_postfinance_stock/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /ebill_postfinance_stock/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /ebill_postfinance_stock/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/static/description/icon.png -------------------------------------------------------------------------------- /ebill_postfinance_stock/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/static/description/index.html -------------------------------------------------------------------------------- /ebill_postfinance_stock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_ebill_postfinance_message_yb 2 | -------------------------------------------------------------------------------- /ebill_postfinance_stock/tests/samples/invoice_qr_yb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/tests/samples/invoice_qr_yb.xml -------------------------------------------------------------------------------- /ebill_postfinance_stock/tests/test_ebill_postfinance_message_yb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/ebill_postfinance_stock/tests/test_ebill_postfinance_message_yb.py -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /l10n_ch_account_tags/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/README.rst -------------------------------------------------------------------------------- /l10n_ch_account_tags/__init__.py: -------------------------------------------------------------------------------- 1 | from .hooks import post_init 2 | -------------------------------------------------------------------------------- /l10n_ch_account_tags/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/__manifest__.py -------------------------------------------------------------------------------- /l10n_ch_account_tags/data/account.account.tag-ch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/data/account.account.tag-ch.csv -------------------------------------------------------------------------------- /l10n_ch_account_tags/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/hooks.py -------------------------------------------------------------------------------- /l10n_ch_account_tags/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/i18n/de.po -------------------------------------------------------------------------------- /l10n_ch_account_tags/i18n/l10n_ch_account_tags.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/i18n/l10n_ch_account_tags.pot -------------------------------------------------------------------------------- /l10n_ch_account_tags/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/pyproject.toml -------------------------------------------------------------------------------- /l10n_ch_account_tags/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_ch_account_tags/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/readme/CREDITS.md -------------------------------------------------------------------------------- /l10n_ch_account_tags/readme/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/readme/HISTORY.md -------------------------------------------------------------------------------- /l10n_ch_account_tags/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /l10n_ch_account_tags/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_ch_account_tags/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/static/description/icon.png -------------------------------------------------------------------------------- /l10n_ch_account_tags/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_account_tags/static/description/index.html -------------------------------------------------------------------------------- /l10n_ch_adr_report/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/README.rst -------------------------------------------------------------------------------- /l10n_ch_adr_report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/__init__.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/__manifest__.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/i18n/de.po -------------------------------------------------------------------------------- /l10n_ch_adr_report/i18n/fr.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/i18n/fr.pot -------------------------------------------------------------------------------- /l10n_ch_adr_report/i18n/l10n_ch_adr_report.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/i18n/l10n_ch_adr_report.pot -------------------------------------------------------------------------------- /l10n_ch_adr_report/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/models/__init__.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/models/product_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/models/product_product.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/pyproject.toml -------------------------------------------------------------------------------- /l10n_ch_adr_report/readme/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/readme/AUTHORS.rst -------------------------------------------------------------------------------- /l10n_ch_adr_report/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_ch_adr_report/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/readme/CREDITS.md -------------------------------------------------------------------------------- /l10n_ch_adr_report/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_ch_adr_report/report/DG_ch_delivery_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/report/DG_ch_delivery_report.xml -------------------------------------------------------------------------------- /l10n_ch_adr_report/report/__init__.py: -------------------------------------------------------------------------------- 1 | from . import dangerous_delivery_report 2 | -------------------------------------------------------------------------------- /l10n_ch_adr_report/report/dangerous_delivery_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/report/dangerous_delivery_report.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/static/description/icon.png -------------------------------------------------------------------------------- /l10n_ch_adr_report/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/static/description/index.html -------------------------------------------------------------------------------- /l10n_ch_adr_report/static/src/scss/adr_report.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/static/src/scss/adr_report.scss -------------------------------------------------------------------------------- /l10n_ch_adr_report/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/tests/__init__.py -------------------------------------------------------------------------------- /l10n_ch_adr_report/tests/test_product_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/l10n_ch_adr_report/tests/test_product_product.py -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup/_metapackage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-switzerland/HEAD/setup/_metapackage/pyproject.toml -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | xmlunittest 2 | vcrpy 3 | --------------------------------------------------------------------------------