├── .codecov.yml ├── .copier-answers.yml ├── .editorconfig ├── .eslintrc.yml ├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── auto-pr.yml │ ├── pre-commit.yml │ ├── publish-pypi.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .prettierrc.yml ├── .pylintrc ├── .pylintrc-mandatory ├── .ruff.toml ├── .travis.yml ├── LICENSE ├── README.md ├── checklog-odoo.cfg ├── deltatech ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── copy_main_screenshop.sh ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ └── ir_rule.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── bg.svg │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── index.html │ │ ├── logo-terrabit-text.svg │ │ ├── logo-terrabit.png │ │ ├── main_screenshot.png │ │ └── main_screenshot.svg ├── tests │ └── __init__.py └── views │ ├── base_view.xml │ └── ir_rule_view.xml ├── deltatech_account ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── views │ ├── account_invoice_view.xml │ └── res_config_settings_views.xml ├── deltatech_actions ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── ir_cron_data.xml ├── models │ ├── __init__.py │ ├── account_move.py │ ├── mail_message.py │ ├── product.py │ ├── res_partner.py │ ├── sale_order.py │ └── stock_picking.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png └── tests │ ├── __init__.py │ ├── test_cron_old_messages.py │ ├── test_cron_pdfs.py │ ├── test_cron_xml.py │ ├── test_force_cancel.py │ ├── test_invoice_cron_pdfs.py │ ├── test_picking_cron_pdfs.py │ └── test_res_partner.py ├── deltatech_alternative ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── product.py │ ├── purchase_order.py │ ├── res_config_settings.py │ ├── sale_order.py │ └── stock_move.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_product.py └── views │ ├── product_alternative_view.xml │ ├── product_product_view.xml │ ├── product_template_view.xml │ ├── purchase_order_view.xml │ ├── res_config_settings_views.xml │ ├── sale_order_view.xml │ ├── stock_move_view.xml │ └── stock_picking_view.xml ├── deltatech_alternative_website ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ ├── mixins.py │ └── product_template.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_controller.py └── views │ └── templates.xml ├── deltatech_analytic_distribution ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_move.py │ ├── res_company.py │ └── res_config.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png └── views │ └── res_config_view.xml ├── deltatech_auto_reorder_rule ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── ir_server_action.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── product.py │ ├── stock_route.py │ └── stock_warehouse.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_product.py ├── views │ ├── stock_route_view.xml │ └── stock_warehouse_view.xml └── wizard │ ├── __init__.py │ ├── order_rules_details.py │ └── order_rules_details_view.xml ├── deltatech_business_process ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ ├── data.xml │ ├── email_templates.xml │ └── ir_sequence_data.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── business_area.py │ ├── business_development.py │ ├── business_development_type.py │ ├── business_issue.py │ ├── business_migration.py │ ├── business_process.py │ ├── business_process_step.py │ ├── business_process_step_test.py │ ├── business_process_test.py │ ├── business_project.py │ ├── business_role.py │ └── business_transaction.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── report │ ├── __init__.py │ ├── business_process_report.py │ ├── business_process_report_view.xml │ ├── business_process_test_report.py │ └── business_process_test_report_view.xml ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ ├── test_bp.py │ ├── test_business_issue.py │ ├── test_business_process.py │ ├── test_business_process_test.py │ ├── test_business_project.py │ └── test_wizard_process_io.py ├── views │ ├── business_area_view.xml │ ├── business_development_type_view.xml │ ├── business_development_view.xml │ ├── business_issue_view.xml │ ├── business_process_step_test_view.xml │ ├── business_process_step_view.xml │ ├── business_process_test_view.xml │ ├── business_process_view.xml │ ├── business_project_view.xml │ ├── business_role_view.xml │ ├── business_transaction_view.xml │ └── menu.xml └── wizard │ ├── __init__.py │ ├── export_business_process.py │ ├── export_business_process_view.xml │ ├── import_business_process.py │ └── import_business_process_view.xml ├── deltatech_business_process_handover_document ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── business_project.py ├── pyproject.toml ├── readme │ └── Description.md ├── report │ ├── paperforat_a4_bp.xml │ ├── verbal_process_report.xml │ └── verbal_process_template.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_handover_document.py └── views │ └── business_project_view.xml ├── deltatech_cash_statement ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_cash.py └── wizard │ ├── __init__.py │ ├── account_cash_update_balances.py │ └── account_cash_update_balances_view.xml ├── deltatech_contact ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ └── res_partner.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ └── src │ │ └── img │ │ └── partner_group.png ├── tests │ ├── __init__.py │ └── test_cnp.py └── views │ └── res_partner_view.xml ├── deltatech_data_sheet ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_data_sheet.py └── views │ └── product_view.xml ├── deltatech_data_sheet_website ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ └── __init__.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── views │ └── templates.xml ├── deltatech_delivery_status ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── migrations │ └── 14.0.2.0.1 │ │ └── pre-migration.py ├── models │ ├── __init__.py │ ├── payment_provider.py │ ├── payment_transaction.py │ ├── sale.py │ ├── sale_team.py │ └── stock_picking.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale.py └── views │ ├── payment_provider_view.xml │ ├── sale_team_view.xml │ ├── sale_view.xml │ └── stock_picking_view.xml ├── deltatech_expenses ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── data.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_journal.py │ ├── account_payment.py │ ├── account_voucher.py │ └── deltatech_expenses_deduction.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_expenses.py └── views │ ├── account_journal_view.xml │ ├── deltatech_expenses_deduction_report.xml │ ├── deltatech_expenses_deduction_view.xml │ └── report_expenses.xml ├── deltatech_fast_purchase ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ ├── account_invoice.py │ ├── purchase.py │ └── stock.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_purchase.py └── views │ ├── purchase_view.xml │ └── stock_view.xml ├── deltatech_invoice_product_filter ├── README.rst ├── __init__.py ├── __manifest__.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── views │ └── account_invoice_view.xml ├── deltatech_invoice_receipt ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ro.po │ └── ro.pox ├── models │ ├── __init__.py │ ├── account_invoice.py │ └── purchase.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png └── tests │ ├── __init__.py │ └── test_receipt.py ├── deltatech_invoice_weight ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_invoice.py │ ├── product_template.py │ ├── purchase_order.py │ └── sale_order.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_weight.py └── views │ ├── account_invoice_view.xml │ ├── invoice_report.xml │ ├── purchase_order_view.xml │ └── sale_order_view.xml ├── deltatech_logistic_docs ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_invoice.py │ ├── ir_actions_report.py │ ├── ir_attachment.py │ ├── purchase_order.py │ ├── sale_order.py │ └── stock_picking.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_logistic_docs.py └── views │ ├── account_invoice_view.xml │ ├── ir_attachment_view.xml │ ├── purchase_order_view.xml │ ├── sale_order_view.xml │ └── stock_picking_view.xml ├── deltatech_mrp_simple ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── ir_config_parameter.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── mrp_simple.py │ ├── sale_order.py │ └── stock_picking.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ ├── groups.xml │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_mrp_simple.py ├── views │ ├── mrp_simple_view.xml │ └── sale_order.xml └── wizard │ ├── __init__.py │ ├── add_multi_lines.py │ └── add_multi_lines.xml ├── deltatech_no_quick_create ├── README.rst ├── __init__.py ├── __manifest__.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ └── src │ │ └── js │ │ └── fields.esm.js └── tests │ └── __init__.py ├── deltatech_partner_generic ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── data.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── res_company.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ └── __init__.py └── views │ └── res_config_settings_views.xml ├── deltatech_price_categ ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_product_price.py └── views │ └── product_view.xml ├── deltatech_product_code ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_product_code.py └── views │ └── product_view.xml ├── deltatech_product_labels ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── test │ ├── img_barcode.png │ ├── img_barcode_1.png │ ├── img_barcode_2.png │ └── img_barcode_3.png ├── tests │ ├── __init__.py │ └── test_product_labels.py ├── views │ ├── report_product_labels.xml │ └── terrabit_product_label_print_view.xml └── wizard │ ├── __init__.py │ └── product_product_label_print.py ├── deltatech_product_list ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── product_list.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_product_list.py └── views │ └── product_list_view.xml ├── deltatech_product_trade_markup ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_trade_markupt.py └── views │ └── product_view.xml ├── deltatech_project_price_list ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── project.py │ └── sale_order.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_project_pricelist.py └── views │ └── project_views.xml ├── deltatech_purchase_mail ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── mail_template.xml ├── models │ ├── __init__.py │ └── purchase_order.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_purchase_mail.py ├── views │ └── purchase_order_actions.xml └── wizard │ ├── __init__.py │ └── purchase_send_xlsx_wizard.py ├── deltatech_purchase_price ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_move.py │ ├── pricelist.py │ ├── product.py │ ├── purchase.py │ ├── res_config_settings.py │ └── stock_account.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_purchase.py ├── views │ ├── product_view.xml │ └── res_config_settings_views.xml └── wizard │ ├── __init__.py │ ├── trade_markup.py │ └── trade_markup_view.xml ├── deltatech_record_type ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── account_move.py │ ├── purchase.py │ ├── purchase_report.py │ ├── record_type.py │ ├── res_config_settings.py │ ├── sale.py │ └── sale_report.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ ├── ir.model.access.csv │ └── record_type_security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_saleorder_type.py └── views │ ├── account_move_view.xml │ ├── purchase_view.xml │ ├── record_type_view.xml │ ├── res_config_settings_views.xml │ └── sale_view.xml ├── deltatech_report_prn ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── main.py ├── models │ ├── __init__.py │ └── ir_report.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ └── src │ │ └── js │ │ └── action_manager.esm.js └── tests │ ├── __init__.py │ └── test_report_prn.py ├── deltatech_sale_commission ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── cron_jobs.xml ├── i18n │ ├── ro.po │ └── ro_old.pox ├── models │ ├── __init__.py │ ├── account_invoice.py │ ├── commission_condition.py │ ├── commission_users.py │ ├── res_config_settings.py │ └── sale.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── report │ ├── __init__.py │ ├── sale_margin_report.py │ └── sale_margin_report.xml ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale.py ├── views │ ├── account_invoice_view.xml │ ├── commission_users_view.xml │ └── res_config_settings_views.xml └── wizard │ ├── __init__.py │ ├── commission_compute.py │ ├── commission_compute_view.xml │ ├── update_purchase_price.py │ └── update_purchase_price_view.xml ├── deltatech_sale_margin ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── migrations │ └── 16.0.1.0.5 │ │ └── pre-migration.py ├── models │ ├── __init__.py │ └── sale.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── sale_security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale.py └── views │ └── sale_margin_view.xml ├── deltatech_sale_purchase_requisition ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── purchase_order.py │ └── sale_order.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale_purchase_requisition.py └── views │ └── sale_order_view.xml ├── deltatech_sale_qty_available ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ └── sale.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale.py └── views │ └── sale_view.xml ├── deltatech_sms ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── neutralize.sql ├── images │ └── main_screenshot.png ├── migrations │ └── 18.0.0.0.0 │ │ └── pre-migration.py ├── models │ ├── __init__.py │ ├── iap.py │ ├── sms_api.py │ └── sms_sms.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ ├── Specificatii_sistem_management_SMSuri_4PAY.v1 (1).pdf │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sms.py ├── views │ └── iap_views.xml └── wizard │ └── __init__.py ├── deltatech_stock_delivery ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── ro.po │ └── ro.pox ├── models │ ├── __init__.py │ └── account_invoice.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_invoice.py └── views │ └── account_invoice_view.xml ├── deltatech_stock_inventory ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── data.xml ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ ├── __init__.py │ ├── product.py │ ├── stock.py │ ├── stock_inventory.py │ ├── stock_move.py │ ├── stock_picking.py │ └── stock_quant.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ ├── ir.model.access.csv │ └── security.xml ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ ├── test_compute_warehouse_stocks.py │ ├── test_onchange_quantity_context.py │ ├── test_product_methods.py │ ├── test_stock_confirm_inventory.py │ ├── test_stock_inventory.py │ └── test_stock_inventory_methods_extra.py ├── views │ ├── product_kanban_view.xml │ ├── product_view.xml │ ├── report_stockinventory.xml │ ├── stock_inventory_views.xml │ └── stock_quant_view.xml └── wizard │ ├── __init__.py │ ├── product_replenish.py │ ├── product_replenish_views.xml │ ├── stock_confirm_inventory.py │ ├── stock_confirm_inventory_view.xml │ ├── stock_inventory_adjustment_name.py │ ├── stock_inventory_merge.py │ ├── stock_inventory_merge.xml │ └── stock_request_count.py ├── deltatech_stock_negative ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── es.po │ └── ro.po ├── models │ ├── __init__.py │ ├── res_config.py │ ├── stock.py │ └── stock_location.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ ├── main_screenshot.png │ │ ├── settings.png │ │ └── settings_location.png ├── tests │ ├── __init__.py │ └── test_negative.py └── views │ ├── res_config_view.xml │ └── stock_location_view.xml ├── deltatech_stock_report ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── images │ └── main_screenshot.png ├── models │ └── __init__.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── report │ ├── __init__.py │ ├── stock_picking_report.py │ └── stock_picking_report.xml ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── tests │ ├── __init__.py │ └── test_stock_picking_report_basic.py ├── deltatech_test_system ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── neutralize.sql ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── ir_module_module.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ ├── test_neutralized.py │ └── test_test_system.py └── views │ ├── ir_module_module_view.xml │ ├── res_config_settings_view.xml │ └── templates.xml ├── deltatech_transport_change ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── transport_config.py │ ├── transport_repo.py │ └── transport_utils.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_export.py └── views │ ├── transport_config_views.xml │ └── transport_repo_views.xml ├── deltatech_vendor_stock ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── product.py │ ├── product_supplierinfo.py │ ├── res_config_settings.py │ └── sale_order.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ └── src │ │ ├── js │ │ ├── qty_at_date_widget_extended.esm.js │ │ └── vendor_stock_colors_service.esm.js │ │ └── xml │ │ └── qty.xml ├── tests │ ├── __init__.py │ └── test_sale.py └── views │ ├── product_supplierinfo_view.xml │ ├── res_config_settings_view.xml │ └── sale_view.xml ├── deltatech_watermark ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── company.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ ├── main_screenshot.png │ │ └── settings.png ├── tests │ └── __init__.py └── views │ └── res_config_settings_view.xml ├── deltatech_website_checkout_confirm ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── website_sale.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── tests │ └── __init__.py ├── deltatech_website_city ├── README.rst ├── __init__.py ├── __manifest__.py ├── controller │ ├── __init__.py │ └── portal.py ├── data │ └── ir_model_fields.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ └── res_country.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ ├── src │ │ └── interactions │ │ │ └── address.esm.js │ └── tests │ │ └── tours │ │ └── address_city_zip.tour.esm.js ├── tests │ ├── __init__.py │ ├── test_portal_city.py │ └── test_tour_city_zip.py └── views │ └── templates.xml ├── deltatech_website_delivery_and_payment ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── delivery.py │ ├── payment_provider.py │ ├── res_partner.py │ └── sale.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ ├── description │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png │ └── src │ │ └── js │ │ └── payment_form.esm.js ├── tests │ ├── __init__.py │ └── test_payment_provider.py └── views │ ├── delivery_view.xml │ ├── payment_view.xml │ ├── res_partner_view.xml │ └── templates.xml ├── deltatech_website_product_url_image ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ ├── product_image.py │ └── product_template.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── views │ └── product_template_view.xml ├── deltatech_website_sale_sort ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ └── __init__.py ├── data │ └── ir_cron_data.xml ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── product.py │ └── website.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png └── tests │ ├── __init__.py │ └── test_update_product_statistics.py ├── deltatech_website_sale_status ├── README.rst ├── __init__.py ├── __manifest__.py ├── controllers │ ├── __init__.py │ └── portal.py ├── i18n │ └── ro.po ├── models │ ├── __init__.py │ ├── sale.py │ └── sale_report.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ ├── __init__.py │ └── test_sale.py └── views │ ├── sale_view.xml │ └── templates.xml ├── deltatech_website_short_description ├── README.rst ├── __init__.py ├── __manifest__.py ├── models │ ├── __init__.py │ └── product.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md ├── static │ └── description │ │ ├── icon.png │ │ ├── index.html │ │ ├── logo-terrabit.png │ │ └── main_screenshot.png ├── tests │ └── __init__.py └── views │ └── product_view.xml ├── deltatech_widget_fontawesome ├── README.rst ├── __init__.py ├── __manifest__.py ├── pyproject.toml ├── readme │ └── DESCRIPTION.md └── static │ ├── description │ ├── icon.png │ ├── index.html │ ├── logo-terrabit.png │ └── main_screenshot.png │ └── src │ └── js │ ├── field_fontawesome.esm.js │ └── field_fontawesome.xml ├── eslint.config.cjs ├── gen_addon_readme.rst.jinja ├── mig_module.sh ├── oca_dependencies.txt ├── prettier.config.cjs ├── requirements.txt ├── scripts └── update_pyproject_name.py └── update_readme.sh /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | test-requirements.txt merge=union 2 | -------------------------------------------------------------------------------- /.github/workflows/auto-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.github/workflows/auto-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.ruff.toml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/README.md -------------------------------------------------------------------------------- /checklog-odoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/checklog-odoo.cfg -------------------------------------------------------------------------------- /deltatech/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/README.rst -------------------------------------------------------------------------------- /deltatech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/__init__.py -------------------------------------------------------------------------------- /deltatech/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/__manifest__.py -------------------------------------------------------------------------------- /deltatech/data/copy_main_screenshop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/data/copy_main_screenshop.sh -------------------------------------------------------------------------------- /deltatech/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/models/__init__.py -------------------------------------------------------------------------------- /deltatech/models/ir_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/models/ir_rule.py -------------------------------------------------------------------------------- /deltatech/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/pyproject.toml -------------------------------------------------------------------------------- /deltatech/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech/static/description/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/bg.svg -------------------------------------------------------------------------------- /deltatech/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/icon.png -------------------------------------------------------------------------------- /deltatech/static/description/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/icon.svg -------------------------------------------------------------------------------- /deltatech/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/index.html -------------------------------------------------------------------------------- /deltatech/static/description/logo-terrabit-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/logo-terrabit-text.svg -------------------------------------------------------------------------------- /deltatech/static/description/logo-terrabit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/logo-terrabit.png -------------------------------------------------------------------------------- /deltatech/static/description/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/main_screenshot.png -------------------------------------------------------------------------------- /deltatech/static/description/main_screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/static/description/main_screenshot.svg -------------------------------------------------------------------------------- /deltatech/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/tests/__init__.py -------------------------------------------------------------------------------- /deltatech/views/base_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/views/base_view.xml -------------------------------------------------------------------------------- /deltatech/views/ir_rule_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech/views/ir_rule_view.xml -------------------------------------------------------------------------------- /deltatech_account/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/README.rst -------------------------------------------------------------------------------- /deltatech_account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/__init__.py -------------------------------------------------------------------------------- /deltatech_account/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/__manifest__.py -------------------------------------------------------------------------------- /deltatech_account/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_account/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/models/__init__.py -------------------------------------------------------------------------------- /deltatech_account/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_account/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/pyproject.toml -------------------------------------------------------------------------------- /deltatech_account/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Features: 2 | -------------------------------------------------------------------------------- /deltatech_account/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_account/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/static/description/index.html -------------------------------------------------------------------------------- /deltatech_account/static/description/logo-terrabit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/static/description/logo-terrabit.png -------------------------------------------------------------------------------- /deltatech_account/views/account_invoice_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/views/account_invoice_view.xml -------------------------------------------------------------------------------- /deltatech_account/views/res_config_settings_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_account/views/res_config_settings_views.xml -------------------------------------------------------------------------------- /deltatech_actions/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/README.rst -------------------------------------------------------------------------------- /deltatech_actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/__init__.py -------------------------------------------------------------------------------- /deltatech_actions/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/__manifest__.py -------------------------------------------------------------------------------- /deltatech_actions/data/ir_cron_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/data/ir_cron_data.xml -------------------------------------------------------------------------------- /deltatech_actions/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/__init__.py -------------------------------------------------------------------------------- /deltatech_actions/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/account_move.py -------------------------------------------------------------------------------- /deltatech_actions/models/mail_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/mail_message.py -------------------------------------------------------------------------------- /deltatech_actions/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/product.py -------------------------------------------------------------------------------- /deltatech_actions/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/res_partner.py -------------------------------------------------------------------------------- /deltatech_actions/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_actions/models/stock_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/models/stock_picking.py -------------------------------------------------------------------------------- /deltatech_actions/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/pyproject.toml -------------------------------------------------------------------------------- /deltatech_actions/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_actions/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_actions/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/static/description/index.html -------------------------------------------------------------------------------- /deltatech_actions/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_cron_old_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_cron_old_messages.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_cron_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_cron_pdfs.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_cron_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_cron_xml.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_force_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_force_cancel.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_invoice_cron_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_invoice_cron_pdfs.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_picking_cron_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_picking_cron_pdfs.py -------------------------------------------------------------------------------- /deltatech_actions/tests/test_res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_actions/tests/test_res_partner.py -------------------------------------------------------------------------------- /deltatech_alternative/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/README.rst -------------------------------------------------------------------------------- /deltatech_alternative/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/__manifest__.py -------------------------------------------------------------------------------- /deltatech_alternative/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_alternative/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/product.py -------------------------------------------------------------------------------- /deltatech_alternative/models/purchase_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/purchase_order.py -------------------------------------------------------------------------------- /deltatech_alternative/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_alternative/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_alternative/models/stock_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/models/stock_move.py -------------------------------------------------------------------------------- /deltatech_alternative/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/pyproject.toml -------------------------------------------------------------------------------- /deltatech_alternative/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_alternative/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_alternative/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_alternative/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/static/description/index.html -------------------------------------------------------------------------------- /deltatech_alternative/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/tests/test_product.py -------------------------------------------------------------------------------- /deltatech_alternative/views/product_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/product_product_view.xml -------------------------------------------------------------------------------- /deltatech_alternative/views/product_template_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/product_template_view.xml -------------------------------------------------------------------------------- /deltatech_alternative/views/purchase_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/purchase_order_view.xml -------------------------------------------------------------------------------- /deltatech_alternative/views/sale_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/sale_order_view.xml -------------------------------------------------------------------------------- /deltatech_alternative/views/stock_move_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/stock_move_view.xml -------------------------------------------------------------------------------- /deltatech_alternative/views/stock_picking_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative/views/stock_picking_view.xml -------------------------------------------------------------------------------- /deltatech_alternative_website/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/README.rst -------------------------------------------------------------------------------- /deltatech_alternative_website/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative_website/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/__manifest__.py -------------------------------------------------------------------------------- /deltatech_alternative_website/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_alternative_website/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/models/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative_website/models/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/models/mixins.py -------------------------------------------------------------------------------- /deltatech_alternative_website/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/pyproject.toml -------------------------------------------------------------------------------- /deltatech_alternative_website/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_alternative_website/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_alternative_website/tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/tests/test_controller.py -------------------------------------------------------------------------------- /deltatech_alternative_website/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_alternative_website/views/templates.xml -------------------------------------------------------------------------------- /deltatech_analytic_distribution/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/README.rst -------------------------------------------------------------------------------- /deltatech_analytic_distribution/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /deltatech_analytic_distribution/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/__manifest__.py -------------------------------------------------------------------------------- /deltatech_analytic_distribution/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_analytic_distribution/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/models/__init__.py -------------------------------------------------------------------------------- /deltatech_analytic_distribution/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/models/account_move.py -------------------------------------------------------------------------------- /deltatech_analytic_distribution/models/res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/models/res_company.py -------------------------------------------------------------------------------- /deltatech_analytic_distribution/models/res_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/models/res_config.py -------------------------------------------------------------------------------- /deltatech_analytic_distribution/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/pyproject.toml -------------------------------------------------------------------------------- /deltatech_analytic_distribution/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_analytic_distribution/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/README.rst -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/__init__.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/__manifest__.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/data/ir_server_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/data/ir_server_action.xml -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/models/__init__.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/models/product.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/models/stock_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/models/stock_route.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/models/stock_warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/models/stock_warehouse.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/pyproject.toml -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/tests/test_product.py -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/views/stock_route_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_auto_reorder_rule/views/stock_route_view.xml -------------------------------------------------------------------------------- /deltatech_auto_reorder_rule/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import order_rules_details 2 | -------------------------------------------------------------------------------- /deltatech_business_process/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/README.rst -------------------------------------------------------------------------------- /deltatech_business_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/__init__.py -------------------------------------------------------------------------------- /deltatech_business_process/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/__manifest__.py -------------------------------------------------------------------------------- /deltatech_business_process/data/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/data/data.xml -------------------------------------------------------------------------------- /deltatech_business_process/data/email_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/data/email_templates.xml -------------------------------------------------------------------------------- /deltatech_business_process/data/ir_sequence_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/data/ir_sequence_data.xml -------------------------------------------------------------------------------- /deltatech_business_process/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_business_process/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/__init__.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_area.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_issue.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_migration.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_process.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_project.py -------------------------------------------------------------------------------- /deltatech_business_process/models/business_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/models/business_role.py -------------------------------------------------------------------------------- /deltatech_business_process/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/pyproject.toml -------------------------------------------------------------------------------- /deltatech_business_process/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_business_process/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/report/__init__.py -------------------------------------------------------------------------------- /deltatech_business_process/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_business_process/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/security/security.xml -------------------------------------------------------------------------------- /deltatech_business_process/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_business_process/static/description/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/static/description/icon.svg -------------------------------------------------------------------------------- /deltatech_business_process/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_business_process/tests/test_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/tests/test_bp.py -------------------------------------------------------------------------------- /deltatech_business_process/tests/test_business_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/tests/test_business_issue.py -------------------------------------------------------------------------------- /deltatech_business_process/views/business_area_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/views/business_area_view.xml -------------------------------------------------------------------------------- /deltatech_business_process/views/business_role_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/views/business_role_view.xml -------------------------------------------------------------------------------- /deltatech_business_process/views/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/views/menu.xml -------------------------------------------------------------------------------- /deltatech_business_process/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_business_process_handover_document/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process_handover_document/README.rst -------------------------------------------------------------------------------- /deltatech_business_process_handover_document/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /deltatech_business_process_handover_document/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_business_process_handover_document/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_business_process_handover_document/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import business_project 2 | -------------------------------------------------------------------------------- /deltatech_cash_statement/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/README.rst -------------------------------------------------------------------------------- /deltatech_cash_statement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/__init__.py -------------------------------------------------------------------------------- /deltatech_cash_statement/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/__manifest__.py -------------------------------------------------------------------------------- /deltatech_cash_statement/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_cash_statement/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/pyproject.toml -------------------------------------------------------------------------------- /deltatech_cash_statement/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | - Features: 2 | 3 | - auto update balance for cash journal 4 | -------------------------------------------------------------------------------- /deltatech_cash_statement/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_cash_statement/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_cash_statement/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/static/description/index.html -------------------------------------------------------------------------------- /deltatech_cash_statement/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_cash_statement/tests/test_cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/tests/test_cash.py -------------------------------------------------------------------------------- /deltatech_cash_statement/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_cash_statement/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_contact/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/README.rst -------------------------------------------------------------------------------- /deltatech_contact/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/__init__.py -------------------------------------------------------------------------------- /deltatech_contact/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/__manifest__.py -------------------------------------------------------------------------------- /deltatech_contact/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_contact/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_contact/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/models/__init__.py -------------------------------------------------------------------------------- /deltatech_contact/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/models/res_partner.py -------------------------------------------------------------------------------- /deltatech_contact/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/pyproject.toml -------------------------------------------------------------------------------- /deltatech_contact/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_contact/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_contact/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/static/description/index.html -------------------------------------------------------------------------------- /deltatech_contact/static/description/logo-terrabit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/static/description/logo-terrabit.png -------------------------------------------------------------------------------- /deltatech_contact/static/src/img/partner_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/static/src/img/partner_group.png -------------------------------------------------------------------------------- /deltatech_contact/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_contact/tests/test_cnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/tests/test_cnp.py -------------------------------------------------------------------------------- /deltatech_contact/views/res_partner_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_contact/views/res_partner_view.xml -------------------------------------------------------------------------------- /deltatech_data_sheet/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/README.rst -------------------------------------------------------------------------------- /deltatech_data_sheet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/__init__.py -------------------------------------------------------------------------------- /deltatech_data_sheet/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/__manifest__.py -------------------------------------------------------------------------------- /deltatech_data_sheet/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_data_sheet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/models/__init__.py -------------------------------------------------------------------------------- /deltatech_data_sheet/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/models/product.py -------------------------------------------------------------------------------- /deltatech_data_sheet/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/pyproject.toml -------------------------------------------------------------------------------- /deltatech_data_sheet/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_data_sheet/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_data_sheet/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/static/description/index.html -------------------------------------------------------------------------------- /deltatech_data_sheet/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_data_sheet 2 | -------------------------------------------------------------------------------- /deltatech_data_sheet/tests/test_data_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/tests/test_data_sheet.py -------------------------------------------------------------------------------- /deltatech_data_sheet/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_data_sheet_website/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/README.rst -------------------------------------------------------------------------------- /deltatech_data_sheet_website/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/__init__.py -------------------------------------------------------------------------------- /deltatech_data_sheet_website/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/__manifest__.py -------------------------------------------------------------------------------- /deltatech_data_sheet_website/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_data_sheet_website/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/models/__init__.py -------------------------------------------------------------------------------- /deltatech_data_sheet_website/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/pyproject.toml -------------------------------------------------------------------------------- /deltatech_data_sheet_website/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_data_sheet_website/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_data_sheet_website/views/templates.xml -------------------------------------------------------------------------------- /deltatech_delivery_status/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/README.rst -------------------------------------------------------------------------------- /deltatech_delivery_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/__init__.py -------------------------------------------------------------------------------- /deltatech_delivery_status/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/__manifest__.py -------------------------------------------------------------------------------- /deltatech_delivery_status/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_delivery_status/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/__init__.py -------------------------------------------------------------------------------- /deltatech_delivery_status/models/payment_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/payment_provider.py -------------------------------------------------------------------------------- /deltatech_delivery_status/models/payment_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/payment_transaction.py -------------------------------------------------------------------------------- /deltatech_delivery_status/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/sale.py -------------------------------------------------------------------------------- /deltatech_delivery_status/models/sale_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/sale_team.py -------------------------------------------------------------------------------- /deltatech_delivery_status/models/stock_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/models/stock_picking.py -------------------------------------------------------------------------------- /deltatech_delivery_status/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/pyproject.toml -------------------------------------------------------------------------------- /deltatech_delivery_status/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_delivery_status/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_delivery_status/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/static/description/index.html -------------------------------------------------------------------------------- /deltatech_delivery_status/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_delivery_status/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_delivery_status/views/sale_team_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/views/sale_team_view.xml -------------------------------------------------------------------------------- /deltatech_delivery_status/views/sale_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/views/sale_view.xml -------------------------------------------------------------------------------- /deltatech_delivery_status/views/stock_picking_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_delivery_status/views/stock_picking_view.xml -------------------------------------------------------------------------------- /deltatech_expenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/README.rst -------------------------------------------------------------------------------- /deltatech_expenses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/__init__.py -------------------------------------------------------------------------------- /deltatech_expenses/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/__manifest__.py -------------------------------------------------------------------------------- /deltatech_expenses/data/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/data/data.xml -------------------------------------------------------------------------------- /deltatech_expenses/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_expenses/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/models/__init__.py -------------------------------------------------------------------------------- /deltatech_expenses/models/account_journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/models/account_journal.py -------------------------------------------------------------------------------- /deltatech_expenses/models/account_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/models/account_payment.py -------------------------------------------------------------------------------- /deltatech_expenses/models/account_voucher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/models/account_voucher.py -------------------------------------------------------------------------------- /deltatech_expenses/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/pyproject.toml -------------------------------------------------------------------------------- /deltatech_expenses/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_expenses/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_expenses/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/security/security.xml -------------------------------------------------------------------------------- /deltatech_expenses/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_expenses/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/static/description/index.html -------------------------------------------------------------------------------- /deltatech_expenses/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_expenses/tests/test_expenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/tests/test_expenses.py -------------------------------------------------------------------------------- /deltatech_expenses/views/account_journal_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/views/account_journal_view.xml -------------------------------------------------------------------------------- /deltatech_expenses/views/report_expenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_expenses/views/report_expenses.xml -------------------------------------------------------------------------------- /deltatech_fast_purchase/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/README.rst -------------------------------------------------------------------------------- /deltatech_fast_purchase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/__init__.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/__manifest__.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_fast_purchase/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_fast_purchase/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/models/__init__.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/models/purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/models/purchase.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/models/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/models/stock.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/pyproject.toml -------------------------------------------------------------------------------- /deltatech_fast_purchase/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_fast_purchase/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_fast_purchase/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/static/description/index.html -------------------------------------------------------------------------------- /deltatech_fast_purchase/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/tests/test_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/tests/test_purchase.py -------------------------------------------------------------------------------- /deltatech_fast_purchase/views/purchase_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/views/purchase_view.xml -------------------------------------------------------------------------------- /deltatech_fast_purchase/views/stock_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_fast_purchase/views/stock_view.xml -------------------------------------------------------------------------------- /deltatech_invoice_product_filter/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_product_filter/README.rst -------------------------------------------------------------------------------- /deltatech_invoice_product_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_product_filter/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_product_filter/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_product_filter/__manifest__.py -------------------------------------------------------------------------------- /deltatech_invoice_product_filter/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_product_filter/pyproject.toml -------------------------------------------------------------------------------- /deltatech_invoice_product_filter/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_product_filter/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_invoice_receipt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/README.rst -------------------------------------------------------------------------------- /deltatech_invoice_receipt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/__manifest__.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_invoice_receipt/i18n/ro.pox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/i18n/ro.pox -------------------------------------------------------------------------------- /deltatech_invoice_receipt/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/models/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/models/purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/models/purchase.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/pyproject.toml -------------------------------------------------------------------------------- /deltatech_invoice_receipt/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_invoice_receipt/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_invoice_receipt/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/static/description/index.html -------------------------------------------------------------------------------- /deltatech_invoice_receipt/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_receipt/tests/test_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_receipt/tests/test_receipt.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/README.rst -------------------------------------------------------------------------------- /deltatech_invoice_weight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/__manifest__.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_invoice_weight/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/models/__init__.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/models/product_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/models/product_template.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/models/purchase_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/models/purchase_order.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/pyproject.toml -------------------------------------------------------------------------------- /deltatech_invoice_weight/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_invoice_weight/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_invoice_weight/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/static/description/index.html -------------------------------------------------------------------------------- /deltatech_invoice_weight/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_weight 2 | -------------------------------------------------------------------------------- /deltatech_invoice_weight/tests/test_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/tests/test_weight.py -------------------------------------------------------------------------------- /deltatech_invoice_weight/views/account_invoice_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/views/account_invoice_view.xml -------------------------------------------------------------------------------- /deltatech_invoice_weight/views/invoice_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/views/invoice_report.xml -------------------------------------------------------------------------------- /deltatech_invoice_weight/views/purchase_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/views/purchase_order_view.xml -------------------------------------------------------------------------------- /deltatech_invoice_weight/views/sale_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_invoice_weight/views/sale_order_view.xml -------------------------------------------------------------------------------- /deltatech_logistic_docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/README.rst -------------------------------------------------------------------------------- /deltatech_logistic_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/__init__.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/__manifest__.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/__init__.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/ir_actions_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/ir_actions_report.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/ir_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/ir_attachment.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/purchase_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/purchase_order.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/models/stock_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/models/stock_picking.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/pyproject.toml -------------------------------------------------------------------------------- /deltatech_logistic_docs/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_logistic_docs/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_logistic_docs/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/static/description/index.html -------------------------------------------------------------------------------- /deltatech_logistic_docs/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/tests/test_logistic_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/tests/test_logistic_docs.py -------------------------------------------------------------------------------- /deltatech_logistic_docs/views/account_invoice_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/views/account_invoice_view.xml -------------------------------------------------------------------------------- /deltatech_logistic_docs/views/ir_attachment_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/views/ir_attachment_view.xml -------------------------------------------------------------------------------- /deltatech_logistic_docs/views/purchase_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/views/purchase_order_view.xml -------------------------------------------------------------------------------- /deltatech_logistic_docs/views/sale_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/views/sale_order_view.xml -------------------------------------------------------------------------------- /deltatech_logistic_docs/views/stock_picking_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_logistic_docs/views/stock_picking_view.xml -------------------------------------------------------------------------------- /deltatech_mrp_simple/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/README.rst -------------------------------------------------------------------------------- /deltatech_mrp_simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/__init__.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/__manifest__.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/data/ir_config_parameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/data/ir_config_parameter.xml -------------------------------------------------------------------------------- /deltatech_mrp_simple/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_mrp_simple/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/models/__init__.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/models/mrp_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/models/mrp_simple.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/models/stock_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/models/stock_picking.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/pyproject.toml -------------------------------------------------------------------------------- /deltatech_mrp_simple/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_mrp_simple/security/groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/security/groups.xml -------------------------------------------------------------------------------- /deltatech_mrp_simple/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_mrp_simple/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_mrp_simple/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/static/description/index.html -------------------------------------------------------------------------------- /deltatech_mrp_simple/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/tests/test_mrp_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/tests/test_mrp_simple.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/views/mrp_simple_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/views/mrp_simple_view.xml -------------------------------------------------------------------------------- /deltatech_mrp_simple/views/sale_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/views/sale_order.xml -------------------------------------------------------------------------------- /deltatech_mrp_simple/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/wizard/add_multi_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/wizard/add_multi_lines.py -------------------------------------------------------------------------------- /deltatech_mrp_simple/wizard/add_multi_lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_mrp_simple/wizard/add_multi_lines.xml -------------------------------------------------------------------------------- /deltatech_no_quick_create/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/README.rst -------------------------------------------------------------------------------- /deltatech_no_quick_create/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/__init__.py -------------------------------------------------------------------------------- /deltatech_no_quick_create/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/__manifest__.py -------------------------------------------------------------------------------- /deltatech_no_quick_create/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/pyproject.toml -------------------------------------------------------------------------------- /deltatech_no_quick_create/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_no_quick_create/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_no_quick_create/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/static/description/index.html -------------------------------------------------------------------------------- /deltatech_no_quick_create/static/src/js/fields.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/static/src/js/fields.esm.js -------------------------------------------------------------------------------- /deltatech_no_quick_create/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_no_quick_create/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_partner_generic/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/README.rst -------------------------------------------------------------------------------- /deltatech_partner_generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/__init__.py -------------------------------------------------------------------------------- /deltatech_partner_generic/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/__manifest__.py -------------------------------------------------------------------------------- /deltatech_partner_generic/data/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/data/data.xml -------------------------------------------------------------------------------- /deltatech_partner_generic/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_partner_generic/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/models/__init__.py -------------------------------------------------------------------------------- /deltatech_partner_generic/models/res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/models/res_company.py -------------------------------------------------------------------------------- /deltatech_partner_generic/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_partner_generic/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/pyproject.toml -------------------------------------------------------------------------------- /deltatech_partner_generic/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Features: 2 | 3 | - defining generic partner 4 | -------------------------------------------------------------------------------- /deltatech_partner_generic/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_partner_generic/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/static/description/index.html -------------------------------------------------------------------------------- /deltatech_partner_generic/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_partner_generic/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_price_categ/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/README.rst -------------------------------------------------------------------------------- /deltatech_price_categ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/__init__.py -------------------------------------------------------------------------------- /deltatech_price_categ/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/__manifest__.py -------------------------------------------------------------------------------- /deltatech_price_categ/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_price_categ/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_price_categ/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/models/__init__.py -------------------------------------------------------------------------------- /deltatech_price_categ/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/models/product.py -------------------------------------------------------------------------------- /deltatech_price_categ/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/pyproject.toml -------------------------------------------------------------------------------- /deltatech_price_categ/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_price_categ/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_price_categ/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/static/description/index.html -------------------------------------------------------------------------------- /deltatech_price_categ/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_price_categ/tests/test_product_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/tests/test_product_price.py -------------------------------------------------------------------------------- /deltatech_price_categ/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_price_categ/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_product_code/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/README.rst -------------------------------------------------------------------------------- /deltatech_product_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/__init__.py -------------------------------------------------------------------------------- /deltatech_product_code/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/__manifest__.py -------------------------------------------------------------------------------- /deltatech_product_code/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_product_code/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/models/__init__.py -------------------------------------------------------------------------------- /deltatech_product_code/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/models/product.py -------------------------------------------------------------------------------- /deltatech_product_code/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/pyproject.toml -------------------------------------------------------------------------------- /deltatech_product_code/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_product_code/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_product_code/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/static/description/index.html -------------------------------------------------------------------------------- /deltatech_product_code/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_product_code/tests/test_product_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/tests/test_product_code.py -------------------------------------------------------------------------------- /deltatech_product_code/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_code/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_product_labels/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/README.rst -------------------------------------------------------------------------------- /deltatech_product_labels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/__init__.py -------------------------------------------------------------------------------- /deltatech_product_labels/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/__manifest__.py -------------------------------------------------------------------------------- /deltatech_product_labels/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_product_labels/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/models/__init__.py -------------------------------------------------------------------------------- /deltatech_product_labels/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/models/product.py -------------------------------------------------------------------------------- /deltatech_product_labels/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/pyproject.toml -------------------------------------------------------------------------------- /deltatech_product_labels/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_product_labels/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_product_labels/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_product_labels/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/static/description/index.html -------------------------------------------------------------------------------- /deltatech_product_labels/test/img_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/test/img_barcode.png -------------------------------------------------------------------------------- /deltatech_product_labels/test/img_barcode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/test/img_barcode_1.png -------------------------------------------------------------------------------- /deltatech_product_labels/test/img_barcode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/test/img_barcode_2.png -------------------------------------------------------------------------------- /deltatech_product_labels/test/img_barcode_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/test/img_barcode_3.png -------------------------------------------------------------------------------- /deltatech_product_labels/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_product_labels 2 | -------------------------------------------------------------------------------- /deltatech_product_labels/tests/test_product_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/tests/test_product_labels.py -------------------------------------------------------------------------------- /deltatech_product_labels/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_labels/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_product_list/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/README.rst -------------------------------------------------------------------------------- /deltatech_product_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/__init__.py -------------------------------------------------------------------------------- /deltatech_product_list/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/__manifest__.py -------------------------------------------------------------------------------- /deltatech_product_list/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_product_list/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/models/__init__.py -------------------------------------------------------------------------------- /deltatech_product_list/models/product_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/models/product_list.py -------------------------------------------------------------------------------- /deltatech_product_list/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/pyproject.toml -------------------------------------------------------------------------------- /deltatech_product_list/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | - Features: 2 | 3 | - defining product lists 4 | -------------------------------------------------------------------------------- /deltatech_product_list/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_product_list/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/security/security.xml -------------------------------------------------------------------------------- /deltatech_product_list/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_product_list/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/static/description/index.html -------------------------------------------------------------------------------- /deltatech_product_list/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_product_list/tests/test_product_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/tests/test_product_list.py -------------------------------------------------------------------------------- /deltatech_product_list/views/product_list_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_list/views/product_list_view.xml -------------------------------------------------------------------------------- /deltatech_product_trade_markup/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/README.rst -------------------------------------------------------------------------------- /deltatech_product_trade_markup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/__init__.py -------------------------------------------------------------------------------- /deltatech_product_trade_markup/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/__manifest__.py -------------------------------------------------------------------------------- /deltatech_product_trade_markup/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_product_trade_markup/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/models/__init__.py -------------------------------------------------------------------------------- /deltatech_product_trade_markup/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/models/product.py -------------------------------------------------------------------------------- /deltatech_product_trade_markup/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/pyproject.toml -------------------------------------------------------------------------------- /deltatech_product_trade_markup/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_product_trade_markup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_trade_markupt 2 | -------------------------------------------------------------------------------- /deltatech_product_trade_markup/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_product_trade_markup/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_project_price_list/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/README.rst -------------------------------------------------------------------------------- /deltatech_project_price_list/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /deltatech_project_price_list/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/__manifest__.py -------------------------------------------------------------------------------- /deltatech_project_price_list/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/models/__init__.py -------------------------------------------------------------------------------- /deltatech_project_price_list/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/models/project.py -------------------------------------------------------------------------------- /deltatech_project_price_list/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_project_price_list/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/pyproject.toml -------------------------------------------------------------------------------- /deltatech_project_price_list/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_project_price_list/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_project_price_list/views/project_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_project_price_list/views/project_views.xml -------------------------------------------------------------------------------- /deltatech_purchase_mail/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/README.rst -------------------------------------------------------------------------------- /deltatech_purchase_mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/__manifest__.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/data/mail_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/data/mail_template.xml -------------------------------------------------------------------------------- /deltatech_purchase_mail/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/models/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/models/purchase_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/models/purchase_order.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/pyproject.toml -------------------------------------------------------------------------------- /deltatech_purchase_mail/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deltatech_purchase_mail/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_purchase_mail/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_purchase_mail/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/static/description/index.html -------------------------------------------------------------------------------- /deltatech_purchase_mail/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/tests/test_purchase_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_mail/tests/test_purchase_mail.py -------------------------------------------------------------------------------- /deltatech_purchase_mail/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import purchase_send_xlsx_wizard 2 | -------------------------------------------------------------------------------- /deltatech_purchase_price/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/README.rst -------------------------------------------------------------------------------- /deltatech_purchase_price/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_price/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/__manifest__.py -------------------------------------------------------------------------------- /deltatech_purchase_price/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_purchase_price/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/account_move.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/pricelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/pricelist.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/product.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/purchase.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_purchase_price/models/stock_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/models/stock_account.py -------------------------------------------------------------------------------- /deltatech_purchase_price/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/pyproject.toml -------------------------------------------------------------------------------- /deltatech_purchase_price/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_purchase_price/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_purchase_price/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_purchase_price/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/static/description/index.html -------------------------------------------------------------------------------- /deltatech_purchase_price/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_price/tests/test_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/tests/test_purchase.py -------------------------------------------------------------------------------- /deltatech_purchase_price/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_purchase_price/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_purchase_price/wizard/trade_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/wizard/trade_markup.py -------------------------------------------------------------------------------- /deltatech_purchase_price/wizard/trade_markup_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_purchase_price/wizard/trade_markup_view.xml -------------------------------------------------------------------------------- /deltatech_record_type/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/README.rst -------------------------------------------------------------------------------- /deltatech_record_type/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/__init__.py -------------------------------------------------------------------------------- /deltatech_record_type/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/__manifest__.py -------------------------------------------------------------------------------- /deltatech_record_type/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_record_type/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/__init__.py -------------------------------------------------------------------------------- /deltatech_record_type/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/account_move.py -------------------------------------------------------------------------------- /deltatech_record_type/models/purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/purchase.py -------------------------------------------------------------------------------- /deltatech_record_type/models/purchase_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/purchase_report.py -------------------------------------------------------------------------------- /deltatech_record_type/models/record_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/record_type.py -------------------------------------------------------------------------------- /deltatech_record_type/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_record_type/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/sale.py -------------------------------------------------------------------------------- /deltatech_record_type/models/sale_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/models/sale_report.py -------------------------------------------------------------------------------- /deltatech_record_type/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/pyproject.toml -------------------------------------------------------------------------------- /deltatech_record_type/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_record_type/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_record_type/security/record_type_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/security/record_type_security.xml -------------------------------------------------------------------------------- /deltatech_record_type/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_record_type/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/static/description/index.html -------------------------------------------------------------------------------- /deltatech_record_type/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_record_type/tests/test_saleorder_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/tests/test_saleorder_type.py -------------------------------------------------------------------------------- /deltatech_record_type/views/account_move_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/views/account_move_view.xml -------------------------------------------------------------------------------- /deltatech_record_type/views/purchase_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/views/purchase_view.xml -------------------------------------------------------------------------------- /deltatech_record_type/views/record_type_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/views/record_type_view.xml -------------------------------------------------------------------------------- /deltatech_record_type/views/sale_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_record_type/views/sale_view.xml -------------------------------------------------------------------------------- /deltatech_report_prn/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/README.rst -------------------------------------------------------------------------------- /deltatech_report_prn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/__init__.py -------------------------------------------------------------------------------- /deltatech_report_prn/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/__manifest__.py -------------------------------------------------------------------------------- /deltatech_report_prn/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/controllers/__init__.py -------------------------------------------------------------------------------- /deltatech_report_prn/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/controllers/main.py -------------------------------------------------------------------------------- /deltatech_report_prn/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/models/__init__.py -------------------------------------------------------------------------------- /deltatech_report_prn/models/ir_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/models/ir_report.py -------------------------------------------------------------------------------- /deltatech_report_prn/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/pyproject.toml -------------------------------------------------------------------------------- /deltatech_report_prn/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_report_prn/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_report_prn/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/static/description/index.html -------------------------------------------------------------------------------- /deltatech_report_prn/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_report_prn/tests/test_report_prn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_report_prn/tests/test_report_prn.py -------------------------------------------------------------------------------- /deltatech_sale_commission/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/README.rst -------------------------------------------------------------------------------- /deltatech_sale_commission/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_commission/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/__manifest__.py -------------------------------------------------------------------------------- /deltatech_sale_commission/data/cron_jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/data/cron_jobs.xml -------------------------------------------------------------------------------- /deltatech_sale_commission/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_sale_commission/i18n/ro_old.pox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/i18n/ro_old.pox -------------------------------------------------------------------------------- /deltatech_sale_commission/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/models/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_commission/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_sale_commission/models/commission_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/models/commission_users.py -------------------------------------------------------------------------------- /deltatech_sale_commission/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_sale_commission/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/models/sale.py -------------------------------------------------------------------------------- /deltatech_sale_commission/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/pyproject.toml -------------------------------------------------------------------------------- /deltatech_sale_commission/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_sale_commission/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/report/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_commission/report/sale_margin_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/report/sale_margin_report.py -------------------------------------------------------------------------------- /deltatech_sale_commission/report/sale_margin_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/report/sale_margin_report.xml -------------------------------------------------------------------------------- /deltatech_sale_commission/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_sale_commission/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/security/security.xml -------------------------------------------------------------------------------- /deltatech_sale_commission/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_sale_commission/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/static/description/index.html -------------------------------------------------------------------------------- /deltatech_sale_commission/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_commission/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_sale_commission/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_commission/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_margin/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/README.rst -------------------------------------------------------------------------------- /deltatech_sale_margin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_margin/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/__manifest__.py -------------------------------------------------------------------------------- /deltatech_sale_margin/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_sale_margin/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/models/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_margin/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/models/sale.py -------------------------------------------------------------------------------- /deltatech_sale_margin/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/pyproject.toml -------------------------------------------------------------------------------- /deltatech_sale_margin/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_sale_margin/security/sale_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/security/sale_security.xml -------------------------------------------------------------------------------- /deltatech_sale_margin/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_sale_margin/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/static/description/index.html -------------------------------------------------------------------------------- /deltatech_sale_margin/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_margin/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_sale_margin/views/sale_margin_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_margin/views/sale_margin_view.xml -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/README.rst -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/__manifest__.py -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/pyproject.toml -------------------------------------------------------------------------------- /deltatech_sale_purchase_requisition/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_purchase_requisition/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/README.rst -------------------------------------------------------------------------------- /deltatech_sale_qty_available/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/__manifest__.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_sale_qty_available/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/models/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/models/sale.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/pyproject.toml -------------------------------------------------------------------------------- /deltatech_sale_qty_available/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_sale_qty_available/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_sale_qty_available/views/sale_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sale_qty_available/views/sale_view.xml -------------------------------------------------------------------------------- /deltatech_sms/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/README.rst -------------------------------------------------------------------------------- /deltatech_sms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/__init__.py -------------------------------------------------------------------------------- /deltatech_sms/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/__manifest__.py -------------------------------------------------------------------------------- /deltatech_sms/data/neutralize.sql: -------------------------------------------------------------------------------- 1 | UPDATE iap_account 2 | SET sms_secret = false ; 3 | -------------------------------------------------------------------------------- /deltatech_sms/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_sms/migrations/18.0.0.0.0/pre-migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/migrations/18.0.0.0.0/pre-migration.py -------------------------------------------------------------------------------- /deltatech_sms/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/models/__init__.py -------------------------------------------------------------------------------- /deltatech_sms/models/iap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/models/iap.py -------------------------------------------------------------------------------- /deltatech_sms/models/sms_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/models/sms_api.py -------------------------------------------------------------------------------- /deltatech_sms/models/sms_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/models/sms_sms.py -------------------------------------------------------------------------------- /deltatech_sms/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/pyproject.toml -------------------------------------------------------------------------------- /deltatech_sms/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /deltatech_sms/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_sms/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_sms/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/static/description/index.html -------------------------------------------------------------------------------- /deltatech_sms/static/description/logo-terrabit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/static/description/logo-terrabit.png -------------------------------------------------------------------------------- /deltatech_sms/static/description/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/static/description/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_sms/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_sms/tests/test_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/tests/test_sms.py -------------------------------------------------------------------------------- /deltatech_sms/views/iap_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/views/iap_views.xml -------------------------------------------------------------------------------- /deltatech_sms/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_sms/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/README.rst -------------------------------------------------------------------------------- /deltatech_stock_delivery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/__manifest__.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_stock_delivery/i18n/ro.pox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/i18n/ro.pox -------------------------------------------------------------------------------- /deltatech_stock_delivery/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/models/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/models/account_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/models/account_invoice.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/pyproject.toml -------------------------------------------------------------------------------- /deltatech_stock_delivery/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_stock_delivery/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_stock_delivery/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_delivery/tests/test_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_delivery/tests/test_invoice.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/README.rst -------------------------------------------------------------------------------- /deltatech_stock_inventory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/__manifest__.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/data/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/data/data.xml -------------------------------------------------------------------------------- /deltatech_stock_inventory/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_stock_inventory/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/product.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/stock.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/stock_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/stock_inventory.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/stock_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/stock_move.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/stock_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/stock_picking.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/models/stock_quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/models/stock_quant.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/pyproject.toml -------------------------------------------------------------------------------- /deltatech_stock_inventory/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_stock_inventory/security/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/security/security.xml -------------------------------------------------------------------------------- /deltatech_stock_inventory/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_stock_inventory/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/views/product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/views/product_view.xml -------------------------------------------------------------------------------- /deltatech_stock_inventory/views/stock_quant_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/views/stock_quant_view.xml -------------------------------------------------------------------------------- /deltatech_stock_inventory/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/wizard/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_inventory/wizard/product_replenish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_inventory/wizard/product_replenish.py -------------------------------------------------------------------------------- /deltatech_stock_negative/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/README.rst -------------------------------------------------------------------------------- /deltatech_stock_negative/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_negative/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/__manifest__.py -------------------------------------------------------------------------------- /deltatech_stock_negative/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/i18n/es.po -------------------------------------------------------------------------------- /deltatech_stock_negative/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_stock_negative/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/models/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_negative/models/res_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/models/res_config.py -------------------------------------------------------------------------------- /deltatech_stock_negative/models/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/models/stock.py -------------------------------------------------------------------------------- /deltatech_stock_negative/models/stock_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/models/stock_location.py -------------------------------------------------------------------------------- /deltatech_stock_negative/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/pyproject.toml -------------------------------------------------------------------------------- /deltatech_stock_negative/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_stock_negative/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/readme/USAGE.md -------------------------------------------------------------------------------- /deltatech_stock_negative/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_stock_negative/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_negative/tests/test_negative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/tests/test_negative.py -------------------------------------------------------------------------------- /deltatech_stock_negative/views/res_config_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_negative/views/res_config_view.xml -------------------------------------------------------------------------------- /deltatech_stock_report/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/README.rst -------------------------------------------------------------------------------- /deltatech_stock_report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_report/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/__manifest__.py -------------------------------------------------------------------------------- /deltatech_stock_report/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_stock_report/images/main_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/images/main_screenshot.png -------------------------------------------------------------------------------- /deltatech_stock_report/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/models/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_report/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/pyproject.toml -------------------------------------------------------------------------------- /deltatech_stock_report/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | - Features: 2 | 3 | - Report with positions from picking lists 4 | -------------------------------------------------------------------------------- /deltatech_stock_report/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/report/__init__.py -------------------------------------------------------------------------------- /deltatech_stock_report/report/stock_picking_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/report/stock_picking_report.py -------------------------------------------------------------------------------- /deltatech_stock_report/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/security/ir.model.access.csv -------------------------------------------------------------------------------- /deltatech_stock_report/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_stock_report/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/static/description/index.html -------------------------------------------------------------------------------- /deltatech_stock_report/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_stock_report/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_test_system/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/README.rst -------------------------------------------------------------------------------- /deltatech_test_system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/__init__.py -------------------------------------------------------------------------------- /deltatech_test_system/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/__manifest__.py -------------------------------------------------------------------------------- /deltatech_test_system/data/neutralize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/data/neutralize.sql -------------------------------------------------------------------------------- /deltatech_test_system/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_test_system/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/models/__init__.py -------------------------------------------------------------------------------- /deltatech_test_system/models/ir_module_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/models/ir_module_module.py -------------------------------------------------------------------------------- /deltatech_test_system/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_test_system/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/pyproject.toml -------------------------------------------------------------------------------- /deltatech_test_system/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_test_system/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_test_system/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/static/description/index.html -------------------------------------------------------------------------------- /deltatech_test_system/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_test_system/tests/test_neutralized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/tests/test_neutralized.py -------------------------------------------------------------------------------- /deltatech_test_system/tests/test_test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/tests/test_test_system.py -------------------------------------------------------------------------------- /deltatech_test_system/views/ir_module_module_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/views/ir_module_module_view.xml -------------------------------------------------------------------------------- /deltatech_test_system/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_test_system/views/templates.xml -------------------------------------------------------------------------------- /deltatech_transport_change/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/README.rst -------------------------------------------------------------------------------- /deltatech_transport_change/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/__init__.py -------------------------------------------------------------------------------- /deltatech_transport_change/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/__manifest__.py -------------------------------------------------------------------------------- /deltatech_transport_change/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/models/__init__.py -------------------------------------------------------------------------------- /deltatech_transport_change/models/transport_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/models/transport_config.py -------------------------------------------------------------------------------- /deltatech_transport_change/models/transport_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/models/transport_repo.py -------------------------------------------------------------------------------- /deltatech_transport_change/models/transport_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/models/transport_utils.py -------------------------------------------------------------------------------- /deltatech_transport_change/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/pyproject.toml -------------------------------------------------------------------------------- /deltatech_transport_change/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_transport_change/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_transport_change/tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_transport_change/tests/test_export.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/README.rst -------------------------------------------------------------------------------- /deltatech_vendor_stock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/__init__.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/__manifest__.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_vendor_stock/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/models/__init__.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/models/product.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/models/product_supplierinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/models/product_supplierinfo.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/models/sale_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/models/sale_order.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/pyproject.toml -------------------------------------------------------------------------------- /deltatech_vendor_stock/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_vendor_stock/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_vendor_stock/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/static/description/index.html -------------------------------------------------------------------------------- /deltatech_vendor_stock/static/src/xml/qty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/static/src/xml/qty.xml -------------------------------------------------------------------------------- /deltatech_vendor_stock/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_vendor_stock/views/sale_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_vendor_stock/views/sale_view.xml -------------------------------------------------------------------------------- /deltatech_watermark/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/README.rst -------------------------------------------------------------------------------- /deltatech_watermark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/__init__.py -------------------------------------------------------------------------------- /deltatech_watermark/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/__manifest__.py -------------------------------------------------------------------------------- /deltatech_watermark/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_watermark/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/models/__init__.py -------------------------------------------------------------------------------- /deltatech_watermark/models/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/models/company.py -------------------------------------------------------------------------------- /deltatech_watermark/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/models/res_config_settings.py -------------------------------------------------------------------------------- /deltatech_watermark/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/pyproject.toml -------------------------------------------------------------------------------- /deltatech_watermark/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_watermark/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/readme/USAGE.md -------------------------------------------------------------------------------- /deltatech_watermark/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_watermark/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/static/description/index.html -------------------------------------------------------------------------------- /deltatech_watermark/static/description/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/static/description/settings.png -------------------------------------------------------------------------------- /deltatech_watermark/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_watermark/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_checkout_confirm/README.rst -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_checkout_confirm/__init__.py -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_checkout_confirm/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_checkout_confirm/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Features: 2 | - 3 | -------------------------------------------------------------------------------- /deltatech_website_checkout_confirm/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_checkout_confirm/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_website_city/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/README.rst -------------------------------------------------------------------------------- /deltatech_website_city/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/__init__.py -------------------------------------------------------------------------------- /deltatech_website_city/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_city/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/controller/__init__.py -------------------------------------------------------------------------------- /deltatech_website_city/controller/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/controller/portal.py -------------------------------------------------------------------------------- /deltatech_website_city/data/ir_model_fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/data/ir_model_fields.xml -------------------------------------------------------------------------------- /deltatech_website_city/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_website_city/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/models/__init__.py -------------------------------------------------------------------------------- /deltatech_website_city/models/res_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/models/res_country.py -------------------------------------------------------------------------------- /deltatech_website_city/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_city/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Features: 2 | 3 | - select city from the list in website 4 | -------------------------------------------------------------------------------- /deltatech_website_city/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/static/description/icon.png -------------------------------------------------------------------------------- /deltatech_website_city/static/description/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/static/description/icon.svg -------------------------------------------------------------------------------- /deltatech_website_city/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/static/description/index.html -------------------------------------------------------------------------------- /deltatech_website_city/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_website_city/tests/test_portal_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/tests/test_portal_city.py -------------------------------------------------------------------------------- /deltatech_website_city/tests/test_tour_city_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/tests/test_tour_city_zip.py -------------------------------------------------------------------------------- /deltatech_website_city/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_city/views/templates.xml -------------------------------------------------------------------------------- /deltatech_website_delivery_and_payment/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_delivery_and_payment/README.rst -------------------------------------------------------------------------------- /deltatech_website_delivery_and_payment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_delivery_and_payment/__init__.py -------------------------------------------------------------------------------- /deltatech_website_delivery_and_payment/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_delivery_and_payment/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_website_delivery_and_payment/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_delivery_and_payment/models/sale.py -------------------------------------------------------------------------------- /deltatech_website_delivery_and_payment/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_delivery_and_payment/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_product_url_image/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_product_url_image/README.rst -------------------------------------------------------------------------------- /deltatech_website_product_url_image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_product_url_image/__init__.py -------------------------------------------------------------------------------- /deltatech_website_product_url_image/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_product_url_image/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_product_url_image/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_product_url_image/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_product_url_image/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | - Features: 2 | 3 | - Incarcare poza din url 4 | -------------------------------------------------------------------------------- /deltatech_website_sale_sort/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/README.rst -------------------------------------------------------------------------------- /deltatech_website_sale_sort/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/controllers/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/data/ir_cron_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/data/ir_cron_data.xml -------------------------------------------------------------------------------- /deltatech_website_sale_sort/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_website_sale_sort/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/models/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/models/product.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/models/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/models/website.py -------------------------------------------------------------------------------- /deltatech_website_sale_sort/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_sale_sort/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_website_sale_sort/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_sort/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/README.rst -------------------------------------------------------------------------------- /deltatech_website_sale_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/controllers/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/controllers/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/controllers/portal.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/i18n/ro.po -------------------------------------------------------------------------------- /deltatech_website_sale_status/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/models/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/models/sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/models/sale.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/models/sale_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/models/sale_report.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_sale_status/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /deltatech_website_sale_status/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/tests/test_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/tests/test_sale.py -------------------------------------------------------------------------------- /deltatech_website_sale_status/views/sale_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/views/sale_view.xml -------------------------------------------------------------------------------- /deltatech_website_sale_status/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_sale_status/views/templates.xml -------------------------------------------------------------------------------- /deltatech_website_short_description/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/README.rst -------------------------------------------------------------------------------- /deltatech_website_short_description/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/__init__.py -------------------------------------------------------------------------------- /deltatech_website_short_description/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/__manifest__.py -------------------------------------------------------------------------------- /deltatech_website_short_description/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/models/product.py -------------------------------------------------------------------------------- /deltatech_website_short_description/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/pyproject.toml -------------------------------------------------------------------------------- /deltatech_website_short_description/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_website_short_description/tests/__init__.py -------------------------------------------------------------------------------- /deltatech_widget_fontawesome/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_widget_fontawesome/README.rst -------------------------------------------------------------------------------- /deltatech_widget_fontawesome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deltatech_widget_fontawesome/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_widget_fontawesome/__manifest__.py -------------------------------------------------------------------------------- /deltatech_widget_fontawesome/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/deltatech_widget_fontawesome/pyproject.toml -------------------------------------------------------------------------------- /deltatech_widget_fontawesome/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Features: 2 | 3 | - \ 4 | -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /gen_addon_readme.rst.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/gen_addon_readme.rst.jinja -------------------------------------------------------------------------------- /mig_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/mig_module.sh -------------------------------------------------------------------------------- /oca_dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/oca_dependencies.txt -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/update_pyproject_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhongu/deltatech/HEAD/scripts/update_pyproject_name.py -------------------------------------------------------------------------------- /update_readme.sh: -------------------------------------------------------------------------------- 1 | pre-commit run --hook-stage manual 2 | --------------------------------------------------------------------------------