├── README.rst ├── .gitattributes ├── cache └── .gitignore ├── MANIFEST.in ├── view ├── pos_sequence_tree.xml ├── transaction_tree.xml ├── invoice_export_license_tree.xml ├── pos_tree.xml ├── invoice_export_license_form.xml ├── pos_sequence_form.xml ├── currency_form.xml ├── bank_account_form.xml ├── invoice_tree.xml ├── recover_invoice_start_form.xml ├── recover_invoice_data_form.xml ├── party_form.xml ├── transaction_form.xml ├── pos_form.xml ├── credit_start_form.xml └── invoice_form.xml ├── scripts ├── __init__.py └── update_currencies.py ├── tests ├── __init__.py ├── test_module.py ├── test_scenario.py ├── scenario_invoice_noperiod.rst ├── tools.py ├── scenario_recover_invoice_electronic.rst ├── scenario_invoice_supplier.rst ├── scenario_invoice_pos_electronic_fce.rst ├── scenario_invoice.rst ├── scenario_invoice_pos_electronic.rst └── scenario_invoice_pos_electronic_wsfex.rst ├── tryton.cfg ├── bank.xml ├── currency.xml ├── bank.py ├── tox.ini ├── .gitlab-ci.yml ├── COPYRIGHT ├── CHANGELOG ├── doc └── index.rst ├── .gitignore ├── __init__.py ├── party.py ├── .drone.yml ├── party.xml ├── pos.xml ├── invoice.xml ├── currency.py ├── setup.py ├── message.xml ├── pos.py └── LICENSE /README.rst: -------------------------------------------------------------------------------- 1 | doc/index.rst -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.odt diff=odt 2 | -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG 2 | include COPYRIGHT 3 | include LICENSE 4 | include README.rst 5 | graft doc 6 | -------------------------------------------------------------------------------- /view/pos_sequence_tree.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /view/transaction_tree.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /view/invoice_export_license_tree.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Tryton. The COPYRIGHT file at the top level of 2 | # this repository contains the full copyright notices and license terms. 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Tryton. The COPYRIGHT file at the top level of 2 | # this repository contains the full copyright notices and license terms. 3 | -------------------------------------------------------------------------------- /view/pos_tree.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /view/invoice_export_license_form.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |