diff --git a/website_sale_auto_backend/README.rst b/website_sale_auto_backend/README.rst new file mode 100755 index 000000000..65dbcb861 --- /dev/null +++ b/website_sale_auto_backend/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Website Sale Order Automated Workflow +===================================== +Manage the website sales orders workflow automatically by choosing different options from the website settings + +Configuration +============= +* After installing this module, you need to configure the 'Website Order Configuration' in the +Website Settings menu. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: +(v15) Noorjahan NA, Contact: odoo@cybrosys.com +(v16) Javid A, 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/website_sale_auto_backend/__init__.py b/website_sale_auto_backend/__init__.py new file mode 100755 index 000000000..aabadb258 --- /dev/null +++ b/website_sale_auto_backend/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers +from . import models diff --git a/website_sale_auto_backend/__manifest__.py b/website_sale_auto_backend/__manifest__.py new file mode 100755 index 000000000..e15e14b9a --- /dev/null +++ b/website_sale_auto_backend/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Website Sale Order Automated Workflow", + 'version': '16.0.1.0.0', + 'category': 'eCommerce', + 'summary': """Automate the management of website sale order workflow""", + 'description': """Manage the website sales orders workflow automatically + by choosing different options from the website settings""", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['website_sale'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/payment_status_templates.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_sale_auto_backend/controllers/__init__.py b/website_sale_auto_backend/controllers/__init__.py new file mode 100755 index 000000000..f8540ea37 --- /dev/null +++ b/website_sale_auto_backend/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import website_sale_auto_backend diff --git a/website_sale_auto_backend/controllers/website_sale_auto_backend.py b/website_sale_auto_backend/controllers/website_sale_auto_backend.py new file mode 100755 index 000000000..4e6913a4d --- /dev/null +++ b/website_sale_auto_backend/controllers/website_sale_auto_backend.py @@ -0,0 +1,118 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http +from odoo.http import request +from odoo.addons.payment.controllers.post_processing import \ + PaymentPostProcessing +from odoo.addons.website_sale.controllers.main import WebsiteSale +import logging + +_logger = logging.getLogger(__name__) + + +class WebsiteSalePayment(WebsiteSale): + """ A class that represents the route when validating the order""" + + @http.route('/shop/payment/validate', type='http', auth="public", + website=True, sitemap=False) + def shop_payment_validate(self, sale_order_id=None, **post): + """ Method that should be called by the server when receiving an update + for a transaction. + """ + if sale_order_id is None: + order = request.website.sale_get_order() + if not order and 'sale_last_order_id' in request.session: + # Retrieve the last known order from the session if the + # session key `sale_order_id`was prematurely cleared. This + # is done to prevent the user from updating their cart after + # payment in case they don't return from payment through + # this route. + last_order_id = request.session['sale_last_order_id'] + order = request.env['sale.order'].sudo().browse( + last_order_id).exists() + else: + order = request.env['sale.order'].sudo().browse(sale_order_id) + assert order.id == request.session.get('sale_last_order_id') + tx = order.get_portal_last_transaction() + if not order or (order.amount_total and not tx): + return request.redirect('/shop') + if order and not order.amount_total and not tx: + order.with_context(send_email=True).action_confirm() + return request.redirect(order.get_portal_url()) + website_order_configuration = request.env[ + 'ir.config_parameter'].sudo().get_param( + 'website_sale_auto_backend.website_order_configuration') + if website_order_configuration == 'confirm_order': + if order.state in ('draft', 'sent'): + order.with_context(send_email=True).action_confirm() + elif website_order_configuration == 'confirm_order_create_inv': + if order.state in ('draft', 'sent'): + order.with_context(send_email=True).action_confirm() + order._force_lines_to_invoice_policy_order() + invoices = order._create_invoices() + order.invoice_status = 'invoiced' + # Setup access token in advance to avoid serialization failure + # between edi postprocessing of invoice and displaying the sale + # order on the portal + for invoice in invoices: + invoice._portal_ensure_token() + tx.invoice_ids = [(6, 0, invoices.ids)] + elif website_order_configuration == 'confirm_order_post_inv': + if order.state in ('draft', 'sent'): + order.with_context(send_email=True).action_confirm() + order._force_lines_to_invoice_policy_order() + invoices = order._create_invoices() + order.invoice_status = 'invoiced' + # Setup access token in advance to avoid serialization failure + # between edi postprocessing of invoice and displaying the sale + # order on the portal + for invoice in invoices: + invoice._portal_ensure_token() + invoice.action_post() + tx.invoice_ids = [(6, 0, invoices.ids)] + elif website_order_configuration == 'confirm_quotation_create_payment': + if order.state in ('draft', 'sent'): + order.with_context(send_email=True).action_confirm() + order._force_lines_to_invoice_policy_order() + invoices = order._create_invoices() + order.invoice_status = 'invoiced' + # Setup access token in advance to avoid serialization failure + # between edi postprocessing of invoice and displaying the sale + # order on the portal + for invoice in invoices: + invoice._portal_ensure_token() + invoice.action_post() + tx.invoice_ids = [(6, 0, invoices.ids)] + tx._set_done() + if tx.provider_id.name != 'Wire Transfer': + tx._create_payment() + else: + request.env['account.payment.register'].with_context( + active_ids=tx.invoice_ids.ids, + active_model='account.move').create( + {'payment_date': tx.last_state_change})._create_payments() + # clean context and session, then redirect to the confirmation page + request.website.sale_reset() + if tx and tx.state == 'draft': + return request.redirect('/shop') + PaymentPostProcessing.remove_transactions(tx) + return request.redirect('/shop/confirmation') diff --git a/website_sale_auto_backend/doc/RELEASE_NOTES.md b/website_sale_auto_backend/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..c1490d133 --- /dev/null +++ b/website_sale_auto_backend/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 05.01.2024 +#### Version 16.0.1.0.0 +#### ADD +- Initial Commit For Website Sale Order Automated Workflow diff --git a/website_sale_auto_backend/models/__init__.py b/website_sale_auto_backend/models/__init__.py new file mode 100755 index 000000000..45c7e98cc --- /dev/null +++ b/website_sale_auto_backend/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_config_settings diff --git a/website_sale_auto_backend/models/res_config_settings.py b/website_sale_auto_backend/models/res_config_settings.py new file mode 100755 index 000000000..274201d96 --- /dev/null +++ b/website_sale_auto_backend/models/res_config_settings.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Javid A() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """ + A class that inherits the existing transient model res.config.settings + """ + _inherit = 'res.config.settings' + + website_order_configuration = fields.Selection( + [('confirm_order', 'Confirm Quotation'), + ('confirm_order_create_inv', 'Confirm Quotation and Create Invoice'), + ('confirm_order_post_inv', 'Confirm Quotation and Validate Invoice'), + ('confirm_quotation_create_payment', + 'Confirm Quotation, Validate Invoice and Create Payment')], + string='Website Order Configuration', + default='confirm_order', + help="Option to choose the automatic workflow of website sale order", + config_parameter='website_sale_auto_backend.website_order_configuration') diff --git a/website_sale_auto_backend/static/description/assets/icons/check.png b/website_sale_auto_backend/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/check.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/chevron.png b/website_sale_auto_backend/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/chevron.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/cogs.png b/website_sale_auto_backend/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/cogs.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/consultation.png b/website_sale_auto_backend/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/consultation.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/ecom-black.png b/website_sale_auto_backend/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/ecom-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/education-black.png b/website_sale_auto_backend/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/education-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/hotel-black.png b/website_sale_auto_backend/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/hotel-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/license.png b/website_sale_auto_backend/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/license.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/lifebuoy.png b/website_sale_auto_backend/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/lifebuoy.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/manufacturing-black.png b/website_sale_auto_backend/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/pos-black.png b/website_sale_auto_backend/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/pos-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/puzzle.png b/website_sale_auto_backend/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/puzzle.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/restaurant-black.png b/website_sale_auto_backend/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/restaurant-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/service-black.png b/website_sale_auto_backend/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/service-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/trading-black.png b/website_sale_auto_backend/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/trading-black.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/training.png b/website_sale_auto_backend/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/training.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/update.png b/website_sale_auto_backend/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/update.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/user.png b/website_sale_auto_backend/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/user.png differ diff --git a/website_sale_auto_backend/static/description/assets/icons/wrench.png b/website_sale_auto_backend/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/wrench.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/categories.png b/website_sale_auto_backend/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/categories.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/check-box.png b/website_sale_auto_backend/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/check-box.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/compass.png b/website_sale_auto_backend/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/compass.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/corporate.png b/website_sale_auto_backend/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/corporate.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/customer-support.png b/website_sale_auto_backend/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/customer-support.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/cybrosys-logo.png b/website_sale_auto_backend/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/cybrosys-logo.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/features.png b/website_sale_auto_backend/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/features.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/logo.png b/website_sale_auto_backend/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/logo.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/pictures.png b/website_sale_auto_backend/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/pictures.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/pie-chart.png b/website_sale_auto_backend/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/pie-chart.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/right-arrow.png b/website_sale_auto_backend/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/right-arrow.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/star.png b/website_sale_auto_backend/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/star.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/support.png b/website_sale_auto_backend/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/support.png differ diff --git a/website_sale_auto_backend/static/description/assets/misc/whatsapp.png b/website_sale_auto_backend/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/misc/whatsapp.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/1.png b/website_sale_auto_backend/static/description/assets/modules/1.png new file mode 100755 index 000000000..dda9b96e1 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/1.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/2.png b/website_sale_auto_backend/static/description/assets/modules/2.png new file mode 100755 index 000000000..df65629bf Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/2.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/3.png b/website_sale_auto_backend/static/description/assets/modules/3.png new file mode 100755 index 000000000..fa478cd14 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/3.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/4.jpg b/website_sale_auto_backend/static/description/assets/modules/4.jpg new file mode 100755 index 000000000..793b14f11 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/4.jpg differ diff --git a/website_sale_auto_backend/static/description/assets/modules/5.jpg b/website_sale_auto_backend/static/description/assets/modules/5.jpg new file mode 100755 index 000000000..acf97a878 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/5.jpg differ diff --git a/website_sale_auto_backend/static/description/assets/modules/6.jpg b/website_sale_auto_backend/static/description/assets/modules/6.jpg new file mode 100755 index 000000000..291635d04 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/6.jpg differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/01.png b/website_sale_auto_backend/static/description/assets/screenshots/01.png new file mode 100755 index 000000000..a3fbffe3f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/01.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/02.png b/website_sale_auto_backend/static/description/assets/screenshots/02.png new file mode 100755 index 000000000..4f90ea3ae Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/02.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/03.png b/website_sale_auto_backend/static/description/assets/screenshots/03.png new file mode 100755 index 000000000..45383b0bd Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/03.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/04.png b/website_sale_auto_backend/static/description/assets/screenshots/04.png new file mode 100755 index 000000000..1f74e6505 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/04.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/05.png b/website_sale_auto_backend/static/description/assets/screenshots/05.png new file mode 100755 index 000000000..a81785817 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/05.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/06.png b/website_sale_auto_backend/static/description/assets/screenshots/06.png new file mode 100755 index 000000000..54d6f7c79 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/06.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/07.png b/website_sale_auto_backend/static/description/assets/screenshots/07.png new file mode 100755 index 000000000..bf3bfd6bf Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/07.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/08.png b/website_sale_auto_backend/static/description/assets/screenshots/08.png new file mode 100755 index 000000000..03677064b Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/08.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/09.png b/website_sale_auto_backend/static/description/assets/screenshots/09.png new file mode 100755 index 000000000..5789c3c69 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/09.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/10.png b/website_sale_auto_backend/static/description/assets/screenshots/10.png new file mode 100755 index 000000000..e30cc96a4 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/10.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/11.png b/website_sale_auto_backend/static/description/assets/screenshots/11.png new file mode 100755 index 000000000..2cb1954e5 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/11.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/12.png b/website_sale_auto_backend/static/description/assets/screenshots/12.png new file mode 100755 index 000000000..560460fdf Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/12.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/13.png b/website_sale_auto_backend/static/description/assets/screenshots/13.png new file mode 100755 index 000000000..7f6539a97 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/13.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/website-sale-order-automated-workflow-gif.gif b/website_sale_auto_backend/static/description/assets/screenshots/website-sale-order-automated-workflow-gif.gif new file mode 100755 index 000000000..f7c6ef2a9 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/website-sale-order-automated-workflow-gif.gif differ diff --git a/website_sale_auto_backend/static/description/banner.png b/website_sale_auto_backend/static/description/banner.png new file mode 100755 index 000000000..6b69ff76b Binary files /dev/null and b/website_sale_auto_backend/static/description/banner.png differ diff --git a/website_sale_auto_backend/static/description/icon.png b/website_sale_auto_backend/static/description/icon.png new file mode 100755 index 000000000..b486a9da1 Binary files /dev/null and b/website_sale_auto_backend/static/description/icon.png differ diff --git a/website_sale_auto_backend/static/description/index.html b/website_sale_auto_backend/static/description/index.html new file mode 100755 index 000000000..dc23491c4 --- /dev/null +++ b/website_sale_auto_backend/static/description/index.html @@ -0,0 +1,603 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Website Sale Order Automated Workflow

+

Automate the Management of Website Sale Order Workflow

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ Manage the website sales orders workflow automatically by Confirming the Quotation or + Confirming the Quotation and Creating the Invoice or Confirming the Quotation and Validating the Invoice or + Confirming the Quotation, Validating the Invoice and Creating the Payment. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + + Automate Order to Confirm Quotation +
+
+ + + Automate Order to Confirm Quotation and Create Invoice +
+
+ + + Automate Order to Confirm Quotation and Validate Invoice +
+
+ + + Automate Order to Confirm Quotation, Validate Invoice and Create Payment +
+ + +
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Website Order Configuration under setting +

+

Automatically confirms the order when an order is placed from website

+ +
+ +
+

Confirm Quotation Option +

+

Automatically confirms the order when an order is placed from website

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

Confirm Quotation and Create Invoice Option +

+

Automatically confirms the order and create invoice when an order is placed from website

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

Confirm Quotation and Validate Invoice Option +

+

Automatically confirms the order and validate the invoice when an order is placed from website

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

Confirm Quotation, Validate Invoice and Create Payment Option +

+

The payment has been validated

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

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

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/website_sale_auto_backend/views/payment_status_templates.xml b/website_sale_auto_backend/views/payment_status_templates.xml new file mode 100755 index 000000000..2a5104fdd --- /dev/null +++ b/website_sale_auto_backend/views/payment_status_templates.xml @@ -0,0 +1,28 @@ + + + + + diff --git a/website_sale_auto_backend/views/res_config_settings_views.xml b/website_sale_auto_backend/views/res_config_settings_views.xml new file mode 100755 index 000000000..7562a4c59 --- /dev/null +++ b/website_sale_auto_backend/views/res_config_settings_views.xml @@ -0,0 +1,35 @@ + + + + + + res.config.settings.view.form.inherit.website.sale.auto.backend + + res.config.settings + + + +

Website Order Configuration

+
+
+
+
+
+
+
+
+
+