diff --git a/website_sale_auto_backend/README.rst b/website_sale_auto_backend/README.rst new file mode 100644 index 000000000..92cb2d4ba --- /dev/null +++ b/website_sale_auto_backend/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Website Sale Order Automated Workflow +===================================== +Website Sale Order Automated Workflow + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Noorjahan @cybrosys + +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 100644 index 000000000..b9911436e --- /dev/null +++ b/website_sale_auto_backend/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models +from . import controllers diff --git a/website_sale_auto_backend/__manifest__.py b/website_sale_auto_backend/__manifest__.py new file mode 100644 index 000000000..eb5652bc3 --- /dev/null +++ b/website_sale_auto_backend/__manifest__.py @@ -0,0 +1,43 @@ +## -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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': '15.0.1.0.0', + 'summary': """Manage Website Orders Workflow Automatically""", + 'description': """Manage Website Orders Workflow Automatically""", + 'category': 'Sale', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['website_sale'], + 'website': 'https://www.cybrosys.com', + 'data': [ + 'views/views.xml', + 'views/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 100644 index 000000000..d912e7cc8 --- /dev/null +++ b/website_sale_auto_backend/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 main diff --git a/website_sale_auto_backend/controllers/main.py b/website_sale_auto_backend/controllers/main.py new file mode 100644 index 000000000..3ab19bc0c --- /dev/null +++ b/website_sale_auto_backend/controllers/main.py @@ -0,0 +1,115 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 . +# +############################################################################# +import logging + +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 +_logger = logging.getLogger(__name__) + + +class WebsiteSalePayment(WebsiteSale): + @http.route('/shop/payment/validate', type='http', auth="public", + website=True, sitemap=False) + def shop_payment_validate(self, transaction_id=None, sale_order_id=None, + **post): + """ Method that should be called by the server when receiving an update + for a transaction. State at this point : + + - UDPATE ME + """ + if sale_order_id is None: + order = request.website.sale_get_order() + else: + order = request.env['sale.order'].sudo().browse(sale_order_id) + assert order.id == request.session.get('sale_last_order_id') + + if transaction_id: + tx = request.env['payment.transaction'].sudo().browse( + transaction_id) + assert tx in order.transaction_ids() + elif order: + tx = order.get_portal_last_transaction() + else: + tx = None + + 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() + # 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() + # 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() + # 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.acquirer_id.provider != '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/changelog.md b/website_sale_auto_backend/doc/changelog.md new file mode 100644 index 000000000..695977e3c --- /dev/null +++ b/website_sale_auto_backend/doc/changelog.md @@ -0,0 +1,10 @@ +## Module + +#### 21.07.2022 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit + + + + diff --git a/website_sale_auto_backend/models/__init__.py b/website_sale_auto_backend/models/__init__.py new file mode 100644 index 000000000..9d6ace709 --- /dev/null +++ b/website_sale_auto_backend/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models diff --git a/website_sale_auto_backend/models/models.py b/website_sale_auto_backend/models/models.py new file mode 100644 index 000000000..57481b628 --- /dev/null +++ b/website_sale_auto_backend/models/models.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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): + _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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/logo.png b/website_sale_auto_backend/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/icons/logo.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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/modules/budget_image.png b/website_sale_auto_backend/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/budget_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/credit_image.png b/website_sale_auto_backend/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/credit_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/employee_image.png b/website_sale_auto_backend/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/employee_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/export_image.png b/website_sale_auto_backend/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/export_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/gantt_image.png b/website_sale_auto_backend/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/gantt_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/modules/quotation_image.png b/website_sale_auto_backend/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/modules/quotation_image.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-1.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-1.png new file mode 100644 index 000000000..ce9296dac Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-1.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-10.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-10.png new file mode 100644 index 000000000..3b4da4b6d Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-10.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-11.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-11.png new file mode 100644 index 000000000..496f6af27 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-11.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-12.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-12.png new file mode 100644 index 000000000..45a067b57 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-12.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-2.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-2.png new file mode 100644 index 000000000..0de9ac476 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-2.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-3.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-3.png new file mode 100644 index 000000000..06487f712 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-3.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-4.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-4.png new file mode 100644 index 000000000..950343967 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-4.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-5.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-5.png new file mode 100644 index 000000000..ead488b88 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-5.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-6.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-6.png new file mode 100644 index 000000000..f868ca4ba Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-6.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-7.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-7.png new file mode 100644 index 000000000..50c33c5e6 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-7.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-8.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-8.png new file mode 100644 index 000000000..52c41bba8 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-8.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend-9.png b/website_sale_auto_backend/static/description/assets/screenshots/backend-9.png new file mode 100644 index 000000000..90c431139 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend-9.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/backend.png b/website_sale_auto_backend/static/description/assets/screenshots/backend.png new file mode 100644 index 000000000..1795aee59 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/backend.png differ diff --git a/website_sale_auto_backend/static/description/assets/screenshots/hero.png b/website_sale_auto_backend/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..3d49bb526 Binary files /dev/null and b/website_sale_auto_backend/static/description/assets/screenshots/hero.png differ diff --git a/website_sale_auto_backend/static/description/banner.png b/website_sale_auto_backend/static/description/banner.png new file mode 100644 index 000000000..06bce8fc3 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 100644 index 000000000..056f44800 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 100644 index 000000000..bf400045c --- /dev/null +++ b/website_sale_auto_backend/static/description/index.html @@ -0,0 +1,582 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Website Sale Order Automated Workflow

+

+ Manage Website Orders Workflow Automatically +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ A module for managing the website orders automatically.

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Website Order Configuration

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ Website Order Configuration under setting

+ +
+ +
+

+ 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 +

+ + + +
+
+ +
+
+

Suggested 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

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/website_sale_auto_backend/views/templates.xml b/website_sale_auto_backend/views/templates.xml new file mode 100644 index 000000000..81aafe857 --- /dev/null +++ b/website_sale_auto_backend/views/templates.xml @@ -0,0 +1,22 @@ + + + + \ No newline at end of file diff --git a/website_sale_auto_backend/views/views.xml b/website_sale_auto_backend/views/views.xml new file mode 100644 index 000000000..e8828a07e --- /dev/null +++ b/website_sale_auto_backend/views/views.xml @@ -0,0 +1,30 @@ + + + + res.config.settings.inherit + res.config.settings + + + +

Website Order Configuration

+
+
+
+
+
+
+
+
+
+
\ No newline at end of file