diff --git a/shopping_through_agent/README.rst b/shopping_through_agent/README.rst new file mode 100644 index 000000000..bb5e9be65 --- /dev/null +++ b/shopping_through_agent/README.rst @@ -0,0 +1,47 @@ +.. 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 + +Shopping Through Agent +====================== +This module enables agent to create sale orders on a website shop +on behalf of the customer. + +Configuration +============= +No additional configuration needed. + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer : (V18) Ashok P K + 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/shopping_through_agent/__init__.py b/shopping_through_agent/__init__.py new file mode 100644 index 000000000..cd71b0c6e --- /dev/null +++ b/shopping_through_agent/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from . import controllers +from . import models diff --git a/shopping_through_agent/__manifest__.py b/shopping_through_agent/__manifest__.py new file mode 100644 index 000000000..24275d785 --- /dev/null +++ b/shopping_through_agent/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +{ + 'name': 'Shopping Through Agent', + 'version': '18.0.1.0.0', + 'category': 'eCommerce', + 'summary': 'Agent can shop onbehalf of the customer.', + 'description': "Enables agent to create sale orders on a website shop on " + "behalf of the customer.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['website_sale', 'sale_management'], + 'data': [ + 'data/website_menu_data.xml', + 'views/res_partner_views.xml', + 'views/sale_order_views.xml', + 'views/account_move_views.xml', + 'views/agent_shop_template.xml', + 'views/sale_order_portal_template.xml', + 'views/invoice_report_template.xml', + 'views/sale_order_report_template.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/shopping_through_agent/controllers/__init__.py b/shopping_through_agent/controllers/__init__.py new file mode 100644 index 000000000..7f072d481 --- /dev/null +++ b/shopping_through_agent/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from . import shopping_through_agent +from . import website_sale diff --git a/shopping_through_agent/controllers/shopping_through_agent.py b/shopping_through_agent/controllers/shopping_through_agent.py new file mode 100644 index 000000000..3811fe2fc --- /dev/null +++ b/shopping_through_agent/controllers/shopping_through_agent.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo.http import Controller, request, route + + +class Agent(Controller): + """Class for the function to render a new page""" + @route(route='/agent/shop', auth='user', website=True) + def agent(self): + """Function to pass the data to shop and also to clearing the cart""" + customer_ids = request.env['res.partner'].search( + [('agent_id', '=', request.env.user.partner_id.id)]) + return request.render('shopping_through_agent.agent_shop_template', + {'customer_ids': customer_ids}) diff --git a/shopping_through_agent/controllers/website_sale.py b/shopping_through_agent/controllers/website_sale.py new file mode 100644 index 000000000..b78178472 --- /dev/null +++ b/shopping_through_agent/controllers/website_sale.py @@ -0,0 +1,153 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo.addons.payment.controllers import portal as payment_portal +from odoo.http import request + + +class WebsiteSale(payment_portal.PaymentPortal): + """Class to inherit the functions in the website sale""" + + def shop(self, page=0, category=None, search='', min_price=0.0, + max_price=0.0, ppg=False, **post): + """Function to inherit shop and to set the posted value in the + website session.""" + res = super().shop(page, category, search, min_price, + max_price, ppg, **post) + order = request.website.sale_get_order() + if 'post_values' in request.session: + stored_post_values = request.session['post_values'] + if stored_post_values != post and post: + order.unlink() + if post: + request.session['post_values'] = post + return res + + def cart(self, access_token=None, revive='', **post): + """Function to update the address from cart when the sale order is + created""" + res = super().cart(access_token, revive, **post) + if 'post_values' in request.session: + post_values = request.session['post_values'] + order = request.website.sale_get_order() + if post_values: + customer_id = post_values.get('customer') + if customer_id: + customer = request.env['res.partner'].browse( + int(customer_id)) + order.update({ + 'partner_id': customer, + 'partner_invoice_id': customer, + 'partner_shipping_id': customer, + 'agent_id': request.env.user.partner_id.id + if request.env.user.partner_id.is_agent else '' + }) + return res + + def _get_shop_payment_values(self, order, **kwargs): + """Function to update the sale order details created from website""" + res = super()._get_shop_payment_values(order, **kwargs) + if 'post_values' in request.session: + post_values = request.session['post_values'] + if post_values: + customer_id = post_values.get('customer') + if customer_id: + customer = request.env['res.partner'].browse( + int(customer_id)) + website_sale_order = res.get('website_sale_order', {}) + website_sale_order.update({ + 'partner_id': customer.id, + 'partner_invoice_id': customer.id, + 'partner_shipping_id': customer.id, + 'agent_id': request.env.user.partner_id.id + if request.env.user.partner_id.is_agent else '', + }) + res.update({ + 'partner': customer, + 'partner_id': customer.id, + 'website_sale_order': website_sale_order, + }) + return res + + def _prepare_shop_payment_confirmation_values(self, order): + """ + This method is called in the payment process route in order to + prepare the dict containing the values to be rendered by the + confirmation template. + """ + res = super()._prepare_shop_payment_confirmation_values(order) + if 'post_values' in request.session: + post_values = request.session['post_values'] + if post_values: + customer_id = post_values.get('customer') + if customer_id: + customer = request.env['res.partner'].browse( + int(customer_id)) + order.update({ + 'partner_id': customer.id, + 'partner_invoice_id': customer.id, + 'partner_shipping_id': customer.id, + }) + return res + + def checkout_values(self, order, **kw): + """Updating the billing and shipping address based on customer""" + res = super().checkout_values(order, **kw) + if 'post_values' in request.session: + post_values = request.session['post_values'] + if post_values: + customer_id = post_values.get('customer') + if customer_id: + customer = request.env['res.partner'].browse( + int(customer_id)) + res.update({ + 'shippings': customer, + 'billings': customer, + }) + return res + + def shop_payment_confirmation(self, **post): + """Function to remove the values of post_values from the session.""" + res = super().shop_payment_confirmation(**post) + request.session['post_values'] = {} + return res + + +class PaymentPortal(payment_portal.PaymentPortal): + """Class to inherit the function to change the details of the + transactions.""" + def shop_payment_transaction(self, order_id, access_token, **kwargs): + """Function to change the order details for delivery and invoice""" + res = super().shop_payment_transaction(order_id, access_token, **kwargs) + order_id = request.env['sale.order'].browse(int(order_id)) + if 'post_values' in request.session: + post_values = request.session['post_values'] + if post_values: + customer_id = post_values.get('customer') + if customer_id: + customer = request.env['res.partner'].browse( + int(customer_id)) + order_id.update({ + 'partner_id': customer.id, + 'partner_invoice_id': customer.id, + 'partner_shipping_id': customer.id, + }) + return res diff --git a/shopping_through_agent/data/website_menu_data.xml b/shopping_through_agent/data/website_menu_data.xml new file mode 100644 index 000000000..bace17516 --- /dev/null +++ b/shopping_through_agent/data/website_menu_data.xml @@ -0,0 +1,10 @@ + + + + + Agent Shop + /agent/shop + + 10 + + diff --git a/shopping_through_agent/doc/RELEASE_NOTES.md b/shopping_through_agent/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..6aeef7684 --- /dev/null +++ b/shopping_through_agent/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 22.11.2024 +#### Version 18.0.1.0.0 +#### ADD + +- Initial Commit for Shopping Through Agent diff --git a/shopping_through_agent/models/__init__.py b/shopping_through_agent/models/__init__.py new file mode 100644 index 000000000..7b14aba2a --- /dev/null +++ b/shopping_through_agent/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from . import account_move +from . import res_partner +from . import sale_order +from . import website_menu diff --git a/shopping_through_agent/models/account_move.py b/shopping_through_agent/models/account_move.py new file mode 100644 index 000000000..209aef189 --- /dev/null +++ b/shopping_through_agent/models/account_move.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo import fields, models + + +class AccountMove(models.Model): + """Class to add the field in invoice""" + _inherit = 'account.move' + + agent_id = fields.Many2one(comodel_name='res.partner', string='Agent', + help='Select an agent for the customer') diff --git a/shopping_through_agent/models/res_partner.py b/shopping_through_agent/models/res_partner.py new file mode 100644 index 000000000..5d7560827 --- /dev/null +++ b/shopping_through_agent/models/res_partner.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class ResPartner(models.Model): + """Class to add the fields in partner form""" + _inherit = 'res.partner' + + agent_id = fields.Many2one(comodel_name='res.partner', string='Agent', + help='Select an agent for the customer to ' + 'allow agent can create sale order for ' + 'the customer') + is_agent = fields.Boolean(string='Is Agent', + help='Enable if this person is a agent', + default=False) + + @api.onchange('is_agent') + def _onchange_agent(self): + """On change function for the agent field""" + if not self.is_agent: + self.agent_id = '' + self.search([('agent_id', '=', self.name)]).write({'agent_id': ''}) diff --git a/shopping_through_agent/models/sale_order.py b/shopping_through_agent/models/sale_order.py new file mode 100644 index 000000000..753bdeb12 --- /dev/null +++ b/shopping_through_agent/models/sale_order.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo import fields, models + + +class SaleOrder(models.Model): + """Class to add the field in sale order""" + _inherit = 'sale.order' + + agent_id = fields.Many2one( + 'res.partner', 'Agent', + help='Select a agent for the customer') + + def _prepare_invoice(self): + """Function to update the agent_id field in invoice based on the sale + order""" + res = super()._prepare_invoice() + res['agent_id'] = self.agent_id.id + return res diff --git a/shopping_through_agent/models/website_menu.py b/shopping_through_agent/models/website_menu.py new file mode 100644 index 000000000..887f5ffaa --- /dev/null +++ b/shopping_through_agent/models/website_menu.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ashok PK (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +from odoo import models + + +class WebsiteMenu(models.Model): + """Class to add a function for menu visibility""" + _inherit = 'website.menu' + + def _compute_visible(self): + """Compute menu invisible for customer and visible for agent""" + super()._compute_visible() + self.env.registry.clear_cache('templates') + for menu in self: + visible = True + if menu.name == 'Agent Shop': + if not menu.env.user.partner_id.is_agent: + visible = False + menu.is_visible = visible diff --git a/shopping_through_agent/static/description/assets/cybro-icon.png b/shopping_through_agent/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/shopping_through_agent/static/description/assets/cybro-icon.png differ diff --git a/shopping_through_agent/static/description/assets/cybro-odoo.png b/shopping_through_agent/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/shopping_through_agent/static/description/assets/cybro-odoo.png differ diff --git a/shopping_through_agent/static/description/assets/h2.png b/shopping_through_agent/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/shopping_through_agent/static/description/assets/h2.png differ diff --git a/shopping_through_agent/static/description/assets/icons/arrows-repeat.svg b/shopping_through_agent/static/description/assets/icons/arrows-repeat.svg new file mode 100755 index 000000000..1d7efabc5 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-1.png b/shopping_through_agent/static/description/assets/icons/banner-1.png new file mode 100755 index 000000000..c180db172 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/banner-1.png differ diff --git a/shopping_through_agent/static/description/assets/icons/banner-2.svg b/shopping_through_agent/static/description/assets/icons/banner-2.svg new file mode 100755 index 000000000..e606d97d9 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-bg.png b/shopping_through_agent/static/description/assets/icons/banner-bg.png new file mode 100755 index 000000000..a8238d3c0 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/banner-bg.png differ diff --git a/shopping_through_agent/static/description/assets/icons/banner-bg.svg b/shopping_through_agent/static/description/assets/icons/banner-bg.svg new file mode 100755 index 000000000..b1378103e --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-call.svg b/shopping_through_agent/static/description/assets/icons/banner-call.svg new file mode 100755 index 000000000..96c687e81 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-mail.svg b/shopping_through_agent/static/description/assets/icons/banner-mail.svg new file mode 100755 index 000000000..cbf0d158d --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-pattern.svg b/shopping_through_agent/static/description/assets/icons/banner-pattern.svg new file mode 100755 index 000000000..9c1c7e101 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/banner-promo.svg b/shopping_through_agent/static/description/assets/icons/banner-promo.svg new file mode 100755 index 000000000..d52791b11 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/brand-pair.svg b/shopping_through_agent/static/description/assets/icons/brand-pair.svg new file mode 100755 index 000000000..d8db7fc1e --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/check.png b/shopping_through_agent/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/check.png differ diff --git a/shopping_through_agent/static/description/assets/icons/chevron.png b/shopping_through_agent/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/chevron.png differ diff --git a/shopping_through_agent/static/description/assets/icons/close-icon.svg b/shopping_through_agent/static/description/assets/icons/close-icon.svg new file mode 100755 index 000000000..df8cce37a --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/cogs.png b/shopping_through_agent/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/cogs.png differ diff --git a/shopping_through_agent/static/description/assets/icons/collabarate-icon.svg b/shopping_through_agent/static/description/assets/icons/collabarate-icon.svg new file mode 100755 index 000000000..dd4e10518 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/shopping_through_agent/static/description/assets/icons/consultation.png b/shopping_through_agent/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/consultation.png differ diff --git a/shopping_through_agent/static/description/assets/icons/cybro-logo.png b/shopping_through_agent/static/description/assets/icons/cybro-logo.png new file mode 100755 index 000000000..ff4b78220 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/cybro-logo.png differ diff --git a/shopping_through_agent/static/description/assets/icons/down.svg b/shopping_through_agent/static/description/assets/icons/down.svg new file mode 100755 index 000000000..f21c36271 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/shopping_through_agent/static/description/assets/icons/ecom-black.png b/shopping_through_agent/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/ecom-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/education-black.png b/shopping_through_agent/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/education-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/faq.png b/shopping_through_agent/static/description/assets/icons/faq.png new file mode 100755 index 000000000..4250b5b81 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/faq.png differ diff --git a/shopping_through_agent/static/description/assets/icons/feature-icon.svg b/shopping_through_agent/static/description/assets/icons/feature-icon.svg new file mode 100755 index 000000000..fa0ea6850 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/feature.png b/shopping_through_agent/static/description/assets/icons/feature.png new file mode 100755 index 000000000..ac7a785c0 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/feature.png differ diff --git a/shopping_through_agent/static/description/assets/icons/gear.svg b/shopping_through_agent/static/description/assets/icons/gear.svg new file mode 100755 index 000000000..0cc66b6ea --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/hero.gif b/shopping_through_agent/static/description/assets/icons/hero.gif new file mode 100755 index 000000000..380654dfe Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/hero.gif differ diff --git a/shopping_through_agent/static/description/assets/icons/hire-odoo.svg b/shopping_through_agent/static/description/assets/icons/hire-odoo.svg new file mode 100755 index 000000000..e1ac089b0 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/hotel-black.png b/shopping_through_agent/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/hotel-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/license.png b/shopping_through_agent/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/license.png differ diff --git a/shopping_through_agent/static/description/assets/icons/life-ring-icon.svg b/shopping_through_agent/static/description/assets/icons/life-ring-icon.svg new file mode 100755 index 000000000..3ae6e1d89 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/lifebuoy.png b/shopping_through_agent/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/lifebuoy.png differ diff --git a/shopping_through_agent/static/description/assets/icons/mail.svg b/shopping_through_agent/static/description/assets/icons/mail.svg new file mode 100755 index 000000000..1eedde695 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/shopping_through_agent/static/description/assets/icons/manufacturing-black.png b/shopping_through_agent/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/manufacturing-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/notes.png b/shopping_through_agent/static/description/assets/icons/notes.png new file mode 100755 index 000000000..ee5e95404 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/notes.png differ diff --git a/shopping_through_agent/static/description/assets/icons/notification icon.svg b/shopping_through_agent/static/description/assets/icons/notification icon.svg new file mode 100755 index 000000000..053189973 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/odoo-consultancy.svg b/shopping_through_agent/static/description/assets/icons/odoo-consultancy.svg new file mode 100755 index 000000000..e05f65bde --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/shopping_through_agent/static/description/assets/icons/odoo-licencing.svg b/shopping_through_agent/static/description/assets/icons/odoo-licencing.svg new file mode 100755 index 000000000..2606c88b0 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/shopping_through_agent/static/description/assets/icons/odoo-logo.png b/shopping_through_agent/static/description/assets/icons/odoo-logo.png new file mode 100755 index 000000000..0e4d0eb5a Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/odoo-logo.png differ diff --git a/shopping_through_agent/static/description/assets/icons/patter.svg b/shopping_through_agent/static/description/assets/icons/patter.svg new file mode 100755 index 000000000..25c9c0a8f --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/pattern1.png b/shopping_through_agent/static/description/assets/icons/pattern1.png new file mode 100755 index 000000000..09ab0fb2d Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/pattern1.png differ diff --git a/shopping_through_agent/static/description/assets/icons/pos-black.png b/shopping_through_agent/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/pos-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/puzzle-piece-icon.svg b/shopping_through_agent/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100755 index 000000000..3e9ad9373 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/puzzle.png b/shopping_through_agent/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/puzzle.png differ diff --git a/shopping_through_agent/static/description/assets/icons/replace-icon.svg b/shopping_through_agent/static/description/assets/icons/replace-icon.svg new file mode 100755 index 000000000..d0e3a7af1 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/restaurant-black.png b/shopping_through_agent/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/restaurant-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/screenshot-main.png b/shopping_through_agent/static/description/assets/icons/screenshot-main.png new file mode 100755 index 000000000..575f8e676 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/screenshot-main.png differ diff --git a/shopping_through_agent/static/description/assets/icons/screenshot.png b/shopping_through_agent/static/description/assets/icons/screenshot.png new file mode 100755 index 000000000..cef272529 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/screenshot.png differ diff --git a/shopping_through_agent/static/description/assets/icons/service-black.png b/shopping_through_agent/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/service-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/skype-fill.svg b/shopping_through_agent/static/description/assets/icons/skype-fill.svg new file mode 100755 index 000000000..c17423639 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/skype.png b/shopping_through_agent/static/description/assets/icons/skype.png new file mode 100755 index 000000000..51b409fb3 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/skype.png differ diff --git a/shopping_through_agent/static/description/assets/icons/skype.svg b/shopping_through_agent/static/description/assets/icons/skype.svg new file mode 100755 index 000000000..df3dad39b --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/shopping_through_agent/static/description/assets/icons/star-1.svg b/shopping_through_agent/static/description/assets/icons/star-1.svg new file mode 100755 index 000000000..7e55ab162 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/star-2.svg b/shopping_through_agent/static/description/assets/icons/star-2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/support.png b/shopping_through_agent/static/description/assets/icons/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/support.png differ diff --git a/shopping_through_agent/static/description/assets/icons/test-1 - Copy.png b/shopping_through_agent/static/description/assets/icons/test-1 - Copy.png new file mode 100755 index 000000000..f6a902663 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/test-1 - Copy.png differ diff --git a/shopping_through_agent/static/description/assets/icons/test-1.png b/shopping_through_agent/static/description/assets/icons/test-1.png new file mode 100755 index 000000000..0908add2b Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/test-1.png differ diff --git a/shopping_through_agent/static/description/assets/icons/test-2.png b/shopping_through_agent/static/description/assets/icons/test-2.png new file mode 100755 index 000000000..4671fe91e Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/test-2.png differ diff --git a/shopping_through_agent/static/description/assets/icons/trading-black.png b/shopping_through_agent/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/trading-black.png differ diff --git a/shopping_through_agent/static/description/assets/icons/training.png b/shopping_through_agent/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/training.png differ diff --git a/shopping_through_agent/static/description/assets/icons/translate.svg b/shopping_through_agent/static/description/assets/icons/translate.svg new file mode 100755 index 000000000..af9c8a1aa --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/update.png b/shopping_through_agent/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/update.png differ diff --git a/shopping_through_agent/static/description/assets/icons/user.png b/shopping_through_agent/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/user.png differ diff --git a/shopping_through_agent/static/description/assets/icons/video.png b/shopping_through_agent/static/description/assets/icons/video.png new file mode 100755 index 000000000..576705b17 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/video.png differ diff --git a/shopping_through_agent/static/description/assets/icons/whatsapp.png b/shopping_through_agent/static/description/assets/icons/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/whatsapp.png differ diff --git a/shopping_through_agent/static/description/assets/icons/wrench-icon.svg b/shopping_through_agent/static/description/assets/icons/wrench-icon.svg new file mode 100755 index 000000000..174b5a465 --- /dev/null +++ b/shopping_through_agent/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/shopping_through_agent/static/description/assets/icons/wrench.png b/shopping_through_agent/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/shopping_through_agent/static/description/assets/icons/wrench.png differ diff --git a/shopping_through_agent/static/description/assets/modules/1.jpg b/shopping_through_agent/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..3cb15fe01 Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/1.jpg differ diff --git a/shopping_through_agent/static/description/assets/modules/2.png b/shopping_through_agent/static/description/assets/modules/2.png new file mode 100644 index 000000000..906d51bf5 Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/2.png differ diff --git a/shopping_through_agent/static/description/assets/modules/3.png b/shopping_through_agent/static/description/assets/modules/3.png new file mode 100644 index 000000000..3339ef722 Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/3.png differ diff --git a/shopping_through_agent/static/description/assets/modules/4.jpg b/shopping_through_agent/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..73613d2fb Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/4.jpg differ diff --git a/shopping_through_agent/static/description/assets/modules/5.png b/shopping_through_agent/static/description/assets/modules/5.png new file mode 100644 index 000000000..29c325870 Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/5.png differ diff --git a/shopping_through_agent/static/description/assets/modules/6.png b/shopping_through_agent/static/description/assets/modules/6.png new file mode 100644 index 000000000..d2094985a Binary files /dev/null and b/shopping_through_agent/static/description/assets/modules/6.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/1.png b/shopping_through_agent/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..10b5e2381 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/1.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/10.png b/shopping_through_agent/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..553673bd1 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/10.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/11.png b/shopping_through_agent/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..85ae91173 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/11.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/2.png b/shopping_through_agent/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..ab697df76 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/2.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/3.png b/shopping_through_agent/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..feab97ea8 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/3.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/4.png b/shopping_through_agent/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..689ef0dce Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/4.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/5.png b/shopping_through_agent/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..39f69f9e3 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/5.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/6.png b/shopping_through_agent/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..bc98198c6 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/6.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/7.png b/shopping_through_agent/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..b503adcd0 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/7.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/8.png b/shopping_through_agent/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..967d668dc Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/8.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/9.png b/shopping_through_agent/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..cef12e95b Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/9.png differ diff --git a/shopping_through_agent/static/description/assets/screenshots/gif.gif b/shopping_through_agent/static/description/assets/screenshots/gif.gif new file mode 100644 index 000000000..d24e0f681 Binary files /dev/null and b/shopping_through_agent/static/description/assets/screenshots/gif.gif differ diff --git a/shopping_through_agent/static/description/assets/y18.jpg b/shopping_through_agent/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/shopping_through_agent/static/description/assets/y18.jpg differ diff --git a/shopping_through_agent/static/description/banner.jpg b/shopping_through_agent/static/description/banner.jpg new file mode 100644 index 000000000..169875b88 Binary files /dev/null and b/shopping_through_agent/static/description/banner.jpg differ diff --git a/shopping_through_agent/static/description/icon.png b/shopping_through_agent/static/description/icon.png new file mode 100644 index 000000000..46fba716b Binary files /dev/null and b/shopping_through_agent/static/description/icon.png differ diff --git a/shopping_through_agent/static/description/index.html b/shopping_through_agent/static/description/index.html new file mode 100644 index 000000000..429cc59b8 --- /dev/null +++ b/shopping_through_agent/static/description/index.html @@ -0,0 +1,1270 @@ + + + + + + Shopping Through Agent + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Agent can Shop on Behalf of the Customer. +

+

Shopping Through Agent +

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

Key + Highlights

+
+
+
+
+ +
+
+ Enable an Agent +
+

+ Enable a Customer as an Agent.

+
+
+
+
+
+ +
+
+ Select an Agent for the Customer +
+

+ Customers can choose an Agent from the list. +

+
+
+
+
+
+ +
+
+ Agent can select the Customer +
+

+ Agent can select the Customer from the Website to conduct shopping on behalf of the Customer. +

+
+
+
+
+
+ +
+
+ Change the Sale Order address to the Customer +
+

+ Address for both the Sale Order and Invoice will be that of the customer.

+
+
+
+
+ +
+
+
+ Shopping Through Agent +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Enable Is Agent to set the + + Customer as an Agent. +

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

+ Customers can select an Agent from the list of agents in the designated + + 'Agent' field. +

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

+ If you are an Agent and open the website, you will find a new menu titled + 'Agent Shop'. +

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

+ If you click the menu, it will open a new page for selecting the Customer. From there, the Agent can choose the Customer and proceed to shop by clicking on + + 'Shop Now' as the Customer. +

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

+ On the payment page, you can view the Customer's address and edit it by + + + clicking the pencil icon. +

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

+ When you print the Sale Order, you will see that + + + the Agent Name is displayed on the page. +

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

+ From the backend, you can view the + + + Agent associated with the created Sale Order. +

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

+ From the Sale Order in the customer portal, the + + + Customer can view the Agent Name. +

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

+ From the backend, you can view the + + + Agent associated with the created Invoice. +

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

+ From the Invoice in the customer portal, the + + Customer can view the Agent Name. +

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

+ When you print or download the Invoice, you will see that the + + Agent Name is displayed on the page. +

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

+ Agent can choose Customer from the website Agent Shop.

+
+ +
+
+
+
+
+
+ +
+

+ Agent can Shop on behalf of the Customer.

+
+
+
+
+
+
+
+ +
+

+ Sale Order and Invoice for Shopping.

+
+
+

+ Create a Sale Order and Invoice for the sale from the website shop. + The details will reflect those of the Customer, and the Agent Name should be + displayed on both the Sale Order and Invoice. +

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

+ Even though the agent is shopping behalf of the customer + , the default address will be the customers address. + We can also edit the address at the time of checkout. +

+
+
+ +
+ +
+

+ No, For a customer only one agent can be assigned. +

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

+ Latest Release 18.0.1.0.0 +

+ + 22nd November, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/shopping_through_agent/views/account_move_views.xml b/shopping_through_agent/views/account_move_views.xml new file mode 100644 index 000000000..8a55ba6d8 --- /dev/null +++ b/shopping_through_agent/views/account_move_views.xml @@ -0,0 +1,14 @@ + + + + + account.move.view.form.inherit.shopping.through.agent + account.move + + + + + + + + diff --git a/shopping_through_agent/views/agent_shop_template.xml b/shopping_through_agent/views/agent_shop_template.xml new file mode 100644 index 000000000..688a2a3e0 --- /dev/null +++ b/shopping_through_agent/views/agent_shop_template.xml @@ -0,0 +1,37 @@ + + + + + \ No newline at end of file diff --git a/shopping_through_agent/views/invoice_report_template.xml b/shopping_through_agent/views/invoice_report_template.xml new file mode 100644 index 000000000..710f627db --- /dev/null +++ b/shopping_through_agent/views/invoice_report_template.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/shopping_through_agent/views/res_partner_views.xml b/shopping_through_agent/views/res_partner_views.xml new file mode 100644 index 000000000..2c9553a3e --- /dev/null +++ b/shopping_through_agent/views/res_partner_views.xml @@ -0,0 +1,15 @@ + + + + + res.partner.view.form.inherit.shopping.through.agent + res.partner + + + + + + + + + diff --git a/shopping_through_agent/views/sale_order_portal_template.xml b/shopping_through_agent/views/sale_order_portal_template.xml new file mode 100644 index 000000000..6b03e4b27 --- /dev/null +++ b/shopping_through_agent/views/sale_order_portal_template.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/shopping_through_agent/views/sale_order_report_template.xml b/shopping_through_agent/views/sale_order_report_template.xml new file mode 100644 index 000000000..e7b9f5839 --- /dev/null +++ b/shopping_through_agent/views/sale_order_report_template.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/shopping_through_agent/views/sale_order_views.xml b/shopping_through_agent/views/sale_order_views.xml new file mode 100644 index 000000000..ec0abb3a6 --- /dev/null +++ b/shopping_through_agent/views/sale_order_views.xml @@ -0,0 +1,14 @@ + + + + + sale.order.view.form.inherit.shopping.through.agent + sale.order + + + + + + + +