Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 16, 2020 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/c7a599eabf70143f910d9f74b79c33bd to your computer and use it in GitHub Desktop.
Save r-ryantm/c7a599eabf70143f910d9f74b79c33bd to your computer and use it in GitHub Desktop.
/nix/store/blmlsb5xm057p78xmajdkf1a7c7ddq0j-trytond-5.6.7
├── bin
│   ├── trytond
│   ├── trytond-admin
│   ├── trytond-console
│   ├── trytond-cron
│   └── trytond-worker
├── lib
│   └── python3.7
│   └── site-packages
│   ├── trytond
│   │   ├── admin.py
│   │   ├── application.py
│   │   ├── backend
│   │   │   ├── database.py
│   │   │   ├── __init__.py
│   │   │   ├── postgresql
│   │   │   │   ├── database.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── init.sql
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── database.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── table.cpython-37.pyc
│   │   │   │   └── table.py
│   │   │   ├── __pycache__
│   │   │   │   ├── database.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── table.cpython-37.pyc
│   │   │   ├── sqlite
│   │   │   │   ├── database.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── init.sql
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── database.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── table.cpython-37.pyc
│   │   │   │   └── table.py
│   │   │   └── table.py
│   │   ├── bus.py
│   │   ├── cache.py
│   │   ├── commandline.py
│   │   ├── config.py
│   │   ├── console.py
│   │   ├── const.py
│   │   ├── convert.py
│   │   ├── cron.py
│   │   ├── exceptions.py
│   │   ├── filestore.py
│   │   ├── i18n.py
│   │   ├── __init__.py
│   │   ├── ir
│   │   │   ├── action.py
│   │   │   ├── action.xml
│   │   │   ├── attachment.py
│   │   │   ├── attachment.xml
│   │   │   ├── cache.py
│   │   │   ├── calendar_.py
│   │   │   ├── calendar_.xml
│   │   │   ├── configuration.py
│   │   │   ├── cron.py
│   │   │   ├── cron.xml
│   │   │   ├── date.py
│   │   │   ├── exceptions.py
│   │   │   ├── export.py
│   │   │   ├── export.xml
│   │   │   ├── __init__.py
│   │   │   ├── ir.xml
│   │   │   ├── lang.py
│   │   │   ├── lang.xml
│   │   │   ├── locale
│   │   │   │   ├── bg.po
│   │   │   │   ├── ca.po
│   │   │   │   ├── cs.po
│   │   │   │   ├── de.po
│   │   │   │   ├── es_419.po
│   │   │   │   ├── es.po
│   │   │   │   ├── et.po
│   │   │   │   ├── fa.po
│   │   │   │   ├── fi.po
│   │   │   │   ├── fr.po
│   │   │   │   ├── hu.po
│   │   │   │   ├── id.po
│   │   │   │   ├── it.po
│   │   │   │   ├── lo.po
│   │   │   │   ├── lt.po
│   │   │   │   ├── nl.po
│   │   │   │   ├── pl.po
│   │   │   │   ├── pt.po
│   │   │   │   ├── ru.po
│   │   │   │   ├── sl.po
│   │   │   │   ├── tr.po
│   │   │   │   └── zh_CN.po
│   │   │   ├── message.py
│   │   │   ├── message.xml
│   │   │   ├── model.py
│   │   │   ├── model.xml
│   │   │   ├── module.py
│   │   │   ├── module.xml
│   │   │   ├── note.py
│   │   │   ├── note.xml
│   │   │   ├── __pycache__
│   │   │   │   ├── action.cpython-37.pyc
│   │   │   │   ├── attachment.cpython-37.pyc
│   │   │   │   ├── cache.cpython-37.pyc
│   │   │   │   ├── calendar_.cpython-37.pyc
│   │   │   │   ├── configuration.cpython-37.pyc
│   │   │   │   ├── cron.cpython-37.pyc
│   │   │   │   ├── date.cpython-37.pyc
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── export.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── lang.cpython-37.pyc
│   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   ├── module.cpython-37.pyc
│   │   │   │   ├── note.cpython-37.pyc
│   │   │   │   ├── queue.cpython-37.pyc
│   │   │   │   ├── resource.cpython-37.pyc
│   │   │   │   ├── routes.cpython-37.pyc
│   │   │   │   ├── rule.cpython-37.pyc
│   │   │   │   ├── sequence.cpython-37.pyc
│   │   │   │   ├── session.cpython-37.pyc
│   │   │   │   ├── translation.cpython-37.pyc
│   │   │   │   └── trigger.cpython-37.pyc
│   │   │   ├── queue.py
│   │   │   ├── resource.py
│   │   │   ├── routes.py
│   │   │   ├── rule.py
│   │   │   ├── rule.xml
│   │   │   ├── sequence.py
│   │   │   ├── sequence.xml
│   │   │   ├── session.py
│   │   │   ├── translation.py
│   │   │   ├── translation.xml
│   │   │   ├── trigger.py
│   │   │   ├── trigger.xml
│   │   │   ├── tryton.cfg
│   │   │   ├── ui
│   │   │   │   ├── board.rnc
│   │   │   │   ├── board.rng
│   │   │   │   ├── calendar.rnc
│   │   │   │   ├── calendar.rng
│   │   │   │   ├── form.rnc
│   │   │   │   ├── form.rng
│   │   │   │   ├── graph.rnc
│   │   │   │   ├── graph.rng
│   │   │   │   ├── icon.py
│   │   │   │   ├── icons
│   │   │   │   │   ├── tryton-board.svg
│   │   │   │   │   ├── tryton-calendar.svg
│   │   │   │   │   ├── tryton-folder.svg
│   │   │   │   │   ├── tryton-form.svg
│   │   │   │   │   ├── tryton-graph.svg
│   │   │   │   │   ├── tryton-list.svg
│   │   │   │   │   ├── tryton-settings.svg
│   │   │   │   │   └── tryton-tree.svg
│   │   │   │   ├── icon.xml
│   │   │   │   ├── __init__.py
│   │   │   │   ├── menu.py
│   │   │   │   ├── menu.xml
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── icon.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── menu.cpython-37.pyc
│   │   │   │   │   └── view.cpython-37.pyc
│   │   │   │   ├── tree.rnc
│   │   │   │   ├── tree.rng
│   │   │   │   ├── ui.xml
│   │   │   │   ├── view.py
│   │   │   │   └── view.xml
│   │   │   └── view
│   │   │   ├── action_act_window_domain_form.xml
│   │   │   ├── action_act_window_domain_list2.xml
│   │   │   ├── action_act_window_domain_list.xml
│   │   │   ├── action_act_window_form.xml
│   │   │   ├── action_act_window_list.xml
│   │   │   ├── action_act_window_view_form.xml
│   │   │   ├── action_act_window_view_list2.xml
│   │   │   ├── action_act_window_view_list.xml
│   │   │   ├── action_form.xml
│   │   │   ├── action_keyword_form.xml
│   │   │   ├── action_keyword_list.xml
│   │   │   ├── action_list.xml
│   │   │   ├── action_report_form.xml
│   │   │   ├── action_report_list.xml
│   │   │   ├── action_url_form.xml
│   │   │   ├── action_url_list.xml
│   │   │   ├── action_wizard_form.xml
│   │   │   ├── action_wizard_list.xml
│   │   │   ├── attachment_form.xml
│   │   │   ├── attachment_list.xml
│   │   │   ├── cron_form.xml
│   │   │   ├── cron_list.xml
│   │   │   ├── export_form.xml
│   │   │   ├── export_line_form.xml
│   │   │   ├── export_line_list.xml
│   │   │   ├── export_list.xml
│   │   │   ├── icon_view_form.xml
│   │   │   ├── icon_view_list.xml
│   │   │   ├── lang_config_start_form.xml
│   │   │   ├── lang_form.xml
│   │   │   ├── lang_list.xml
│   │   │   ├── message_form.xml
│   │   │   ├── message_list.xml
│   │   │   ├── model_access_form.xml
│   │   │   ├── model_access_list.xml
│   │   │   ├── model_button_click_form.xml
│   │   │   ├── model_button_click_list.xml
│   │   │   ├── model_button_form.xml
│   │   │   ├── model_button_list.xml
│   │   │   ├── model_button_rule_form.xml
│   │   │   ├── model_button_rule_list.xml
│   │   │   ├── model_data_form.xml
│   │   │   ├── model_data_list.xml
│   │   │   ├── model_field_access_form.xml
│   │   │   ├── model_field_access_list.xml
│   │   │   ├── model_field_form.xml
│   │   │   ├── model_field_list.xml
│   │   │   ├── model_form.xml
│   │   │   ├── model_list.xml
│   │   │   ├── model_print_model_graph_start_form.xml
│   │   │   ├── module_activate_upgrade_done_form.xml
│   │   │   ├── module_activate_upgrade_start_form.xml
│   │   │   ├── module_config_wizard_done_form.xml
│   │   │   ├── module_config_wizard_first_form.xml
│   │   │   ├── module_config_wizard_item_list.xml
│   │   │   ├── module_config_wizard_other_form.xml
│   │   │   ├── module_dependency_form.xml
│   │   │   ├── module_dependency_list.xml
│   │   │   ├── module_form.xml
│   │   │   ├── module_list.xml
│   │   │   ├── note_form.xml
│   │   │   ├── note_list.xml
│   │   │   ├── rule_form.xml
│   │   │   ├── rule_group_form.xml
│   │   │   ├── rule_group_list.xml
│   │   │   ├── rule_list.xml
│   │   │   ├── sequence_form.xml
│   │   │   ├── sequence_list.xml
│   │   │   ├── sequence_type_form.xml
│   │   │   ├── sequence_type_list.xml
│   │   │   ├── translation_clean_start_form.xml
│   │   │   ├── translation_clean_succeed_form.xml
│   │   │   ├── translation_export_result_form.xml
│   │   │   ├── translation_export_start_form.xml
│   │   │   ├── translation_form.xml
│   │   │   ├── translation_list.xml
│   │   │   ├── translation_set_start_form.xml
│   │   │   ├── translation_set_succeed_form.xml
│   │   │   ├── translation_update_start_form.xml
│   │   │   ├── trigger_form.xml
│   │   │   ├── trigger_list.xml
│   │   │   ├── ui_menu_favorite_form.xml
│   │   │   ├── ui_menu_favorite_list.xml
│   │   │   ├── ui_menu_form.xml
│   │   │   ├── ui_menu_list.xml
│   │   │   ├── ui_menu_tree.xml
│   │   │   ├── ui_view_form.xml
│   │   │   ├── ui_view_list.xml
│   │   │   ├── ui_view_search_form.xml
│   │   │   ├── ui_view_search_list.xml
│   │   │   ├── ui_view_tree_state_form.xml
│   │   │   ├── ui_view_tree_state_list.xml
│   │   │   ├── ui_view_tree_width_form.xml
│   │   │   └── ui_view_tree_width_list.xml
│   │   ├── model
│   │   │   ├── active.py
│   │   │   ├── descriptors.py
│   │   │   ├── dictschema.py
│   │   │   ├── exceptions.py
│   │   │   ├── fields
│   │   │   │   ├── binary.py
│   │   │   │   ├── boolean.py
│   │   │   │   ├── char.py
│   │   │   │   ├── date.py
│   │   │   │   ├── dict.py
│   │   │   │   ├── field.py
│   │   │   │   ├── float.py
│   │   │   │   ├── function.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── integer.py
│   │   │   │   ├── many2many.py
│   │   │   │   ├── many2one.py
│   │   │   │   ├── multiselection.py
│   │   │   │   ├── numeric.py
│   │   │   │   ├── one2many.py
│   │   │   │   ├── one2one.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── binary.cpython-37.pyc
│   │   │   │   │   ├── boolean.cpython-37.pyc
│   │   │   │   │   ├── char.cpython-37.pyc
│   │   │   │   │   ├── date.cpython-37.pyc
│   │   │   │   │   ├── dict.cpython-37.pyc
│   │   │   │   │   ├── field.cpython-37.pyc
│   │   │   │   │   ├── float.cpython-37.pyc
│   │   │   │   │   ├── function.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── integer.cpython-37.pyc
│   │   │   │   │   ├── many2many.cpython-37.pyc
│   │   │   │   │   ├── many2one.cpython-37.pyc
│   │   │   │   │   ├── multiselection.cpython-37.pyc
│   │   │   │   │   ├── numeric.cpython-37.pyc
│   │   │   │   │   ├── one2many.cpython-37.pyc
│   │   │   │   │   ├── one2one.cpython-37.pyc
│   │   │   │   │   ├── reference.cpython-37.pyc
│   │   │   │   │   ├── selection.cpython-37.pyc
│   │   │   │   │   └── text.cpython-37.pyc
│   │   │   │   ├── reference.py
│   │   │   │   ├── selection.py
│   │   │   │   └── text.py
│   │   │   ├── __init__.py
│   │   │   ├── match.py
│   │   │   ├── model.py
│   │   │   ├── modelsingleton.py
│   │   │   ├── modelsql.py
│   │   │   ├── modelstorage.py
│   │   │   ├── modelview.py
│   │   │   ├── multivalue.py
│   │   │   ├── order.py
│   │   │   ├── __pycache__
│   │   │   │   ├── active.cpython-37.pyc
│   │   │   │   ├── descriptors.cpython-37.pyc
│   │   │   │   ├── dictschema.cpython-37.pyc
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── match.cpython-37.pyc
│   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   ├── modelsingleton.cpython-37.pyc
│   │   │   │   ├── modelsql.cpython-37.pyc
│   │   │   │   ├── modelstorage.cpython-37.pyc
│   │   │   │   ├── modelview.cpython-37.pyc
│   │   │   │   ├── multivalue.cpython-37.pyc
│   │   │   │   ├── order.cpython-37.pyc
│   │   │   │   ├── tree.cpython-37.pyc
│   │   │   │   ├── union.cpython-37.pyc
│   │   │   │   └── workflow.cpython-37.pyc
│   │   │   ├── tree.py
│   │   │   ├── union.py
│   │   │   └── workflow.py
│   │   ├── modules
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── pool.py
│   │   ├── protocols
│   │   │   ├── dispatcher.py
│   │   │   ├── __init__.py
│   │   │   ├── jsonrpc.py
│   │   │   ├── __pycache__
│   │   │   │   ├── dispatcher.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── jsonrpc.cpython-37.pyc
│   │   │   │   ├── wrappers.cpython-37.pyc
│   │   │   │   └── xmlrpc.cpython-37.pyc
│   │   │   ├── wrappers.py
│   │   │   └── xmlrpc.py
│   │   ├── __pycache__
│   │   │   ├── admin.cpython-37.pyc
│   │   │   ├── application.cpython-37.pyc
│   │   │   ├── bus.cpython-37.pyc
│   │   │   ├── cache.cpython-37.pyc
│   │   │   ├── commandline.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── console.cpython-37.pyc
│   │   │   ├── const.cpython-37.pyc
│   │   │   ├── convert.cpython-37.pyc
│   │   │   ├── cron.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── filestore.cpython-37.pyc
│   │   │   ├── i18n.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── pool.cpython-37.pyc
│   │   │   ├── pyson.cpython-37.pyc
│   │   │   ├── rpc.cpython-37.pyc
│   │   │   ├── security.cpython-37.pyc
│   │   │   ├── sendmail.cpython-37.pyc
│   │   │   ├── test_loader.cpython-37.pyc
│   │   │   ├── transaction.cpython-37.pyc
│   │   │   ├── url.cpython-37.pyc
│   │   │   ├── worker.cpython-37.pyc
│   │   │   └── wsgi.cpython-37.pyc
│   │   ├── pyson.py
│   │   ├── report
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── report.cpython-37.pyc
│   │   │   └── report.py
│   │   ├── res
│   │   │   ├── email_reset_password.html
│   │   │   ├── exceptions.py
│   │   │   ├── group.py
│   │   │   ├── group.xml
│   │   │   ├── __init__.py
│   │   │   ├── ir.py
│   │   │   ├── ir.xml
│   │   │   ├── locale
│   │   │   │   ├── bg.po
│   │   │   │   ├── ca.po
│   │   │   │   ├── cs.po
│   │   │   │   ├── de.po
│   │   │   │   ├── es_419.po
│   │   │   │   ├── es.po
│   │   │   │   ├── et.po
│   │   │   │   ├── fa.po
│   │   │   │   ├── fi.po
│   │   │   │   ├── fr.po
│   │   │   │   ├── hu.po
│   │   │   │   ├── id.po
│   │   │   │   ├── it.po
│   │   │   │   ├── lo.po
│   │   │   │   ├── lt.po
│   │   │   │   ├── nl.po
│   │   │   │   ├── pl.po
│   │   │   │   ├── pt.po
│   │   │   │   ├── ru.po
│   │   │   │   ├── sl.po
│   │   │   │   ├── tr.po
│   │   │   │   └── zh_CN.po
│   │   │   ├── message.xml
│   │   │   ├── __pycache__
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── group.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ir.cpython-37.pyc
│   │   │   │   ├── routes.cpython-37.pyc
│   │   │   │   └── user.cpython-37.pyc
│   │   │   ├── res.xml
│   │   │   ├── routes.py
│   │   │   ├── tryton.cfg
│   │   │   ├── user.py
│   │   │   ├── user.xml
│   │   │   └── view
│   │   │   ├── export_form.xml
│   │   │   ├── export_list.xml
│   │   │   ├── group_form.xml
│   │   │   ├── group_list.xml
│   │   │   ├── sequence_type_form.xml
│   │   │   ├── user_application_form.xml
│   │   │   ├── user_application_list.xml
│   │   │   ├── user_config_start_form.xml
│   │   │   ├── user_form_preferences.xml
│   │   │   ├── user_form.xml
│   │   │   ├── user_list.xml
│   │   │   ├── user_warning_form.xml
│   │   │   └── user_warning_tree.xml
│   │   ├── rpc.py
│   │   ├── security.py
│   │   ├── sendmail.py
│   │   ├── test_loader.py
│   │   ├── tests
│   │   │   ├── access.py
│   │   │   ├── copy_.py
│   │   │   ├── export_data.py
│   │   │   ├── field_binary.py
│   │   │   ├── field_boolean.py
│   │   │   ├── field_char.py
│   │   │   ├── field_context.py
│   │   │   ├── field_date.py
│   │   │   ├── field_datetime.py
│   │   │   ├── field_dict.py
│   │   │   ├── field_float.py
│   │   │   ├── field_function.py
│   │   │   ├── field_integer.py
│   │   │   ├── field_many2many.py
│   │   │   ├── field_many2one.py
│   │   │   ├── field_multiselection.py
│   │   │   ├── field_numeric.py
│   │   │   ├── field_one2many.py
│   │   │   ├── field_one2one.py
│   │   │   ├── field_reference.py
│   │   │   ├── field_selection.py
│   │   │   ├── field_text.py
│   │   │   ├── field_timedelta.py
│   │   │   ├── field_time.py
│   │   │   ├── forbidden.txt
│   │   │   ├── history.py
│   │   │   ├── import_data.py
│   │   │   ├── import_data.xml
│   │   │   ├── __init__.py
│   │   │   ├── message.xml
│   │   │   ├── mixin.py
│   │   │   ├── model.py
│   │   │   ├── modelsql.py
│   │   │   ├── modelstorage.py
│   │   │   ├── modelview.py
│   │   │   ├── modelview.xml
│   │   │   ├── mptt.py
│   │   │   ├── multivalue.py
│   │   │   ├── __pycache__
│   │   │   │   ├── access.cpython-37.pyc
│   │   │   │   ├── copy_.cpython-37.pyc
│   │   │   │   ├── export_data.cpython-37.pyc
│   │   │   │   ├── field_binary.cpython-37.pyc
│   │   │   │   ├── field_boolean.cpython-37.pyc
│   │   │   │   ├── field_char.cpython-37.pyc
│   │   │   │   ├── field_context.cpython-37.pyc
│   │   │   │   ├── field_date.cpython-37.pyc
│   │   │   │   ├── field_datetime.cpython-37.pyc
│   │   │   │   ├── field_dict.cpython-37.pyc
│   │   │   │   ├── field_float.cpython-37.pyc
│   │   │   │   ├── field_function.cpython-37.pyc
│   │   │   │   ├── field_integer.cpython-37.pyc
│   │   │   │   ├── field_many2many.cpython-37.pyc
│   │   │   │   ├── field_many2one.cpython-37.pyc
│   │   │   │   ├── field_multiselection.cpython-37.pyc
│   │   │   │   ├── field_numeric.cpython-37.pyc
│   │   │   │   ├── field_one2many.cpython-37.pyc
│   │   │   │   ├── field_one2one.cpython-37.pyc
│   │   │   │   ├── field_reference.cpython-37.pyc
│   │   │   │   ├── field_selection.cpython-37.pyc
│   │   │   │   ├── field_text.cpython-37.pyc
│   │   │   │   ├── field_time.cpython-37.pyc
│   │   │   │   ├── field_timedelta.cpython-37.pyc
│   │   │   │   ├── history.cpython-37.pyc
│   │   │   │   ├── import_data.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mixin.cpython-37.pyc
│   │   │   │   ├── model.cpython-37.pyc
│   │   │   │   ├── modelsql.cpython-37.pyc
│   │   │   │   ├── modelstorage.cpython-37.pyc
│   │   │   │   ├── modelview.cpython-37.pyc
│   │   │   │   ├── mptt.cpython-37.pyc
│   │   │   │   ├── multivalue.cpython-37.pyc
│   │   │   │   ├── resource.cpython-37.pyc
│   │   │   │   ├── rule.cpython-37.pyc
│   │   │   │   ├── run-tests.cpython-37.pyc
│   │   │   │   ├── test_access.cpython-37.pyc
│   │   │   │   ├── test_backend.cpython-37.pyc
│   │   │   │   ├── test_bus.cpython-37.pyc
│   │   │   │   ├── test_cache.cpython-37.pyc
│   │   │   │   ├── test_copy.cpython-37.pyc
│   │   │   │   ├── test_descriptors.cpython-37.pyc
│   │   │   │   ├── test_exportdata.cpython-37.pyc
│   │   │   │   ├── test_field_binary.cpython-37.pyc
│   │   │   │   ├── test_field_boolean.cpython-37.pyc
│   │   │   │   ├── test_field_char.cpython-37.pyc
│   │   │   │   ├── test_field_context.cpython-37.pyc
│   │   │   │   ├── test_field_date.cpython-37.pyc
│   │   │   │   ├── test_field_datetime.cpython-37.pyc
│   │   │   │   ├── test_field_depends.cpython-37.pyc
│   │   │   │   ├── test_field_dict.cpython-37.pyc
│   │   │   │   ├── test_field_float.cpython-37.pyc
│   │   │   │   ├── test_field_function.cpython-37.pyc
│   │   │   │   ├── test_field_integer.cpython-37.pyc
│   │   │   │   ├── test_field_many2many.cpython-37.pyc
│   │   │   │   ├── test_field_many2one.cpython-37.pyc
│   │   │   │   ├── test_field_multiselection.cpython-37.pyc
│   │   │   │   ├── test_field_numeric.cpython-37.pyc
│   │   │   │   ├── test_field_one2many.cpython-37.pyc
│   │   │   │   ├── test_field_one2one.cpython-37.pyc
│   │   │   │   ├── test_field_reference.cpython-37.pyc
│   │   │   │   ├── test_field_selection.cpython-37.pyc
│   │   │   │   ├── test_field_text.cpython-37.pyc
│   │   │   │   ├── test_field_time.cpython-37.pyc
│   │   │   │   ├── test_field_timedelta.cpython-37.pyc
│   │   │   │   ├── test_filestore.cpython-37.pyc
│   │   │   │   ├── test_history.cpython-37.pyc
│   │   │   │   ├── test_i18n.cpython-37.pyc
│   │   │   │   ├── test_importdata.cpython-37.pyc
│   │   │   │   ├── test_ir.cpython-37.pyc
│   │   │   │   ├── test_mixins.cpython-37.pyc
│   │   │   │   ├── test_model.cpython-37.pyc
│   │   │   │   ├── test_modelsingleton.cpython-37.pyc
│   │   │   │   ├── test_modelsql.cpython-37.pyc
│   │   │   │   ├── test_modelstorage.cpython-37.pyc
│   │   │   │   ├── test_modelview.cpython-37.pyc
│   │   │   │   ├── test_mptt.cpython-37.pyc
│   │   │   │   ├── test_multivalue.cpython-37.pyc
│   │   │   │   ├── test_order.cpython-37.pyc
│   │   │   │   ├── test_protocols.cpython-37.pyc
│   │   │   │   ├── test_pyson.cpython-37.pyc
│   │   │   │   ├── test_report.cpython-37.pyc
│   │   │   │   ├── test_res.cpython-37.pyc
│   │   │   │   ├── test_resource.cpython-37.pyc
│   │   │   │   ├── test_routes.cpython-37.pyc
│   │   │   │   ├── test_rpc.cpython-37.pyc
│   │   │   │   ├── test_rule.cpython-37.pyc
│   │   │   │   ├── test_sendmail.cpython-37.pyc
│   │   │   │   ├── test_sequence.cpython-37.pyc
│   │   │   │   ├── test_tools.cpython-37.pyc
│   │   │   │   ├── test_transaction.cpython-37.pyc
│   │   │   │   ├── test_tree.cpython-37.pyc
│   │   │   │   ├── test_trigger.cpython-37.pyc
│   │   │   │   ├── test_tryton.cpython-37.pyc
│   │   │   │   ├── test_union.cpython-37.pyc
│   │   │   │   ├── test_user.cpython-37.pyc
│   │   │   │   ├── test_wizard.cpython-37.pyc
│   │   │   │   ├── test_workflow.cpython-37.pyc
│   │   │   │   ├── test_wsgi.cpython-37.pyc
│   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   ├── tree.cpython-37.pyc
│   │   │   │   ├── trigger.cpython-37.pyc
│   │   │   │   ├── wizard.cpython-37.pyc
│   │   │   │   └── workflow.cpython-37.pyc
│   │   │   ├── resource.py
│   │   │   ├── rule.py
│   │   │   ├── run-tests.py
│   │   │   ├── sequence.xml
│   │   │   ├── test_access.py
│   │   │   ├── test_backend.py
│   │   │   ├── test_bus.py
│   │   │   ├── test_cache.py
│   │   │   ├── test_copy.py
│   │   │   ├── test_descriptors.py
│   │   │   ├── test_exportdata.py
│   │   │   ├── test_field_binary.py
│   │   │   ├── test_field_boolean.py
│   │   │   ├── test_field_char.py
│   │   │   ├── test_field_context.py
│   │   │   ├── test_field_date.py
│   │   │   ├── test_field_datetime.py
│   │   │   ├── test_field_depends.py
│   │   │   ├── test_field_dict.py
│   │   │   ├── test_field_float.py
│   │   │   ├── test_field_function.py
│   │   │   ├── test_field_integer.py
│   │   │   ├── test_field_many2many.py
│   │   │   ├── test_field_many2one.py
│   │   │   ├── test_field_multiselection.py
│   │   │   ├── test_field_numeric.py
│   │   │   ├── test_field_one2many.py
│   │   │   ├── test_field_one2one.py
│   │   │   ├── test_field_reference.py
│   │   │   ├── test_field_selection.py
│   │   │   ├── test_field_text.py
│   │   │   ├── test_field_timedelta.py
│   │   │   ├── test_field_time.py
│   │   │   ├── test_filestore.py
│   │   │   ├── test_history.py
│   │   │   ├── test_i18n.py
│   │   │   ├── test_importdata.py
│   │   │   ├── test_ir.py
│   │   │   ├── test_mixins.py
│   │   │   ├── test_model.py
│   │   │   ├── test_modelsingleton.py
│   │   │   ├── test_modelsql.py
│   │   │   ├── test_modelstorage.py
│   │   │   ├── test_modelview.py
│   │   │   ├── test_mptt.py
│   │   │   ├── test_multivalue.py
│   │   │   ├── test_order.py
│   │   │   ├── test_protocols.py
│   │   │   ├── test_pyson.py
│   │   │   ├── test_report.py
│   │   │   ├── test_resource.py
│   │   │   ├── test_res.py
│   │   │   ├── test_routes.py
│   │   │   ├── test_rpc.py
│   │   │   ├── test_rule.py
│   │   │   ├── test_sendmail.py
│   │   │   ├── test_sequence.py
│   │   │   ├── test_tools.py
│   │   │   ├── test_transaction.py
│   │   │   ├── test_tree.py
│   │   │   ├── test_trigger.py
│   │   │   ├── test_tryton.py
│   │   │   ├── test_union.py
│   │   │   ├── test_user.py
│   │   │   ├── test_wizard.py
│   │   │   ├── test_workflow.py
│   │   │   ├── test_wsgi.py
│   │   │   ├── tools.py
│   │   │   ├── tree.py
│   │   │   ├── trigger.py
│   │   │   ├── tryton.cfg
│   │   │   ├── wizard.py
│   │   │   ├── wizard.xml
│   │   │   ├── workflow.py
│   │   │   └── workflow.xml
│   │   ├── tools
│   │   │   ├── decimal_.py
│   │   │   ├── domain_inversion.py
│   │   │   ├── gevent.py
│   │   │   ├── __init__.py
│   │   │   ├── misc.py
│   │   │   ├── multivalue.py
│   │   │   ├── __pycache__
│   │   │   │   ├── decimal_.cpython-37.pyc
│   │   │   │   ├── domain_inversion.cpython-37.pyc
│   │   │   │   ├── gevent.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── misc.cpython-37.pyc
│   │   │   │   ├── multivalue.cpython-37.pyc
│   │   │   │   ├── singleton.cpython-37.pyc
│   │   │   │   └── string_.cpython-37.pyc
│   │   │   ├── singleton.py
│   │   │   └── string_.py
│   │   ├── transaction.py
│   │   ├── tryton.rnc
│   │   ├── tryton.rng
│   │   ├── url.py
│   │   ├── wizard
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── wizard.cpython-37.pyc
│   │   │   └── wizard.py
│   │   ├── worker.py
│   │   └── wsgi.py
│   └── trytond-5.6.7.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
41 directories, 669 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment