├── account_cash_flow ├── README.md ├── static │ └── description │ │ └── icon.png ├── wizard │ └── __init__.py ├── models │ └── __init__.py ├── __init__.py └── __manifest__.py ├── project_scrum ├── __init__.py ├── data │ └── scrum.xml ├── models │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── views │ └── project_project.xml ├── __manifest__.py └── security │ └── ir.model.access.csv ├── boleto_cloud ├── reports │ ├── __init__.py │ └── boleto.xml ├── __init__.py ├── models │ ├── __init__.py │ ├── res_company.py │ ├── wizard_new_payment.py │ ├── account_journal.py │ └── eletronic_document.py ├── security │ └── ir.model.access.csv ├── views │ ├── account_move.xml │ ├── res_company.xml │ ├── payment_transaction.xml │ └── account_journal.xml ├── __manifest__.py └── data │ └── acquirer.xml ├── crm_customization ├── __init__.py ├── models │ ├── __init__.py │ ├── order.py │ ├── negotiation.py │ └── res_partner.py ├── security │ └── ir.model.access.csv ├── __manifest__.py └── views │ └── sale_order.xml ├── marketing_integration ├── __init__.py ├── models │ ├── __init__.py │ └── mailing.py ├── views │ └── mailing.xml └── __manifest__.py ├── helpdesk_contract ├── __init__.py ├── models │ ├── __init__.py │ ├── product.py │ ├── contract.py │ ├── helpdesk.py │ └── res_partner.py ├── __manifest__.py └── views │ ├── product.xml │ └── helpdesk.xml ├── ow_web_responsive ├── __init__.py ├── models │ └── __init__.py ├── tests │ ├── __init__.py │ └── test_res_users.py ├── static │ ├── img │ │ ├── appmenu.gif │ │ ├── chatter.gif │ │ ├── formview.gif │ │ ├── listview.gif │ │ └── chatter_topbar.gif │ ├── description │ │ └── icon.png │ └── src │ │ └── xml │ │ └── navbar.xml ├── readme │ ├── USAGE.rst │ ├── CONTRIBUTORS.rst │ └── ROADMAP.rst ├── views │ ├── web.xml │ ├── res_users.xml │ └── assets.xml └── __manifest__.py ├── README.md ├── mrp_bom_location ├── models │ ├── __init__.py │ └── mrp_bom.py ├── report │ └── __init__.py ├── __init__.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── CONTRIBUTORS.rst │ ├── USAGE.rst │ └── DESCRIPTION.rst └── __manifest__.py ├── payment_zoop ├── controllers │ └── __init__.py ├── __init__.py ├── static │ └── description │ │ └── icon.png ├── models │ ├── __init__.py │ ├── account_journal.py │ └── sale_order.py ├── views │ ├── account_journal.xml │ ├── zoop.xml │ └── payment_views.xml ├── __manifest__.py └── data │ └── zoop.xml ├── stock_available_unreserved ├── __init__.py ├── models │ ├── __init__.py │ └── quant.py ├── tests │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── CONTRIBUTORS.rst │ └── DESCRIPTION.rst └── __manifest__.py ├── wordpress_form_submission ├── __init__.py ├── controllers │ └── __init__.py └── __manifest__.py ├── contract ├── wizards │ └── __init__.py ├── __init__.py ├── readme │ ├── ROADMAP.rst │ ├── CONFIGURE.rst │ ├── DESCRIPTION.rst │ └── CONTRIBUTORS.rst ├── static │ └── description │ │ └── icon.png ├── tests │ └── __init__.py ├── data │ ├── sequences.xml │ ├── contract_renew_cron.xml │ └── contract_cron.xml ├── report │ └── contract_views.xml ├── models │ ├── account_move_line.py │ ├── __init__.py │ ├── account_move.py │ ├── contract_template.py │ └── contract_template_line.py ├── views │ └── contract_template_line.xml └── security │ └── ir.model.access.csv ├── stock_production_lot_active ├── __init__.py ├── models │ ├── __init__.py │ └── stock_production_lot.py ├── readme │ ├── DESCRIPTION.rst │ └── CONTRIBUTORS.rst ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── i18n │ └── stock_production_lot_active.pot ├── .gitignore ├── mrp_bom_tracking ├── tests │ └── __init__.py ├── __init__.py ├── models │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.rst │ └── CONTRIBUTORS.rst └── __manifest__.py ├── website_sale_stock_available ├── controllers │ ├── __init__.py │ └── main.py ├── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── USAGE.rst │ ├── CONFIGURE.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ ├── icon.png │ │ ├── product_quantities.png │ │ └── availability_message.png ├── tests │ └── __init__.py ├── models │ ├── __init__.py │ ├── sale_order.py │ ├── product_product.py │ └── product_template.py ├── __manifest__.py └── i18n │ ├── website_sale_stock_available.pot │ ├── es.po │ ├── fr.po │ └── es_CL.po ├── account_bank_statement_import_ofx ├── models │ ├── __init__.py │ └── account_journal.py ├── __init__.py ├── tests │ └── __init__.py ├── wizard │ └── __init__.py ├── readme │ ├── INSTALL.rst │ ├── CONTRIBUTORS.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── views │ └── view_account_bank_statement_import.xml ├── backend_theme_v13 ├── controllers │ ├── __init__.py │ └── main.py ├── __init__.py ├── models │ ├── __init__.py │ └── res_company.py ├── images │ └── screen.png ├── static │ ├── description │ │ ├── icon.png │ │ ├── screenshot1.png │ │ └── screenshot2.png │ └── src │ │ ├── font │ │ └── Roboto-Regular.ttf │ │ ├── img │ │ ├── home-menu-bg-overlay.svg │ │ └── checked.svg │ │ └── js │ │ └── sidebar-toggle.js ├── views │ ├── users.xml │ ├── res_company_view.xml │ └── assets.xml └── __manifest__.py ├── mrp_bom_current_stock ├── reports │ └── __init__.py ├── tests │ └── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── wizard │ └── __init__.py └── __manifest__.py ├── sale_order_project ├── __init__.py ├── models │ └── __init__.py ├── tests │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── i18n │ ├── sale_order_project.pot │ └── pt.po ├── base_accounting_kit ├── static │ ├── lib │ │ ├── bootstrap-toggle-master │ │ │ ├── _gitignore │ │ │ ├── doc │ │ │ │ ├── nyt.png │ │ │ │ └── header.png │ │ │ ├── bower.json │ │ │ ├── Gruntfile.js │ │ │ └── package.json │ │ ├── Chart.min.css │ │ └── Chart.css │ ├── description │ │ ├── icon.png │ │ ├── banner.gif │ │ ├── bannerold.gif │ │ ├── banner_feb.gif │ │ ├── banner_old.gif │ │ ├── cybro_logo.png │ │ └── images │ │ │ ├── checked.png │ │ │ ├── cybrosys.png │ │ │ ├── crm_dashboard_banner.gif │ │ │ ├── report_maker_banner.gif │ │ │ ├── accounting_kit_window.gif │ │ │ ├── base_accounting_kit-1.png │ │ │ ├── base_accounting_kit-10.png │ │ │ ├── base_accounting_kit-11.png │ │ │ ├── base_accounting_kit-12.png │ │ │ ├── base_accounting_kit-13.png │ │ │ ├── base_accounting_kit-14.png │ │ │ ├── base_accounting_kit-15.png │ │ │ ├── base_accounting_kit-16.png │ │ │ ├── base_accounting_kit-17.png │ │ │ ├── base_accounting_kit-18.png │ │ │ ├── base_accounting_kit-19.png │ │ │ ├── base_accounting_kit-2.png │ │ │ ├── base_accounting_kit-20.png │ │ │ ├── base_accounting_kit-21.png │ │ │ ├── base_accounting_kit-22.png │ │ │ ├── base_accounting_kit-23.png │ │ │ ├── base_accounting_kit-24.png │ │ │ ├── base_accounting_kit-25.png │ │ │ ├── base_accounting_kit-26.png │ │ │ ├── base_accounting_kit-27.png │ │ │ ├── base_accounting_kit-28.png │ │ │ ├── base_accounting_kit-29.png │ │ │ ├── base_accounting_kit-3.png │ │ │ ├── base_accounting_kit-4.png │ │ │ ├── base_accounting_kit-40.png │ │ │ ├── base_accounting_kit-41.png │ │ │ ├── base_accounting_kit-42.png │ │ │ ├── base_accounting_kit-43.png │ │ │ ├── base_accounting_kit-5.png │ │ │ ├── base_accounting_kit-6.png │ │ │ ├── base_accounting_kit-7.png │ │ │ ├── base_accounting_kit-8.png │ │ │ ├── base_accounting_kit-9.png │ │ │ ├── odoo11_magento_banner.jpg │ │ │ ├── account_dynamic_report_banner.gif │ │ │ ├── mobile_service_shop_pro_banner.jpg │ │ │ ├── project_custome_gantt_banner.gif │ │ │ ├── base_accounting_kit_dashboard-1.png │ │ │ └── base_accounting_kit_dashboard-2.png │ └── src │ │ └── scss │ │ └── account_asset.scss ├── data │ ├── followup_levels.xml │ ├── account_asset_data.xml │ ├── recurring_entry_cron.xml │ └── account_pdc_data.xml ├── views │ ├── account_asset_templates.xml │ ├── dashboard_views.xml │ ├── account_configuration.xml │ ├── product_views.xml │ ├── product_template_views.xml │ └── account_move_views.xml ├── doc │ └── changelog.md └── __init__.py ├── website_facebook_pixel ├── __init__.py ├── models │ ├── __init__.py │ ├── website.py │ └── res_config_settings.py ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── banner_youtube.png │ │ ├── website_config.jpg │ │ ├── facebook_pixel_id.jpg │ │ ├── banner_facebook_shop.png │ │ ├── facebook_pixel_script.jpg │ │ ├── banner_fb_pixel_events.png │ │ ├── banner_fb_pixel_ecommerce.png │ │ ├── banner_website_sale_tweaks.png │ │ ├── banner_website_sale_facebook_pixel.png │ │ └── banner_website_facebook_pixel_events.png └── doc │ ├── index.rst │ └── changelog.rst ├── stock_available_immediately ├── tests │ └── __init__.py ├── __init__.py ├── models │ ├── __init__.py │ └── product_product.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.rst │ └── CONTRIBUTORS.rst ├── i18n │ ├── stock_available_immediately.pot │ ├── tr.po │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── eu.po │ ├── fi.po │ ├── fr.po │ ├── gl.po │ ├── it.po │ ├── nl.po │ ├── pt.po │ ├── tr_TR.po │ ├── zh_CN.po │ ├── el_GR.po │ ├── es_ES.po │ ├── fr_FR.po │ ├── vi_VN.po │ ├── fr_CH.po │ ├── nl_NL.po │ ├── pt_BR.po │ ├── cs_CZ.po │ ├── ro.po │ ├── sl.po │ ├── hr.po │ ├── es_MX.po │ ├── hr_HR.po │ └── ru.po └── __manifest__.py ├── requirements.txt ├── sentry ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ ├── USAGE.rst │ └── ROADMAP.rst ├── static │ └── description │ │ └── icon.png ├── tests │ └── __init__.py ├── i18n │ ├── sentry.pot │ └── zh_CN.po └── __manifest__.py ├── account_cash_flow_sale ├── .DS_Store ├── static │ └── description │ │ └── icon.png ├── models │ └── __init__.py ├── views │ └── cash_flow_view.xml └── __openerp__.py ├── stock_available ├── __init__.py ├── static │ └── description │ │ └── icon.png ├── tests │ └── __init__.py ├── readme │ ├── USAGE.rst │ ├── CONFIGURE.rst │ ├── DESCRIPTION.rst │ └── CONTRIBUTORS.rst ├── models │ └── __init__.py └── __manifest__.py ├── stock_no_negative ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── readme │ ├── USAGE.rst │ ├── HISTORY.rst │ ├── CONTRIBUTORS.rst │ ├── CONFIGURE.rst │ └── DESCRIPTION.rst ├── models │ ├── __init__.py │ ├── stock_location.py │ └── product.py ├── tests │ └── __init__.py ├── __manifest__.py └── views │ └── stock_location_views.xml ├── stock_available_mrp ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── models │ └── __init__.py ├── tests │ └── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ └── DESCRIPTION.rst └── __manifest__.py ├── wiki_documentation ├── static │ ├── description │ │ ├── icon.png │ │ └── banner.png │ └── src │ │ ├── img │ │ └── blocks │ │ │ ├── code.png │ │ │ ├── image.png │ │ │ ├── note1.png │ │ │ ├── note2.png │ │ │ ├── note3.png │ │ │ ├── quote.png │ │ │ ├── title.png │ │ │ ├── 2image.png │ │ │ ├── default.gif │ │ │ ├── warning.png │ │ │ ├── image_text.png │ │ │ └── paragraph.png │ │ └── js │ │ └── documentation.js ├── controllers │ └── __init__.py ├── __init__.py ├── models │ └── __init__.py └── COPYRIGHT ├── bi_mrp_production_cancel ├── static │ └── description │ │ ├── icon.png │ │ ├── 10_mrp.png │ │ ├── 11_mrp.png │ │ ├── 12_mrp.png │ │ ├── 13_mrp.png │ │ ├── 1_mrp.png │ │ ├── 2_mrp.png │ │ ├── 3_mrp.png │ │ ├── 4_mrp.png │ │ ├── 5_mrp.png │ │ ├── 6_mrp.png │ │ ├── 7_mrp.png │ │ ├── 8_mrp.png │ │ ├── 9_mrp.png │ │ ├── Banner.png │ │ ├── bi_logo.png │ │ ├── demanded │ │ ├── branch.png │ │ ├── all_in_one_pos.png │ │ ├── sale_commision.png │ │ ├── bi_generic_import.png │ │ ├── customer_overdue.png │ │ └── generic_excel_report.png │ │ ├── features │ │ ├── delete.png │ │ ├── feature_3.png │ │ ├── feature_4.png │ │ └── reset_iconn.png │ │ └── related │ │ ├── bi_duplicate_product_bom.png │ │ ├── bi_website_job_workorder.png │ │ ├── bi_job_costing_budget_contracting.png │ │ ├── bi_material_requisition_cost_sheet.png │ │ ├── bi_job_equipments_maintenance_request.png │ │ └── bi_odoo_process_costing_manufacturing.png ├── __init__.py ├── models │ └── __init__.py ├── Readme └── views │ └── mrp_production_views.xml └── .github └── workflows └── main.yml /account_cash_flow/README.md: -------------------------------------------------------------------------------- 1 | TODO 2 | === 3 | -------------------------------------------------------------------------------- /project_scrum/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models -------------------------------------------------------------------------------- /boleto_cloud/reports/__init__.py: -------------------------------------------------------------------------------- 1 | from . import boleto -------------------------------------------------------------------------------- /crm_customization/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models -------------------------------------------------------------------------------- /marketing_integration/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models -------------------------------------------------------------------------------- /helpdesk_contract/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /ow_web_responsive/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | This is a repository from Trustcode. 3 | 4 | -------------------------------------------------------------------------------- /marketing_integration/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mailing -------------------------------------------------------------------------------- /mrp_bom_location/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mrp_bom 2 | -------------------------------------------------------------------------------- /payment_zoop/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import main 2 | -------------------------------------------------------------------------------- /stock_available_unreserved/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /wordpress_form_submission/__init__.py: -------------------------------------------------------------------------------- 1 | from . import controllers -------------------------------------------------------------------------------- /contract/wizards/__init__.py: -------------------------------------------------------------------------------- 1 | from . import contract_line_wizard 2 | -------------------------------------------------------------------------------- /mrp_bom_location/report/__init__.py: -------------------------------------------------------------------------------- 1 | from . import bom_structure 2 | -------------------------------------------------------------------------------- /ow_web_responsive/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_users 2 | -------------------------------------------------------------------------------- /ow_web_responsive/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_res_users 2 | -------------------------------------------------------------------------------- /project_scrum/data/scrum.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /stock_production_lot_active/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /wordpress_form_submission/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import main -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.py~ 3 | *.po~ 4 | *.xml~ 5 | .vscode/tags 6 | 7 | -------------------------------------------------------------------------------- /boleto_cloud/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | from . import reports -------------------------------------------------------------------------------- /contract/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | from . import wizards 3 | -------------------------------------------------------------------------------- /mrp_bom_location/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | from . import report 3 | -------------------------------------------------------------------------------- /mrp_bom_tracking/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_mrp_bom_tracking 2 | -------------------------------------------------------------------------------- /website_sale_stock_available/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from . import main 2 | -------------------------------------------------------------------------------- /payment_zoop/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | from . import controllers 3 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import account_journal 2 | -------------------------------------------------------------------------------- /backend_theme_v13/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from . import main -------------------------------------------------------------------------------- /mrp_bom_current_stock/reports/__init__.py: -------------------------------------------------------------------------------- 1 | from . import report_mrpcurrentstock_xlsx 2 | -------------------------------------------------------------------------------- /mrp_bom_current_stock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_mrp_bom_current_stock 2 | -------------------------------------------------------------------------------- /sale_order_project/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /stock_production_lot_active/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import stock_production_lot 2 | -------------------------------------------------------------------------------- /stock_production_lot_active/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Allow to archive/unarchive a lot. 2 | -------------------------------------------------------------------------------- /base_accounting_kit/static/lib/bootstrap-toggle-master/_gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /sale_order_project/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from . import sale 4 | -------------------------------------------------------------------------------- /website_facebook_pixel/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | from . import wizard 3 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_import_bank_statement 2 | -------------------------------------------------------------------------------- /contract/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Recover states and others functional fields in Contracts. 2 | 3 | -------------------------------------------------------------------------------- /stock_available_immediately/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_stock_available_immediately 2 | -------------------------------------------------------------------------------- /stock_available_unreserved/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import product 2 | from . import quant 3 | -------------------------------------------------------------------------------- /stock_available_unreserved/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_stock_available_unreserved 2 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import account_bank_statement_import 2 | -------------------------------------------------------------------------------- /project_scrum/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import project_project 2 | from . import project_scrum 3 | 4 | -------------------------------------------------------------------------------- /stock_production_lot_active/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Thomas Binsfeld 2 | -------------------------------------------------------------------------------- /backend_theme_v13/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from . import models 3 | from . import controllers -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Fabric3==1.13.1.* 2 | boto3>=1.5.12 3 | twilio 4 | openpyxl>=2.6.2 5 | pandas 6 | plotly -------------------------------------------------------------------------------- /sale_order_project/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | 3 | from . import test_sale_order_project 4 | -------------------------------------------------------------------------------- /backend_theme_v13/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from . import res_company 3 | #from . import res_users -------------------------------------------------------------------------------- /sentry/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module allows painless `Sentry `__ integration with 2 | Odoo. 3 | -------------------------------------------------------------------------------- /account_cash_flow_sale/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/account_cash_flow_sale/.DS_Store -------------------------------------------------------------------------------- /mrp_bom_tracking/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /backend_theme_v13/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/backend_theme_v13/images/screen.png -------------------------------------------------------------------------------- /sentry/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/sentry/static/description/icon.png -------------------------------------------------------------------------------- /stock_available/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /contract/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | To view discount field in contract line, you need to set *Discount on lines* in 2 | user access rights. 3 | -------------------------------------------------------------------------------- /contract/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/contract/static/description/icon.png -------------------------------------------------------------------------------- /mrp_bom_tracking/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). 2 | 3 | from . import mrp_bom 4 | -------------------------------------------------------------------------------- /website_facebook_pixel/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from . import website 4 | from . import res_config_settings 5 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/readme/INSTALL.rst: -------------------------------------------------------------------------------- 1 | This module requires the `ofxparse `_ python lib. 2 | -------------------------------------------------------------------------------- /ow_web_responsive/static/img/appmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/img/appmenu.gif -------------------------------------------------------------------------------- /ow_web_responsive/static/img/chatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/img/chatter.gif -------------------------------------------------------------------------------- /payment_zoop/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/payment_zoop/static/description/icon.png -------------------------------------------------------------------------------- /stock_available_immediately/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /crm_customization/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import lead 2 | from . import negotiation 3 | from . import order 4 | from . import res_partner 5 | 6 | -------------------------------------------------------------------------------- /helpdesk_contract/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from . import product 3 | from . import res_partner 4 | from . import helpdesk 5 | from . import contract -------------------------------------------------------------------------------- /mrp_bom_current_stock/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Lois Rilo 2 | * Héctor Villarreal 3 | -------------------------------------------------------------------------------- /ow_web_responsive/static/img/formview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/img/formview.gif -------------------------------------------------------------------------------- /ow_web_responsive/static/img/listview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/img/listview.gif -------------------------------------------------------------------------------- /project_scrum/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/project_scrum/static/description/icon.png -------------------------------------------------------------------------------- /account_cash_flow/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/account_cash_flow/static/description/icon.png -------------------------------------------------------------------------------- /backend_theme_v13/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/backend_theme_v13/static/description/icon.png -------------------------------------------------------------------------------- /mrp_bom_location/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/mrp_bom_location/static/description/icon.png -------------------------------------------------------------------------------- /mrp_bom_tracking/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/mrp_bom_tracking/static/description/icon.png -------------------------------------------------------------------------------- /ow_web_responsive/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/description/icon.png -------------------------------------------------------------------------------- /stock_available/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_available/static/description/icon.png -------------------------------------------------------------------------------- /stock_no_negative/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_no_negative/static/description/icon.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/icon.png -------------------------------------------------------------------------------- /ow_web_responsive/static/img/chatter_topbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/ow_web_responsive/static/img/chatter_topbar.gif -------------------------------------------------------------------------------- /sale_order_project/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/sale_order_project/static/description/icon.png -------------------------------------------------------------------------------- /stock_available_immediately/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import product_product 4 | -------------------------------------------------------------------------------- /stock_available_mrp/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_available_mrp/static/description/icon.png -------------------------------------------------------------------------------- /wiki_documentation/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/description/icon.png -------------------------------------------------------------------------------- /account_cash_flow_sale/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/account_cash_flow_sale/static/description/icon.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/banner.gif -------------------------------------------------------------------------------- /mrp_bom_current_stock/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/mrp_bom_current_stock/static/description/icon.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/icon.png -------------------------------------------------------------------------------- /wiki_documentation/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/description/banner.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/code.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/image.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/note1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/note1.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/note2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/note2.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/note3.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/quote.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/title.png -------------------------------------------------------------------------------- /backend_theme_v13/static/description/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/backend_theme_v13/static/description/screenshot1.png -------------------------------------------------------------------------------- /backend_theme_v13/static/description/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/backend_theme_v13/static/description/screenshot2.png -------------------------------------------------------------------------------- /backend_theme_v13/static/src/font/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/backend_theme_v13/static/src/font/Roboto-Regular.ttf -------------------------------------------------------------------------------- /base_accounting_kit/static/description/bannerold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/bannerold.gif -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/icon.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner.png -------------------------------------------------------------------------------- /website_sale_stock_available/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 2 | from . import controllers 3 | from . import models 4 | -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/2image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/2image.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/default.gif -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/warning.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/banner_feb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/banner_feb.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/description/banner_old.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/banner_old.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/description/cybro_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/cybro_logo.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/10_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/10_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/11_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/11_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/12_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/12_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/13_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/13_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/1_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/1_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/2_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/2_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/3_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/3_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/4_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/4_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/5_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/5_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/6_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/6_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/7_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/7_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/8_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/8_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/9_mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/9_mrp.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/Banner.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/bi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/bi_logo.png -------------------------------------------------------------------------------- /stock_available_immediately/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_available_immediately/static/description/icon.png -------------------------------------------------------------------------------- /stock_available_mrp/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Numérigraphe SARL 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | from . import models 5 | -------------------------------------------------------------------------------- /stock_available_unreserved/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_available_unreserved/static/description/icon.png -------------------------------------------------------------------------------- /stock_production_lot_active/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/stock_production_lot_active/static/description/icon.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/image_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/image_text.png -------------------------------------------------------------------------------- /wiki_documentation/static/src/img/blocks/paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/wiki_documentation/static/src/img/blocks/paragraph.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/checked.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Part of BrowseInfo. See LICENSE file for full copyright and licensing details. 3 | 4 | from . import models -------------------------------------------------------------------------------- /mrp_bom_tracking/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module adds track visibility to some fields of mrp boms. Also, 2 | it log notes for any change in the bom lines (components). 3 | -------------------------------------------------------------------------------- /website_sale_stock_available/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `_: 2 | 3 | * Ernesto Tejeda 4 | * Pedro M. Baeza 5 | * Víctor Martínez 6 | -------------------------------------------------------------------------------- /website_sale_stock_available/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_sale_stock_available/static/description/icon.png -------------------------------------------------------------------------------- /website_sale_stock_available/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import test_website_sale_stock_available 4 | -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/cybrosys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/cybrosys.png -------------------------------------------------------------------------------- /mrp_bom_tracking/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Miquel Raïch 2 | * Lois Rilo 3 | * Joan Sisquella 4 | -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_youtube.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/website_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/website_config.jpg -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/account_bank_statement_import_ofx/static/description/icon.png -------------------------------------------------------------------------------- /account_cash_flow/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2016 Danimar Ribeiro, Trustcode 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | 5 | from . import cash_flow 6 | -------------------------------------------------------------------------------- /contract/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2016 Carlos Dauden 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import test_contract 5 | -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/branch.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/features/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/features/delete.png -------------------------------------------------------------------------------- /boleto_cloud/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import account_move 2 | from . import account_journal 3 | from . import res_company 4 | from . import boleto_cloud 5 | from . import wizard_new_payment -------------------------------------------------------------------------------- /stock_available_mrp/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Numérigraphe SARL 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | from . import product_product 5 | -------------------------------------------------------------------------------- /stock_available_mrp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Numérigraphe SARL 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | from . import test_potential_qty 5 | -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/facebook_pixel_id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/facebook_pixel_id.jpg -------------------------------------------------------------------------------- /account_cash_flow/models/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2016 Danimar Ribeiro, Trustcode 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | 5 | from . import cash_flow_report 6 | -------------------------------------------------------------------------------- /base_accounting_kit/static/lib/bootstrap-toggle-master/doc/nyt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/lib/bootstrap-toggle-master/doc/nyt.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Part of BrowseInfo. See LICENSE file for full copyright and licensing details. 3 | 4 | from . import mrp_production 5 | -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/features/feature_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/features/feature_3.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/features/feature_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/features/feature_4.png -------------------------------------------------------------------------------- /sentry/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016-2017 Versada 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import test_client, test_logutils 5 | -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_facebook_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_facebook_shop.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/facebook_pixel_script.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/facebook_pixel_script.jpg -------------------------------------------------------------------------------- /wiki_documentation/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2018 Danimar Ribeiro, Trustcode 2 | # Part of Trustcode. See LICENSE file for full copyright and licensing details. 3 | 4 | from . import main 5 | -------------------------------------------------------------------------------- /account_cash_flow/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2016 Danimar Ribeiro, Trustcode 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | 5 | from . import models 6 | from . import wizard 7 | -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/crm_dashboard_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/crm_dashboard_banner.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/report_maker_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/report_maker_banner.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/lib/bootstrap-toggle-master/doc/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/lib/bootstrap-toggle-master/doc/header.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/features/reset_iconn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/features/reset_iconn.png -------------------------------------------------------------------------------- /mrp_bom_current_stock/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This modules extend the Manufacturing App adding a report that explodes the 2 | bill of materials and show the stock available in the source location. 3 | -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_fb_pixel_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_fb_pixel_events.png -------------------------------------------------------------------------------- /website_sale_stock_available/static/description/product_quantities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_sale_stock_available/static/description/product_quantities.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/accounting_kit_window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/accounting_kit_window.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-1.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-10.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-11.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-12.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-13.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-14.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-15.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-16.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-17.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-18.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-19.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-2.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-20.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-21.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-22.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-23.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-24.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-25.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-26.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-27.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-28.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-29.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-3.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-4.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-40.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-41.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-42.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-43.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-5.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-6.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-7.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-8.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit-9.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/odoo11_magento_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/odoo11_magento_banner.jpg -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/all_in_one_pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/all_in_one_pos.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/sale_commision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/sale_commision.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_fb_pixel_ecommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_fb_pixel_ecommerce.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_website_sale_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_website_sale_tweaks.png -------------------------------------------------------------------------------- /website_sale_stock_available/static/description/availability_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_sale_stock_available/static/description/availability_message.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/bi_generic_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/bi_generic_import.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/customer_overdue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/customer_overdue.png -------------------------------------------------------------------------------- /boleto_cloud/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_cnab_remessa,access_cnab_remessa,model_cnab_remessa,base.group_user,1,1,1,0 3 | -------------------------------------------------------------------------------- /ow_web_responsive/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | The following keyboard shortcuts are implemented: 2 | 3 | * Navigate app search results - Arrow keys 4 | * Choose app result - ``Enter`` 5 | * ``Esc`` to close app drawer 6 | -------------------------------------------------------------------------------- /sentry/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Mohammed Barsi 2 | * Andrius Preimantas 3 | * Naglis Jonaitis 4 | * Atte Isopuro 5 | -------------------------------------------------------------------------------- /stock_available/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Numérigraphe 2 | # Copyright 2016 Sodexis 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 4 | 5 | from . import test_stock_available 6 | -------------------------------------------------------------------------------- /website_facebook_pixel/doc/index.rst: -------------------------------------------------------------------------------- 1 | **Changelog** 2 | ------------------------------ 3 | 4 | **13.0.1.0.2** 2021-01-16 5 | 6 | - Price set as free. 7 | 8 | **13.0.1.0.1** 2020-10-19 9 | 10 | 11 | -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/demanded/generic_excel_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/demanded/generic_excel_report.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/account_dynamic_report_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/account_dynamic_report_banner.gif -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/mobile_service_shop_pro_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/mobile_service_shop_pro_banner.jpg -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/project_custome_gantt_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/project_custome_gantt_banner.gif -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_duplicate_product_bom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_duplicate_product_bom.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_website_job_workorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_website_job_workorder.png -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_website_sale_facebook_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_website_sale_facebook_pixel.png -------------------------------------------------------------------------------- /account_cash_flow_sale/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # © 2016 Danimar Ribeiro, Trustcode 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 4 | 5 | 6 | from . import cash_flow_report 7 | -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit_dashboard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit_dashboard-1.png -------------------------------------------------------------------------------- /base_accounting_kit/static/description/images/base_accounting_kit_dashboard-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/base_accounting_kit/static/description/images/base_accounting_kit_dashboard-2.png -------------------------------------------------------------------------------- /boleto_cloud/models/res_company.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class ResCompany(models.Model): 5 | _inherit = 'res.company' 6 | 7 | boleto_cloud_api_token = fields.Char('Boleto Cloud Api Token') -------------------------------------------------------------------------------- /crm_customization/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_negotiation_rule,access_negotiation_rule,model_negotiation_rule,base.group_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /marketing_integration/models/mailing.py: -------------------------------------------------------------------------------- 1 | 2 | from odoo import fields, models 3 | 4 | 5 | class MassMailing(models.Model): 6 | _inherit = 'mailing.mailing' 7 | 8 | mailing_model_id = fields.Many2one(domain=[]) 9 | -------------------------------------------------------------------------------- /mrp_bom_location/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Lois Rilo 2 | * Mykhailo Panarin 3 | * Saran Limpajitkutaporn 4 | * Sudhir Arya 5 | -------------------------------------------------------------------------------- /stock_available/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | This module adds a field named `Available for sale` on the Product form. 2 | Various additional fields may be added, depending on which information you 3 | chose to base the computation on. 4 | -------------------------------------------------------------------------------- /website_facebook_pixel/doc/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changelog: 2 | 3 | Changelog 4 | ========= 5 | 6 | `13.0.1.0.2` 7 | ------------ 8 | 9 | - Price set as free. 10 | 11 | `13.0.1.0.1` 12 | ------------ 13 | 14 | 15 | -------------------------------------------------------------------------------- /website_facebook_pixel/static/description/banner_website_facebook_pixel_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/website_facebook_pixel/static/description/banner_website_facebook_pixel_events.png -------------------------------------------------------------------------------- /website_sale_stock_available/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import product_product 4 | from . import product_template 5 | from . import sale_order 6 | -------------------------------------------------------------------------------- /contract/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module enables contracts management with recurring 2 | invoicing functions. Also you can print and send by email contract report. 3 | 4 | It works for customer contract and supplier contracts. 5 | -------------------------------------------------------------------------------- /helpdesk_contract/models/product.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class ProductTemplate(models.Model): 5 | _inherit = "product.template" 6 | 7 | has_support_contract = fields.Boolean(string="Contrato de Suporte?") -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_job_costing_budget_contracting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_job_costing_budget_contracting.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_material_requisition_cost_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_material_requisition_cost_sheet.png -------------------------------------------------------------------------------- /stock_no_negative/__init__.py: -------------------------------------------------------------------------------- 1 | # ?? 2015-2016 Akretion (http://www.akretion.com) 2 | # @author Alexis de Lattre 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from . import models 6 | -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_job_equipments_maintenance_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_job_equipments_maintenance_request.png -------------------------------------------------------------------------------- /bi_mrp_production_cancel/static/description/related/bi_odoo_process_costing_manufacturing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/trustcode-addons/HEAD/bi_mrp_production_cancel/static/description/related/bi_odoo_process_costing_manufacturing.png -------------------------------------------------------------------------------- /website_facebook_pixel/models/website.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from odoo import fields, models 4 | 5 | 6 | class Website(models.Model): 7 | _inherit = 'website' 8 | 9 | facebook_pixel_key = fields.Char('Facebook Pixel ID') 10 | -------------------------------------------------------------------------------- /base_accounting_kit/static/src/scss/account_asset.scss: -------------------------------------------------------------------------------- 1 | .o_web_client .o_deprec_lines_toggler { 2 | color: #b52121; 3 | &.o_is_posted { 4 | color: #6f7370; 5 | } 6 | &.o_unposted { 7 | color: #178230; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /mrp_bom_current_stock/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Camptocamp SA 2 | # Copyright 2017 Eficent Business and IT Consulting Services S.L. 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from . import wizard 6 | from . import reports 7 | -------------------------------------------------------------------------------- /mrp_bom_current_stock/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Camptocamp SA 2 | # Copyright 2017 Eficent Business and IT Consulting Services S.L. 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from . import bom_route_current_stock 6 | -------------------------------------------------------------------------------- /helpdesk_contract/models/contract.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class ContractLine(models.Model): 5 | _inherit = "contract.line" 6 | 7 | partner_id = fields.Many2one( 8 | related="contract_id.partner_id", store=True, readonly=True) -------------------------------------------------------------------------------- /wiki_documentation/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2017 Mackilem Van der Laan, Trustcode 2 | # © 2018 Danimar Ribeiro, Trustcode 3 | # Part of Trustcode. See LICENSE file for full copyright and licensing details. 4 | 5 | 6 | from . import models 7 | from . import controllers 8 | -------------------------------------------------------------------------------- /stock_available/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2014 Numérigraphe 2 | # Copyright 2016 Sodexis 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 4 | 5 | from . import product_product 6 | from . import product_template 7 | from . import res_config_settings 8 | -------------------------------------------------------------------------------- /stock_available_immediately/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Normally the quantity available to promise is based on the virtual stock, 2 | which includes both planned outgoing and incoming goods. 3 | This module will subtract the planned receptions from the quantity available to 4 | promise. 5 | -------------------------------------------------------------------------------- /wiki_documentation/models/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2017 Mackilem Van der Laan, Trustcode 2 | # © 2018 Danimar Ribeiro, Trustcode 3 | # Part of Trustcode. See LICENSE file for full copyright and licensing details. 4 | 5 | from . import documentation 6 | from . import documentation_category 7 | -------------------------------------------------------------------------------- /crm_customization/models/order.py: -------------------------------------------------------------------------------- 1 | from odoo import api, fields, models 2 | 3 | 4 | class SaleOrderLine(models.Model): 5 | _inherit ='sale.order.line' 6 | 7 | original_amount = fields.Monetary(string="Valor Devido") 8 | addition_amount = fields.Monetary(string="Valor Acrescido") -------------------------------------------------------------------------------- /ow_web_responsive/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dave Lasley 2 | * Jairo Llopis 3 | * Dennis Sluijk 4 | * Sergio Teruel 5 | * Alexandre Díaz 6 | * Mathias Markl 7 | -------------------------------------------------------------------------------- /payment_zoop/models/__init__.py: -------------------------------------------------------------------------------- 1 | # © 2020 Danimar Ribeiro, Trustcode 2 | # Part of Trustcode. See LICENSE file for full copyright and licensing details. 3 | 4 | from . import zoop 5 | from . import sale_order 6 | from . import account_journal 7 | from . import account_move 8 | from . import res_partner -------------------------------------------------------------------------------- /stock_available_unreserved/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Jordi Ballester Alomar 2 | * Stefan Rijnhart 3 | * Mykhailo Panarin 4 | * Atte Isopuro 5 | * Lois Rilo 6 | -------------------------------------------------------------------------------- /mrp_bom_location/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to *Manufacturing > Bill of Materials*. 4 | #. Pick or create one of them. 5 | #. You will see a new field to fill called "Location". 6 | #. On the structure report *BOM > Print > BOM Structure* location field is present 7 | -------------------------------------------------------------------------------- /stock_no_negative/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | When you validate a stock operation (a stock move, a picking, 2 | a manufacturing order, etc.) that will set the stock level of a 3 | stockable product as negative, you will be blocked by an error message. 4 | The consumable products can still have a negative stock level. 5 | -------------------------------------------------------------------------------- /stock_no_negative/models/__init__.py: -------------------------------------------------------------------------------- 1 | # ?? 2015-2016 Akretion (http://www.akretion.com) 2 | # @author Alexis de Lattre 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from . import product 6 | from . import stock_quant 7 | from . import stock_location 8 | -------------------------------------------------------------------------------- /stock_no_negative/readme/HISTORY.rst: -------------------------------------------------------------------------------- 1 | 13.0.1.0.0 (2020-01-03) 2 | ~~~~~~~~~~~~~~~~~~~~~~~ 3 | 4 | * [13.0][MIG] stock_no_negative 5 | Remove all decorators @api.multi 6 | 7 | 11.0.1.1.0 (2018-12-13) 8 | ~~~~~~~~~~~~~~~~~~~~~~~ 9 | 10 | * Add the ability to allow negative stock for individual stock locations. 11 | -------------------------------------------------------------------------------- /mrp_bom_location/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module adds the location field to the Bill of Materials and its components. This may be useful to distinguish between different BoMs for the same product or to highlight the preferred locations to fetch the components from. 2 | 3 | The location appears in the BOM Structure Report. 4 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Odoo SA 2 | * Alexis de Lattre 3 | * Laurent Mignon 4 | * Ronald Portier 5 | * Sylvain LE GAL 6 | * Nicolas JEUDY 7 | * Le Filament 8 | -------------------------------------------------------------------------------- /backend_theme_v13/models/res_company.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2016, 2019 Openworx 3 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). 4 | 5 | from odoo import models, fields 6 | 7 | class ResCompany(models.Model): 8 | 9 | _inherit = 'res.company' 10 | 11 | dashboard_background = fields.Binary(attachment=True) -------------------------------------------------------------------------------- /contract/data/sequences.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contract Sequence 5 | contract.sequence 6 | SUB/%(range_year)s/ 7 | 4 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mrp_bom_current_stock/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to *Manufacturing > Reporting > BoM Current Stock Explosion*. 4 | #. Select Product, BoM and location and click on *Explode*. 5 | #. Set the proper location (if desired) for all the components displayed if you 6 | haven't done so in the related BoMs. 7 | #. Click *Print Report*. 8 | -------------------------------------------------------------------------------- /contract/report/contract_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /stock_production_lot_active/models/stock_production_lot.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 ACSONE SA/NV 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class StockProductionLot(models.Model): 8 | _inherit = "stock.production.lot" 9 | 10 | active = fields.Boolean(string="Active", default=True) 11 | -------------------------------------------------------------------------------- /sentry/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | Once configured and installed, the module will report any logging event at and 2 | above the configured Sentry logging level, no additional actions are necessary. 3 | 4 | .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas 5 | :alt: Try me on Runbot 6 | :target: https://runbot.odoo-community.org/runbot/149/13.0 7 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module adds support for the import of bank statements in `OFX format `_. 2 | 3 | Bank Statements may be generated containing a subset of the OFX information (only those transaction lines that are required for the 4 | creation of the Financial Accounting records). 5 | -------------------------------------------------------------------------------- /boleto_cloud/models/wizard_new_payment.py: -------------------------------------------------------------------------------- 1 | from odoo import api, fields, models 2 | 3 | 4 | class WizardNewPaymentInvoice(models.TransientModel): 5 | _inherit = 'wizard.new.payment.invoice' 6 | 7 | def action_generate_new_payment(self): 8 | super(WizardNewPaymentInvoice, self).action_generate_new_payment() 9 | self.move_id.generate_boleto_cloud_transactions() -------------------------------------------------------------------------------- /boleto_cloud/models/account_journal.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class AccountJournal(models.Model): 5 | _inherit = 'account.journal' 6 | 7 | use_boleto_cloud = fields.Boolean('Usar Boleto Cloud') 8 | boleto_cloud_bank_account_api_key = fields.Char('Chave API da Conta') 9 | instrucoes = fields.Char('Instruções do Boleto') 10 | 11 | 12 | -------------------------------------------------------------------------------- /contract/models/account_move_line.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 ACSONE SA/NV. 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class AccountMoveLine(models.Model): 8 | _inherit = 'account.move.line' 9 | 10 | contract_line_id = fields.Many2one( 11 | 'contract.line', string='Contract Line', index=True 12 | ) -------------------------------------------------------------------------------- /stock_no_negative/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Alexis de Lattre 2 | * Eficent Business and IT Consulting Services S.L. 3 | * Jordi Ballester 4 | * Serpent Consulting Services Pvt. Ltd. 5 | * Tecnativa 6 | * Pedro M. Baeza 7 | * Spacefoot 8 | * Quentin Delcourte 9 | -------------------------------------------------------------------------------- /payment_zoop/models/account_journal.py: -------------------------------------------------------------------------------- 1 | # © 2020 Danimar Ribeiro, Trustcode 2 | # Part of Trustcode. See LICENSE file for full copyright and licensing details. 3 | 4 | from odoo import fields, models 5 | 6 | class AccountJournal(models.Model): 7 | _inherit = 'account.journal' 8 | 9 | payment_acquirer_id = fields.Many2one("payment.acquirer", string="Provedor de pagamento") 10 | 11 | -------------------------------------------------------------------------------- /wordpress_form_submission/__manifest__.py: -------------------------------------------------------------------------------- 1 | { 2 | 'name': 'Wordpress Form Submission', 3 | 'version': '13.0.1.0.1', 4 | 'category': 'Document Management', 5 | 'author': 'Trustcode', 6 | 'website': 'https://www.trustcode.com.br', 7 | 'contributors': [ 8 | 'Danimar Ribeiro ' 9 | ], 10 | 'depends': [ 11 | 'crm', 12 | ], 13 | } 14 | -------------------------------------------------------------------------------- /contract/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import abstract_contract 4 | from . import abstract_contract_line 5 | from . import contract_template 6 | from . import contract 7 | from . import contract_template_line 8 | from . import contract_line 9 | from . import account_move_line 10 | from . import account_move 11 | from . import res_partner 12 | -------------------------------------------------------------------------------- /sentry/i18n/sentry.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 13.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /backend_theme_v13/static/src/img/home-menu-bg-overlay.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /stock_no_negative/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # ?? 2015-2016 Akretion (http://www.akretion.com) 2 | # @author Alexis de Lattre 3 | # ?? 2016 Eficent Business and IT Consulting Services S.L. 4 | # (http://www.eficent.com) 5 | # ?? 2016 Serpent Consulting Services Pvt. Ltd. () 6 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 7 | 8 | from . import test_stock_no_negative 9 | -------------------------------------------------------------------------------- /account_bank_statement_import_ofx/models/account_journal.py: -------------------------------------------------------------------------------- 1 | from odoo import models 2 | 3 | 4 | class AccountJournal(models.Model): 5 | _inherit = "account.journal" 6 | 7 | def _get_bank_statements_available_import_formats(self): 8 | """ Adds ofx to supported import formats. 9 | """ 10 | rslt = super()._get_bank_statements_available_import_formats() 11 | rslt.append("ofx") 12 | return rslt 13 | -------------------------------------------------------------------------------- /stock_available_immediately/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Author: Guewen Baconnier (Camptocamp SA) 2 | * Sébastien BEAU (Akretion) 3 | * Lionel Sausin (Numérigraphe) 4 | * Sodexis 5 | * Cédric Pigeon 6 | * Sergio Díaz 7 | * `Tecnativa `_: 8 | 9 | * Pedro M. Baeza 10 | * Víctor Martínez 11 | -------------------------------------------------------------------------------- /contract/models/account_move.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 ACSONE SA/NV. 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class AccountMove(models.Model): 8 | _inherit = 'account.move' 9 | 10 | contract_id = fields.Many2one('contract.contract', string='Generated by contract', index=True,) #readonly=True) # with readonly=True there are not imported in import/export 11 | 12 | 13 | -------------------------------------------------------------------------------- /stock_available_mrp/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Loïc Bellier (Numérigraphe) 2 | * Lionel Sausin (Numérigraphe) 3 | * many thanks to Graeme Gellatly for his advice and code review 4 | * Laurent Mignon 5 | * Cédric Pigeon 6 | * Florian da Costa 7 | 8 | * `Tecnativa `_: 9 | 10 | * Víctor Martínez 11 | -------------------------------------------------------------------------------- /boleto_cloud/views/account_move.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | account.move 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /marketing_integration/views/mailing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | mailing.mailing 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sentry/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: zh_CN\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | -------------------------------------------------------------------------------- /payment_zoop/views/account_journal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | account.journal 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /stock_available_mrp/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module takes the potential quantities available for Products into account in 2 | the quantity available to promise, where the "Potential quantity" is the 3 | quantity that can be manufactured with the components immediately at hand. 4 | By configuration, the "Potential quantity" can be computed based on other product field. 5 | For example, "Potential quantity" can be the quantity that can be manufactured 6 | with the components available to promise. 7 | -------------------------------------------------------------------------------- /ow_web_responsive/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * To view the full experience in a device, the page must be loaded with the 2 | device screen size. This means that, if you change the size of your browser, 3 | you should reload the web client to get the full experience for that 4 | new size. This is Odoo's own limitation. 5 | * App navigation with keyboard. 6 | * Make it more beautiful. Maybe OCA-branded? 7 | * The button for manage list view columns dissapears when scroll because 8 | can't have sticky position. 9 | -------------------------------------------------------------------------------- /base_accounting_kit/data/followup_levels.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reminder 6 | 5 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /base_accounting_kit/views/account_asset_templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |