├── .gitignore ├── LICENSE ├── README.md ├── account_banking_sepa_direct_debit_py3o ├── __init__.py ├── __manifest__.py ├── report.xml └── sepa_mandate.odt ├── account_check_deposit_py3o ├── __init__.py ├── __manifest__.py ├── check_deposit.odt ├── pyproject.toml ├── report.xml └── static │ └── description │ └── icon.png ├── account_invoice_overdue_reminder_py3o ├── __init__.py ├── __manifest__.py ├── overdue_reminder.odt └── report.xml ├── account_invoice_report_py3o ├── __init__.py ├── __manifest__.py ├── account_invoice.odt ├── pyproject.toml ├── report.xml └── static │ └── description │ └── icon.png ├── purchase_report_py3o ├── __init__.py ├── __manifest__.py ├── purchase_order.odt ├── pyproject.toml ├── report.xml ├── rfq.odt └── static │ └── description │ └── icon.png ├── sale_report_py3o ├── __init__.py ├── __manifest__.py ├── pyproject.toml ├── report.xml ├── sale_order.odt └── static │ └── description │ └── icon.png ├── setup └── _metapackage │ └── pyproject.toml └── stock_report_py3o ├── __init__.py ├── __manifest__.py ├── delivery.odt ├── picking.odt ├── pyproject.toml ├── report.xml └── static └── description └── icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/README.md -------------------------------------------------------------------------------- /account_banking_sepa_direct_debit_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account_banking_sepa_direct_debit_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_banking_sepa_direct_debit_py3o/__manifest__.py -------------------------------------------------------------------------------- /account_banking_sepa_direct_debit_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_banking_sepa_direct_debit_py3o/report.xml -------------------------------------------------------------------------------- /account_banking_sepa_direct_debit_py3o/sepa_mandate.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_banking_sepa_direct_debit_py3o/sepa_mandate.odt -------------------------------------------------------------------------------- /account_check_deposit_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account_check_deposit_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_check_deposit_py3o/__manifest__.py -------------------------------------------------------------------------------- /account_check_deposit_py3o/check_deposit.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_check_deposit_py3o/check_deposit.odt -------------------------------------------------------------------------------- /account_check_deposit_py3o/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_check_deposit_py3o/pyproject.toml -------------------------------------------------------------------------------- /account_check_deposit_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_check_deposit_py3o/report.xml -------------------------------------------------------------------------------- /account_check_deposit_py3o/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_check_deposit_py3o/static/description/icon.png -------------------------------------------------------------------------------- /account_invoice_overdue_reminder_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account_invoice_overdue_reminder_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_overdue_reminder_py3o/__manifest__.py -------------------------------------------------------------------------------- /account_invoice_overdue_reminder_py3o/overdue_reminder.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_overdue_reminder_py3o/overdue_reminder.odt -------------------------------------------------------------------------------- /account_invoice_overdue_reminder_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_overdue_reminder_py3o/report.xml -------------------------------------------------------------------------------- /account_invoice_report_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account_invoice_report_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_report_py3o/__manifest__.py -------------------------------------------------------------------------------- /account_invoice_report_py3o/account_invoice.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_report_py3o/account_invoice.odt -------------------------------------------------------------------------------- /account_invoice_report_py3o/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_report_py3o/pyproject.toml -------------------------------------------------------------------------------- /account_invoice_report_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_report_py3o/report.xml -------------------------------------------------------------------------------- /account_invoice_report_py3o/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/account_invoice_report_py3o/static/description/icon.png -------------------------------------------------------------------------------- /purchase_report_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /purchase_report_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/__manifest__.py -------------------------------------------------------------------------------- /purchase_report_py3o/purchase_order.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/purchase_order.odt -------------------------------------------------------------------------------- /purchase_report_py3o/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/pyproject.toml -------------------------------------------------------------------------------- /purchase_report_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/report.xml -------------------------------------------------------------------------------- /purchase_report_py3o/rfq.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/rfq.odt -------------------------------------------------------------------------------- /purchase_report_py3o/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/purchase_report_py3o/static/description/icon.png -------------------------------------------------------------------------------- /sale_report_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sale_report_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/sale_report_py3o/__manifest__.py -------------------------------------------------------------------------------- /sale_report_py3o/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/sale_report_py3o/pyproject.toml -------------------------------------------------------------------------------- /sale_report_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/sale_report_py3o/report.xml -------------------------------------------------------------------------------- /sale_report_py3o/sale_order.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/sale_report_py3o/sale_order.odt -------------------------------------------------------------------------------- /sale_report_py3o/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/sale_report_py3o/static/description/icon.png -------------------------------------------------------------------------------- /setup/_metapackage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/setup/_metapackage/pyproject.toml -------------------------------------------------------------------------------- /stock_report_py3o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_report_py3o/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/__manifest__.py -------------------------------------------------------------------------------- /stock_report_py3o/delivery.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/delivery.odt -------------------------------------------------------------------------------- /stock_report_py3o/picking.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/picking.odt -------------------------------------------------------------------------------- /stock_report_py3o/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/pyproject.toml -------------------------------------------------------------------------------- /stock_report_py3o/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/report.xml -------------------------------------------------------------------------------- /stock_report_py3o/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akretion/odoo-py3o-report-templates/HEAD/stock_report_py3o/static/description/icon.png --------------------------------------------------------------------------------