diff --git a/inter_company_synchronization/README.rst b/inter_company_synchronization/README.rst new file mode 100644 index 000000000..1d962ba3c --- /dev/null +++ b/inter_company_synchronization/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Inter Company Sale and Purchase Synchronization +=============================================== + This app allows us to synchronize the sale order and purchase order between 2 companies. + +Configuration +============= +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V15): Dhanya Babu Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/inter_company_synchronization/__init__.py b/inter_company_synchronization/__init__.py new file mode 100644 index 000000000..58d732b80 --- /dev/null +++ b/inter_company_synchronization/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import models diff --git a/inter_company_synchronization/__manifest__.py b/inter_company_synchronization/__manifest__.py new file mode 100644 index 000000000..7271ae005 --- /dev/null +++ b/inter_company_synchronization/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +{ + 'name': "Inter Company Sale and Purchase Synchronization", + 'version': '15.0.1.0.0', + 'category': 'Warehouse', + 'summary': "This module allows us to synchronize the SO and PO between" + "multi companies.", + 'description': "This module, available in Odoo 16's community version, " + "offers the invaluable capability to seamlessly synchronize" + "Sales Orders (SO) and Purchase Orders (PO) across multiple" + "companies. With this feature, businesses can efficiently " + "coordinate and manage their operations, even if they " + "operate in different company entities within the Odoo " + "ecosystem.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['purchase', 'sale_management', 'stock'], + 'data': [ + 'views/res_config_settings_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/inter_company_synchronization/doc/RELEASE_NOTES.md b/inter_company_synchronization/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..29237b323 --- /dev/null +++ b/inter_company_synchronization/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 06.12.2023 +#### Version 15.0.1.0.0 +#### ADD +-Initial Commit for Inter Company Sale and Purchase Synchronization diff --git a/inter_company_synchronization/models/__init__.py b/inter_company_synchronization/models/__init__.py new file mode 100644 index 000000000..34f96379a --- /dev/null +++ b/inter_company_synchronization/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import purchase_order +from . import res_config_settings +from . import sale_order diff --git a/inter_company_synchronization/models/purchase_order.py b/inter_company_synchronization/models/purchase_order.py new file mode 100644 index 000000000..1fbc6b266 --- /dev/null +++ b/inter_company_synchronization/models/purchase_order.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import models + + +class PurchaseOrder(models.Model): + """Inherited this model to create corresponding SO while creating PO""" + _inherit = 'purchase.order' + + def _create_sale_order(self): + """Creating sale order values to vendor company.""" + company_id = self.env['res.company'].search( + [('name', '=', self.partner_id.name)]) + sale_order_vals = { + 'partner_id': self.company_id.partner_id.id, + 'company_id': company_id.id, + 'client_order_ref': self.name, + 'order_line': [(0, 0, { + 'product_id': line.product_id.id, + 'product_uom_qty': line.product_qty, + 'price_unit': line.price_unit, + 'tax_id': [(6, 0, line.taxes_id.ids)], + 'price_subtotal': line.price_subtotal, + }) for line in self.order_line], + } + return self.env['sale.order'].sudo().create(sale_order_vals) + + def button_confirm(self): + """ Confirm the purchase order and create sale order i + n another company.""" + res = super(PurchaseOrder, self).button_confirm() + transit_locations = self.env['stock.location'].search( + [('active', '=', True), ('usage', '=', 'transit')]) + res_config_settings = self.env['res.config.settings'].search([]) + if (transit_locations and res_config_settings[-1].sale_purchase_sync and + not self.origin): + self._create_sale_order() + return res diff --git a/inter_company_synchronization/models/res_config_settings.py b/inter_company_synchronization/models/res_config_settings.py new file mode 100644 index 000000000..47814583f --- /dev/null +++ b/inter_company_synchronization/models/res_config_settings.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """Inherited the model to add the 'sale_purchase_sync' fields""" + _inherit = 'res.config.settings' + + sale_purchase_sync = fields.Boolean(string='Synchronization', + config_parameter='inter_company_synchronization.sale_purchase_sync', + help='Boolean field is use to enable ' + 'the inter company sale and ' + 'purchase synchronization') diff --git a/inter_company_synchronization/models/sale_order.py b/inter_company_synchronization/models/sale_order.py new file mode 100644 index 000000000..16cfe6bdf --- /dev/null +++ b/inter_company_synchronization/models/sale_order.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import models + + +class SaleOrder(models.Model): + """This class inherits from the 'sale.order' model and adds a + method to create a corresponding purchase order based on specific + conditions during order confirmation.""" + _inherit = 'sale.order' + + def _create_purchase_order(self): + """Create a purchase order based on the current sale order.""" + company_id = self.env['res.company'].search( + [('name', '=', self.partner_id.name)]) + purchase_order_vals = { + 'partner_id': self.company_id.partner_id.id, + 'company_id': company_id.id, + 'origin': self.name, + 'order_line': [(0, 0, { + 'product_id': line.product_id.id, + 'product_qty': line.product_uom_qty, + 'price_unit': line.price_unit, + 'price_subtotal': line.price_subtotal, + }) for line in self.order_line], + } + return self.env['purchase.order'].create(purchase_order_vals) + + def action_confirm(self): + """Confirm the sale order and create a purchase order if + conditions are met.""" + res = super(SaleOrder, self).action_confirm() + transit_locations = self.env['stock.location'].search( + [('active', '=', True), ('usage', '=', 'transit')]) + res_config_settings = self.env['res.config.settings'].search([]) + if (transit_locations and res_config_settings[-1].sale_purchase_sync and + not self.client_order_ref): + self._create_purchase_order() + return res diff --git a/inter_company_synchronization/static/description/assets/icons/check.png b/inter_company_synchronization/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/check.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/chevron.png b/inter_company_synchronization/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/chevron.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/cogs.png b/inter_company_synchronization/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/cogs.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/consultation.png b/inter_company_synchronization/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/consultation.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/ecom-black.png b/inter_company_synchronization/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/ecom-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/education-black.png b/inter_company_synchronization/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/education-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/hotel-black.png b/inter_company_synchronization/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/hotel-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/license.png b/inter_company_synchronization/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/license.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/lifebuoy.png b/inter_company_synchronization/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/lifebuoy.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/manufacturing-black.png b/inter_company_synchronization/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/manufacturing-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/pos-black.png b/inter_company_synchronization/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/pos-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/puzzle.png b/inter_company_synchronization/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/puzzle.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/restaurant-black.png b/inter_company_synchronization/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/restaurant-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/service-black.png b/inter_company_synchronization/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/service-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/trading-black.png b/inter_company_synchronization/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/trading-black.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/training.png b/inter_company_synchronization/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/training.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/update.png b/inter_company_synchronization/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/update.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/user.png b/inter_company_synchronization/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/user.png differ diff --git a/inter_company_synchronization/static/description/assets/icons/wrench.png b/inter_company_synchronization/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/inter_company_synchronization/static/description/assets/icons/wrench.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/categories.png b/inter_company_synchronization/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/categories.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/check-box.png b/inter_company_synchronization/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/check-box.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/compass.png b/inter_company_synchronization/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/compass.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/corporate.png b/inter_company_synchronization/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/corporate.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/customer-support.png b/inter_company_synchronization/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/customer-support.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/cybrosys-logo.png b/inter_company_synchronization/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/cybrosys-logo.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/features.png b/inter_company_synchronization/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/features.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/logo.png b/inter_company_synchronization/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/logo.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/pictures.png b/inter_company_synchronization/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/pictures.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/pie-chart.png b/inter_company_synchronization/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/pie-chart.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/right-arrow.png b/inter_company_synchronization/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/right-arrow.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/star.png b/inter_company_synchronization/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/star.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/support.png b/inter_company_synchronization/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/support.png differ diff --git a/inter_company_synchronization/static/description/assets/misc/whatsapp.png b/inter_company_synchronization/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/misc/whatsapp.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/1.png b/inter_company_synchronization/static/description/assets/modules/1.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/1.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/2.png b/inter_company_synchronization/static/description/assets/modules/2.png new file mode 100644 index 000000000..185c20635 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/2.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/3.png b/inter_company_synchronization/static/description/assets/modules/3.png new file mode 100644 index 000000000..65a3645b0 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/3.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/4.png b/inter_company_synchronization/static/description/assets/modules/4.png new file mode 100644 index 000000000..5f7b7d385 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/4.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/5.jpg b/inter_company_synchronization/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..3b6a99a25 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/5.jpg differ diff --git a/inter_company_synchronization/static/description/assets/modules/6.png b/inter_company_synchronization/static/description/assets/modules/6.png new file mode 100644 index 000000000..6172acac9 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/6.png differ diff --git a/inter_company_synchronization/static/description/assets/modules/7.jpg b/inter_company_synchronization/static/description/assets/modules/7.jpg new file mode 100644 index 000000000..5dd504562 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/modules/7.jpg differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/hero.gif b/inter_company_synchronization/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..04a917e8c Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/hero.gif differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/ii.png b/inter_company_synchronization/static/description/assets/screenshots/ii.png new file mode 100644 index 000000000..2f4c3bb4a Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/ii.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/inter1.png b/inter_company_synchronization/static/description/assets/screenshots/inter1.png new file mode 100644 index 000000000..b0f380e8a Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/inter1.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/inter2.png b/inter_company_synchronization/static/description/assets/screenshots/inter2.png new file mode 100644 index 000000000..692d49bb1 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/inter2.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/inter3.png b/inter_company_synchronization/static/description/assets/screenshots/inter3.png new file mode 100644 index 000000000..0117191d0 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/inter3.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/jul33.png b/inter_company_synchronization/static/description/assets/screenshots/jul33.png new file mode 100644 index 000000000..70935037c Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/jul33.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/july11.png b/inter_company_synchronization/static/description/assets/screenshots/july11.png new file mode 100644 index 000000000..8abb3f90c Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/july11.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/july22.png b/inter_company_synchronization/static/description/assets/screenshots/july22.png new file mode 100644 index 000000000..625abba44 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/july22.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/july44.png b/inter_company_synchronization/static/description/assets/screenshots/july44.png new file mode 100644 index 000000000..6085bdc29 Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/july44.png differ diff --git a/inter_company_synchronization/static/description/assets/screenshots/oo.png b/inter_company_synchronization/static/description/assets/screenshots/oo.png new file mode 100644 index 000000000..df1b8f02f Binary files /dev/null and b/inter_company_synchronization/static/description/assets/screenshots/oo.png differ diff --git a/inter_company_synchronization/static/description/banner.jpg b/inter_company_synchronization/static/description/banner.jpg new file mode 100644 index 000000000..077e227b4 Binary files /dev/null and b/inter_company_synchronization/static/description/banner.jpg differ diff --git a/inter_company_synchronization/static/description/icon.png b/inter_company_synchronization/static/description/icon.png new file mode 100644 index 000000000..bbbe7b83a Binary files /dev/null and b/inter_company_synchronization/static/description/icon.png differ diff --git a/inter_company_synchronization/static/description/index.html b/inter_company_synchronization/static/description/index.html new file mode 100644 index 000000000..5f1ff845d --- /dev/null +++ b/inter_company_synchronization/static/description/index.html @@ -0,0 +1,624 @@ +
+ +
+ +
+
+ Community +
+
+
+ +
+
+
+ +

+ Inter Company Sale and Purchase Synchronization

+

+ This App Allows Us To Synchronize The Sale And Purchase + Order + Between Multi Companies.

+ + +
+
+
+
+ +
+
+ +
+

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+ This module allow us to synchronize the sale and purchase order between + multi + companies. +
+
+
+
+
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community Support Only. +
+
+ + If we create a purchase order in one company the corresponding sale order created in vendor company. +
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Enable Multi Companies. +

+

+ +

+
+

+ Enable Multi Step Routes. +

+

+ + +

+
+

+ Enable Inter Company Transaction. +

+
+
+

+ Unarchived the Transit Location. +

+ + +
+

+ Create Sale order,Set the other company as a customer. +

+ +
+
+

+ Purchase order,will create on another company. +

+ +
+
+

+ Create Purchase order,Set the vendor as another company. +

+ +
+
+

+ Sale order,will create on another company. +

+ +
+
+
+ + +
+
+ +
+

+ Related + Products +

+
+
+
+ +
+
+ + +
+
+ +
+

+ Our Services +

+
+
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+
+ +
+

+ Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/inter_company_synchronization/views/res_config_settings_views.xml b/inter_company_synchronization/views/res_config_settings_views.xml new file mode 100644 index 000000000..54dea9a36 --- /dev/null +++ b/inter_company_synchronization/views/res_config_settings_views.xml @@ -0,0 +1,34 @@ + + + + + + res.config.settings.view.form.inherit.inter.company.sale.purchase.synchronization + + res.config.settings + + + + +

Inter Company Transactions

+
+
+
+ +
+
+
+
+
+
+
+
+