@ -0,0 +1,47 @@ |
|||||
|
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg |
||||
|
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html |
||||
|
:alt: License: LGPL-3 |
||||
|
|
||||
|
Odoo Vendor Portal |
||||
|
================== |
||||
|
* This module helps to sent quotations for a product to multiple vendors and vendors can add their price in their portal and can choose best quotation for product. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
* No additional configurations needed |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
License |
||||
|
------- |
||||
|
General Public License, Version 3 (LGPL v3). |
||||
|
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developer: (V17) Ashwin 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 <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from . import controllers |
||||
|
from . import models |
||||
|
from . import wizard |
@ -0,0 +1,54 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
{ |
||||
|
'name': 'Odoo Vendor Portal', |
||||
|
'version': '17.0.1.0.0', |
||||
|
'category': 'Purchases', |
||||
|
'summary': """Vendor Portal Management in Odoo""", |
||||
|
'description': """This module helps to sent quotations for a product |
||||
|
to multiple vendors and vendors can add their |
||||
|
price in their portal, and can choose best quotation for product""", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'website': "https://www.cybrosys.com", |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'depends': ['website', 'purchase', 'portal', 'contacts', 'stock'], |
||||
|
'data': [ |
||||
|
'security/vendor_rfq_security.xml', |
||||
|
'security/ir.model.access.csv', |
||||
|
'data/rfq_sequence.xml', |
||||
|
'data/rfq_mail_templates.xml', |
||||
|
'data/rfq_cron.xml', |
||||
|
'wizard/register_vendor_views.xml', |
||||
|
'views/res_partner_views.xml', |
||||
|
'views/vendor_rfq_views.xml', |
||||
|
'views/res_config_settings_views.xml', |
||||
|
'views/portal_rfq_templates.xml', |
||||
|
'views/vendor_portal_menus.xml', |
||||
|
'wizard/rfq_done_views.xml', |
||||
|
], |
||||
|
'images': ['static/description/banner.jpg'], |
||||
|
'license': 'LGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': True, |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from . import vendor_portal_odoo |
@ -0,0 +1,139 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from collections import OrderedDict |
||||
|
from odoo import http, _ |
||||
|
from odoo.http import request |
||||
|
from odoo.addons.portal.controllers.portal import pager as portal_pager, \ |
||||
|
CustomerPortal |
||||
|
|
||||
|
|
||||
|
class RFQCustomerPortal(CustomerPortal): |
||||
|
|
||||
|
def _prepare_home_portal_values(self, counter): |
||||
|
"""RFQs in home portal""" |
||||
|
values = super()._prepare_home_portal_values(counter) |
||||
|
partner_id = request.env.user.partner_id |
||||
|
values['my_rfq_count'] = request.env['vendor.rfq'].sudo().search_count( |
||||
|
[('vendor_ids', 'in', partner_id.ids), |
||||
|
('state', 'not in', ['draft'])]) |
||||
|
return values |
||||
|
|
||||
|
def _rfq_get_page_view_values(self, vendor_rfq, access_token, **kwargs): |
||||
|
"""RFQ Page values""" |
||||
|
values = { |
||||
|
'page_name': 'vendor_rfq', |
||||
|
'vendor_rfq': vendor_rfq, |
||||
|
} |
||||
|
return self._get_page_view_values(vendor_rfq, access_token, values, |
||||
|
'my_rfq_history', False, **kwargs) |
||||
|
|
||||
|
@http.route(['/my/vendor_rfqs', '/my/vendor_rfqs/page/<int:page>'], |
||||
|
type='http', auth="public", website=True) |
||||
|
def portal_my_vendor_rfqs(self, page=1, date_begin=None, |
||||
|
date_end=None, sortby=None, filterby=None, **kw): |
||||
|
"""Portal vendor RFQs""" |
||||
|
values = self._prepare_portal_layout_values() |
||||
|
user_partner = request.env.user.partner_id |
||||
|
vendor_rfq = request.env['vendor.rfq'].sudo().search([]) |
||||
|
domain = [ |
||||
|
('vendor_ids', 'in', user_partner.ids), |
||||
|
('state', 'not in', ['draft'])] |
||||
|
if date_begin and date_end: |
||||
|
domain += [('create_date', '>', date_begin), |
||||
|
('create_date', '<=', date_end)] |
||||
|
|
||||
|
searchbar_sortings = { |
||||
|
'date': {'label': _('Newest'), |
||||
|
'order': 'create_date desc, id desc'}, |
||||
|
'name': {'label': _('Name'), 'order': 'name asc, id asc'}, |
||||
|
} |
||||
|
if not sortby: |
||||
|
sortby = 'name' |
||||
|
order = searchbar_sortings[sortby]['order'] |
||||
|
searchbar_filters = { |
||||
|
'all': {'label': _('All'), 'domain': [ |
||||
|
('state', 'in', ['draft', 'in_progress', 'pending', |
||||
|
'done', 'cancel'])]}, |
||||
|
'Done': {'label': _('Done'), 'domain': [('state', '=', 'done')]}, |
||||
|
'In Progress': {'label': _('In Progress'), |
||||
|
'domain': [('state', '=', 'in_progress')]}, |
||||
|
} |
||||
|
# default filter by value |
||||
|
if not filterby: |
||||
|
filterby = 'all' |
||||
|
domain += searchbar_filters[filterby]['domain'] |
||||
|
rfq_unit_count = vendor_rfq.search_count(domain) |
||||
|
pager = portal_pager( |
||||
|
url="/my/vendor_rfqs", |
||||
|
url_args={'date_begin': date_begin, 'date_end': date_end, |
||||
|
'sortby': sortby, 'filterby': filterby}, |
||||
|
total=rfq_unit_count, |
||||
|
page=page, |
||||
|
step=self._items_per_page |
||||
|
) |
||||
|
|
||||
|
orders = vendor_rfq.search( |
||||
|
domain, |
||||
|
order=order, |
||||
|
limit=self._items_per_page, |
||||
|
offset=pager['offset'] |
||||
|
) |
||||
|
values.update({ |
||||
|
'date': date_begin, |
||||
|
'rfqs': orders, |
||||
|
'page_name': 'vendor_rfq', |
||||
|
'pager': pager, |
||||
|
'searchbar_sortings': searchbar_sortings, |
||||
|
'sortby': sortby, |
||||
|
'searchbar_filters': OrderedDict(sorted(searchbar_filters.items())), |
||||
|
'filterby': filterby, |
||||
|
'default_url': '/my/vendor_rfqs', |
||||
|
}) |
||||
|
return request.render( |
||||
|
"vendor_portal_odoo.portal_my_rfq", |
||||
|
values) |
||||
|
|
||||
|
@http.route(['/my/vendor_rfq/<int:rfq_id>'], type='http', auth="public", |
||||
|
website=True) |
||||
|
def portal_my_vendor_rfq(self, rfq_id, access_token=None, **kw): |
||||
|
"""Displaying the RFQ details""" |
||||
|
rfq_details = request.env['vendor.rfq'].sudo().browse(int(rfq_id)) |
||||
|
vendor_quote = rfq_details.vendor_quote_history_ids.filtered( |
||||
|
lambda x: x.vendor_id.id == request.env.user.partner_id.id) |
||||
|
quoted_price = vendor_quote.quoted_price |
||||
|
values = self._rfq_get_page_view_values(rfq_details, access_token, **kw) |
||||
|
values['quoted_price'] = quoted_price |
||||
|
values['vendor_quote'] = vendor_quote |
||||
|
return request.render( |
||||
|
"vendor_portal_odoo.portal_my_vendor_rfq", values) |
||||
|
|
||||
|
@http.route(['/quote/details'], type='http', auth="public", website=True) |
||||
|
def quote_details(self, **post): |
||||
|
"""Quote details""" |
||||
|
request.env['vendor.quote.history'].sudo().create({ |
||||
|
'vendor_id': request.env.user.partner_id.id, |
||||
|
'quoted_price': float(post.get('price')), |
||||
|
'estimate_date': post.get('delivery_date'), |
||||
|
'note': post.get('additional_note'), |
||||
|
'quote_id': post.get('rfq_id'), |
||||
|
}) |
||||
|
return request.redirect('/my/vendor_rfq/%s' % (post.get('rfq_id'))) |
@ -0,0 +1,14 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Cron job for Done the RFQ--> |
||||
|
<record id="ir_cron_quote_rfq" model="ir.cron"> |
||||
|
<field name="name">Set RFQs as Done</field> |
||||
|
<field name="model_id" ref="model_vendor_rfq"/> |
||||
|
<field name="state">code</field> |
||||
|
<field name="code">model.set_rfq_done()</field> |
||||
|
<field name="user_id" ref="base.user_root"/> |
||||
|
<field name="interval_number">1</field> |
||||
|
<field name="interval_type">days</field> |
||||
|
<field name="numbercall">-1</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,77 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
<!-- Template for RFQ--> |
||||
|
<record id="email_template_vendor_rfq_request" model="mail.template"> |
||||
|
<field name="name">Purchase Order: Send RFQ</field> |
||||
|
<field name="model_id" ref="vendor_portal_odoo.model_vendor_rfq"/> |
||||
|
<field name="subject">RFQ Request</field> |
||||
|
<field name="partner_to">{{ ctx.get('partner_to') }}</field> |
||||
|
<field name="body_html" type="html"> |
||||
|
<div style="margin: 0px; padding: 0px;"> |
||||
|
<p style="margin: 0px; padding: 0px; font-size: 13px;"> |
||||
|
Dear <t t-out="ctx.get('name') or ''"/>, |
||||
|
<br/> |
||||
|
<br/> |
||||
|
We would like to request a quotation for the Product |
||||
|
<strong t-out="object.product_id.name or ''"/> |
||||
|
of |
||||
|
<strong t-out="object.quantity"/> |
||||
|
<t t-out="object.uom_id.name"/> |
||||
|
Quantity from you. |
||||
|
<br/> |
||||
|
<br/> |
||||
|
If you are interested, please check and let us know the quote |
||||
|
<br/> |
||||
|
<br/> |
||||
|
Best regards, |
||||
|
<br/> |
||||
|
<t t-out="object.user_id.name"/> |
||||
|
</p> |
||||
|
</div> |
||||
|
</field> |
||||
|
<field name="lang">{{ ctx.get('lang') }}</field> |
||||
|
<field name="auto_delete" eval="True"/> |
||||
|
</record> |
||||
|
<!-- Template for Accepted Quote--> |
||||
|
<record id="email_template_vendor_rfq_mark_done" model="mail.template"> |
||||
|
<field name="name">Purchase Order: Quote Accepted</field> |
||||
|
<field name="model_id" ref="vendor_portal_odoo.model_vendor_rfq"/> |
||||
|
<field name="subject">Quote Accepted</field> |
||||
|
<field name="partner_to">{{ ctx.get('partner_to') }}</field> |
||||
|
<field name="body_html" type="html"> |
||||
|
<div style="margin: 0px; padding: 0px;"> |
||||
|
<p style="margin: 0px; padding: 0px; font-size: 13px;"> |
||||
|
Dear<t t-out="ctx.get('name') or ''"/>, |
||||
|
<br/> |
||||
|
<br/> |
||||
|
We want to let you know that we accept your quoted price of |
||||
|
<strong t-esc="ctx.get('price') or ''" |
||||
|
t-options='{"widget": "monetary", "display_currency": ctx.get("currency_id")}'/> |
||||
|
for the |
||||
|
<strong t-out="object.product_id.name or ''"/> |
||||
|
within your specified delivery date |
||||
|
<strong t-out="ctx.get('delivery_date') or ''"/> |
||||
|
from you. |
||||
|
<br/> |
||||
|
<br/> |
||||
|
We'd like to buy |
||||
|
<strong t-out="object.quantity or ''"/> |
||||
|
units of |
||||
|
<strong t-out="object.product_id.name or ''"/> |
||||
|
from you by the estimated date. |
||||
|
<br/> |
||||
|
We will send you a purchase order as soon as possible. |
||||
|
<br/> |
||||
|
<br/> |
||||
|
Best regards, |
||||
|
<br/> |
||||
|
<t t-out="object.user_id.name"/> |
||||
|
</p> |
||||
|
</div> |
||||
|
</field> |
||||
|
<field name="lang">{{ ctx.get('lang') }}</field> |
||||
|
<field name="auto_delete" eval="True"/> |
||||
|
</record> |
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,13 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<data noupdate="1"> |
||||
|
<!-- Sequence of vendor RFQ--> |
||||
|
<record id="seq_vendor_rfq" model="ir.sequence"> |
||||
|
<field name="name">RFQ Sequence</field> |
||||
|
<field name="code">vendor.rfq</field> |
||||
|
<field name="prefix">RFQ</field> |
||||
|
<field name="padding">5</field> |
||||
|
<field name="company_id" eval="False"/> |
||||
|
</record> |
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,6 @@ |
|||||
|
## Module <vendor_portal_odoo> |
||||
|
|
||||
|
#### 01.02.2024 |
||||
|
#### Version 17.0.1.0.0 |
||||
|
##### ADD |
||||
|
-Initial Commit for Odoo Vendor Portal |
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from . import res_config_settings |
||||
|
from . import res_partner |
||||
|
from . import vendor_quote_history |
||||
|
from . import vendor_rfq |
@ -0,0 +1,73 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class ResConfigSettings(models.TransientModel): |
||||
|
"""Class used to add field to res.config.settings""" |
||||
|
_inherit = 'res.config.settings' |
||||
|
|
||||
|
rfq_done_based_on = fields.Selection([ |
||||
|
('based_on_price', 'Minimum Quoted Price'), |
||||
|
('based_on_delivery_time', 'Minimum Delivery time') |
||||
|
], string="Set RFQs Based on", default='based_on_price', help='RFQ Based On') |
||||
|
quote_submission_msg = fields.Text("Quote Submission", |
||||
|
help="Status message to display if a quote was submitted") |
||||
|
quote_accept_msg = fields.Text("Quote Acceptance", |
||||
|
help="Status message to display if a quote was accepted") |
||||
|
quote_not_accept_msg = fields.Text("Quote not Accepted", |
||||
|
help="Status message to display if a quote was not accepted" |
||||
|
) |
||||
|
quote_cancel_msg = fields.Text("Quote Cancelled", |
||||
|
help="Status message to display if a quote was cancelled") |
||||
|
quote_to_po_msg = fields.Text("PO created for the RFQ", |
||||
|
help="Status message to display if a quote was converted to PO") |
||||
|
|
||||
|
def set_values(self): |
||||
|
"""Setting field values""" |
||||
|
res = super(ResConfigSettings, self).set_values() |
||||
|
config_parm = self.env['ir.config_parameter'].sudo() |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.rfq_done_based_on', self.rfq_done_based_on) |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.quote_submission_msg', self.quote_submission_msg) |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.quote_accept_msg', self.quote_accept_msg) |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.quote_not_accept_msg', self.quote_not_accept_msg) |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.quote_cancel_msg', self.quote_cancel_msg) |
||||
|
config_parm.set_param( |
||||
|
'vendor_portal_odoo.quote_to_po_msg', self.quote_to_po_msg) |
||||
|
return res |
||||
|
|
||||
|
def get_values(self): |
||||
|
"""Getting field values""" |
||||
|
res = super(ResConfigSettings, self).get_values() |
||||
|
config_parm = self.env['ir.config_parameter'].sudo() |
||||
|
res['rfq_done_based_on'] = config_parm.get_param('vendor_portal_odoo.rfq_done_based_on') |
||||
|
res['quote_submission_msg'] = config_parm.get_param('vendor_portal_odoo.quote_submission_msg') |
||||
|
res['quote_accept_msg'] = config_parm.get_param('vendor_portal_odoo.quote_accept_msg') |
||||
|
res['quote_not_accept_msg'] = config_parm.get_param('vendor_portal_odoo.quote_not_accept_msg') |
||||
|
res['quote_cancel_msg'] = config_parm.get_param('vendor_portal_odoo.quote_cancel_msg') |
||||
|
res['quote_to_po_msg'] = config_parm.get_param('vendor_portal_odoo.quote_to_po_msg') |
||||
|
return res |
@ -0,0 +1,32 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class ResPartner(models.Model): |
||||
|
"""Class used to add field to res.partner for differentiate |
||||
|
registered vendors""" |
||||
|
_inherit = 'res.partner' |
||||
|
|
||||
|
is_registered = fields.Boolean("Is Registered Vendor", default=False, |
||||
|
help="To denote the is the partner is " |
||||
|
"registered as vendor") |
@ -0,0 +1,44 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class VendorQuoteHistory(models.Model): |
||||
|
"""Vendor Quotation History""" |
||||
|
_name = 'vendor.quote.history' |
||||
|
_description = "Vendor Quotation History" |
||||
|
_rec_name = 'vendor_id' |
||||
|
|
||||
|
vendor_id = fields.Many2one('res.partner', |
||||
|
domain="[('is_registered', '=', True)]", |
||||
|
string="Vendor", |
||||
|
help="Select Vendor") |
||||
|
quoted_price = fields.Monetary(currency_field='currency_id', |
||||
|
help="Quoted Price") |
||||
|
currency_id = fields.Many2one('res.currency', string='Currency', |
||||
|
help="Currency", |
||||
|
required=True, |
||||
|
default=lambda |
||||
|
self: self.env.user.company_id.currency_id) |
||||
|
estimate_date = fields.Date(string="Estimate date", help="Estimated Date") |
||||
|
note = fields.Text(string="Note", help="Additional Note") |
||||
|
quote_id = fields.Many2one('vendor.rfq', help="Quote ID") |
@ -0,0 +1,180 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import api, fields, models, _ |
||||
|
|
||||
|
|
||||
|
class VendorRFQ(models.Model): |
||||
|
"""Vendor RFQ model""" |
||||
|
_name = 'vendor.rfq' |
||||
|
_inherit = ['mail.thread', 'mail.activity.mixin'] |
||||
|
_description = 'Vendor RFQ' |
||||
|
|
||||
|
name = fields.Char('RFQ Reference', required=True, index=True, |
||||
|
help="Name", copy=False, default=lambda x: _('New')) |
||||
|
product_id = fields.Many2one('product.product', string='Product', |
||||
|
help="Select Product") |
||||
|
quantity = fields.Float(string="Quantity", help="Quantity Required") |
||||
|
uom_id = fields.Many2one('uom.uom', string='UoM', help="UOM") |
||||
|
estimated_quote = fields.Monetary("Estimated Quote", |
||||
|
currency_field='currency_id', |
||||
|
help="Estimated Quote Price") |
||||
|
currency_id = fields.Many2one('res.currency', string='Currency', |
||||
|
help="Currency", |
||||
|
required=True, |
||||
|
default=lambda |
||||
|
self: self.env.user.company_id.currency_id) |
||||
|
notes = fields.Html(string='Notes', help="Additional Note") |
||||
|
estimated_delivery_date = fields.Date(string="Delivery date", |
||||
|
help="Vendor's delivery date") |
||||
|
quote_date = fields.Date(default=fields.Datetime.now(), help="Quote Date ") |
||||
|
closing_date = fields.Date(string="Closing date", |
||||
|
help="Quotation closing date") |
||||
|
vendor_ids = fields.Many2many('res.partner', |
||||
|
domain="[('is_registered', '=', True)]", |
||||
|
help="Vendors you want to send quotations") |
||||
|
vendor_quote_history_ids = fields.One2many('vendor.quote.history', |
||||
|
'quote_id', |
||||
|
string="Vendor Quote History", |
||||
|
help="Vendor Quote History") |
||||
|
user_id = fields.Many2one('res.users', default=lambda self: self.env.user, |
||||
|
string="Responsible", help="Responsible Person") |
||||
|
approved_vendor_id = fields.Many2one('res.partner', string="Approved Vendor", help="Approved Vendor") |
||||
|
order_id = fields.Many2one('purchase.order', string='Order ID', help="Order ID") |
||||
|
state = fields.Selection([ |
||||
|
('draft', 'Draft'), |
||||
|
('pending', 'Pending'), |
||||
|
('in_progress', 'In Progress'), |
||||
|
('done', 'Done'), |
||||
|
('cancel', 'Cancelled'), ('order', 'Purchase Order'), |
||||
|
], string="Status", default='draft', help="Different stages") |
||||
|
company_id = fields.Many2one( |
||||
|
'res.company', string='Company', |
||||
|
default=lambda self: self.env.company, help="Select Company" |
||||
|
) |
||||
|
|
||||
|
@api.model |
||||
|
def create(self, vals): |
||||
|
"""Create function""" |
||||
|
if vals.get('name', 'New') == 'New': |
||||
|
vals['name'] = self.env['ir.sequence'].next_by_code( |
||||
|
'vendor.rfq') or '/' |
||||
|
res = super(VendorRFQ, self).create(vals) |
||||
|
return res |
||||
|
|
||||
|
def action_send_by_mail(self): |
||||
|
"""For sending email to vendors""" |
||||
|
template = self.env.ref( |
||||
|
'vendor_portal_odoo.email_template_vendor_rfq_request').id |
||||
|
for vendor in self.vendor_ids: |
||||
|
context = { |
||||
|
'name': vendor.name, |
||||
|
'lang': vendor.lang, |
||||
|
} |
||||
|
email_values = { |
||||
|
'email_to': vendor.email, |
||||
|
'email_from': self.env.user.partner_id.email, |
||||
|
} |
||||
|
self.env['mail.template'].browse(template).with_context( |
||||
|
context).send_mail(self.id, email_values=email_values, |
||||
|
force_send=True) |
||||
|
self.state = 'in_progress' |
||||
|
|
||||
|
def action_pending(self): |
||||
|
"""For changing state to pending""" |
||||
|
self.state = 'pending' |
||||
|
|
||||
|
def action_cancel(self): |
||||
|
"""For changing state to cancel""" |
||||
|
self.state = 'cancel' |
||||
|
|
||||
|
def action_done(self): |
||||
|
"""For mark as done""" |
||||
|
|
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'rfq.done', |
||||
|
'target': 'new', |
||||
|
'views': [[False, 'form']], |
||||
|
'context': {'default_quote_ids': self.vendor_quote_history_ids.ids}, |
||||
|
} |
||||
|
|
||||
|
def action_create_quotation(self): |
||||
|
"""For creating purchase RFQ from vendor quotations""" |
||||
|
rfq_quote = self.env['vendor.quote.history'].search([ |
||||
|
('vendor_id', '=', self.approved_vendor_id.id), |
||||
|
('quote_id', '=', self.id)]) |
||||
|
price = rfq_quote.quoted_price |
||||
|
order = self.env['purchase.order'].sudo().create({ |
||||
|
'partner_id': self.approved_vendor_id.id, |
||||
|
'order_line': [ |
||||
|
(0, 0, { |
||||
|
'name': self.product_id.name, |
||||
|
'product_id': self.product_id.id, |
||||
|
'product_qty': self.quantity, |
||||
|
'product_uom': self.product_id.uom_po_id.id, |
||||
|
'price_unit': price, |
||||
|
'date_planned': rfq_quote.estimate_date, |
||||
|
'taxes_id': [(6, 0, self.product_id.supplier_taxes_id.ids)], |
||||
|
})], |
||||
|
}) |
||||
|
self.write({ |
||||
|
'state': 'order', |
||||
|
'order_id': order.id |
||||
|
}) |
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'res_model': 'purchase.order', |
||||
|
'res_id': order.id, |
||||
|
'target': 'current', |
||||
|
'views': [(False, 'form')], |
||||
|
} |
||||
|
|
||||
|
def set_rfq_done(self): |
||||
|
"""Set the RFQ as done""" |
||||
|
quotes = self.search([('state', '=', 'in_progress'), |
||||
|
('vendor_quote_history_ids', |
||||
|
'!=', False), |
||||
|
('closing_date', '=', |
||||
|
fields.Date.today())]) |
||||
|
if quotes: |
||||
|
rfq_done_based_on = self.env['ir.config_parameter'].get_param( |
||||
|
'vendor_portal_odoo.rfq_done_based_on') |
||||
|
for rec in quotes: |
||||
|
order = 'quoted_price asc' if rfq_done_based_on == 'based_on_price' else 'estimate_date asc' |
||||
|
vendor_quotes = rec.vendor_quote_history_ids.search([], |
||||
|
limit=1, |
||||
|
order=order) |
||||
|
rec.write({ |
||||
|
'approved_vendor_id': vendor_quotes.vendor_id.id, |
||||
|
'state': 'done' |
||||
|
}) |
||||
|
|
||||
|
def get_purchase_order(self): |
||||
|
"""Purchase Order""" |
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'res_model': 'purchase.order', |
||||
|
'res_id': self.order_id.id, |
||||
|
'target': 'current', |
||||
|
'views': [(False, 'form')], |
||||
|
} |
|
@ -0,0 +1,9 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Multi company Rule--> |
||||
|
<record id="vendor_rfq_rule_company" model="ir.rule"> |
||||
|
<field name="name">Vendor Quotation multi company rule</field> |
||||
|
<field name="model_id" ref="model_vendor_rfq"/> |
||||
|
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field> |
||||
|
</record> |
||||
|
</odoo> |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 151 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 394 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 6.8 KiB |
@ -0,0 +1,879 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
|
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<title>Odoo App 3 Index</title> |
||||
|
<!-- Bootstrap CSS --> |
||||
|
<link rel="stylesheet" |
||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
||||
|
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" |
||||
|
crossorigin="anonymous"> |
||||
|
<link rel="stylesheet" |
||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
||||
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" |
||||
|
rel="stylesheet"> |
||||
|
</head> |
||||
|
<body> |
||||
|
<section> |
||||
|
<div class="container" |
||||
|
style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" |
||||
|
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> |
||||
|
<div class="my-3"> |
||||
|
<img src="assets/misc/Cybrosys R.png" |
||||
|
style="width:auto !important; height:40px !important"> |
||||
|
</div> |
||||
|
<div class="my-3 d-flex align-items-center"> |
||||
|
<div class="text-center" |
||||
|
style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
||||
|
Community |
||||
|
</div> |
||||
|
<div class="text-center" |
||||
|
style="background-color:#875A7B !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important;min-width: 120px !important;"> |
||||
|
Enterprise |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" |
||||
|
style="margin: 80px 0px !important;"> |
||||
|
<h1 style="font-size: 2.8rem;font-weight: 700; color: |
||||
|
#1A202C;"> |
||||
|
Odoo Vendor Portal</h1> |
||||
|
<p class="my-3 mb-4" |
||||
|
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
||||
|
Vendor Portal Management in Odoo17 |
||||
|
</p> |
||||
|
<div style="width: 80%; margin-top: 3rem;"> |
||||
|
<img src="assets/screenshots/hero.png" |
||||
|
class="img-responsive" width="100%" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5 mb-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#714b67 !important"> |
||||
|
Key Highlights |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="row py-4"> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Simplified Odoo Vendor Management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Mail notification to Vendor</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Create individual portals for your suppliers on the Odoo website</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Approve the RFQ automatically based on the configuration</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container rounded"> |
||||
|
<ul class="nav nav-tabs d-flex" |
||||
|
style="width: fit-content;margin: 0 auto;gap: 1rem;"> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a class="active show" data-toggle="tab" href="#tab1" |
||||
|
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> |
||||
|
<i class="fa-regular fa-image pr-2" |
||||
|
style="color: #fff;"></i> |
||||
|
Screenshots</a></li> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a |
||||
|
data-toggle="tab" href="#tab2" |
||||
|
style="color: #fff;font-weight: 500; text-decoration: none;"><i |
||||
|
class="fa-solid fa-star pr-2" |
||||
|
style="color: #fff;"></i>Features</a></li> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a |
||||
|
data-toggle="tab" href="#tab3" |
||||
|
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i |
||||
|
class="fa-solid fa-book-open pr-2" |
||||
|
style="color: #fff;"></i>Released Notes</a></li> |
||||
|
</ul> |
||||
|
<div class="tab-content" |
||||
|
style="background-color: rgba(121, 113, 119, 0.04);"> |
||||
|
<div id="tab1" class="tab-pane fade in active show"> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Register Vendors to access the portal</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/1.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Send the vendor portal invitation link to invite the desired vendors to the portal</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/2.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
List of registered vendors</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/3.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Configuration for Vendor Portal</h4> |
||||
|
<p class="my-3 mb-4" |
||||
|
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
||||
|
Set the Conditions to automatically set the RFQs as completed.<br/> |
||||
|
Set the status messages that customers see in the vendor portal. |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/4.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Create RFQ with necessary details</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/5.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Send RFQ's to the Selected Vendors</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/6.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
From the vendor portal website, vendors can submit their quotes to the admin</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/7.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
When the administrator updates the backend, the vendor can check the status of his quote</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/8.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Admins are able to see the submitted Quotes</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/9.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Admins are able to mark the RFQ as done</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/10.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Vendor will receive an email when his quote has been accepted</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/11.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Portal RFQ Status of accepted quotes</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/12.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Portal RFQ Status of rejected quotes</h4> |
||||
|
</div> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/13.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="tab2" class="tab-pane fade"> |
||||
|
<div class="col-mg-12" style="padding: 1rem 4rem;"> |
||||
|
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Simplified Odoo Vendor Management |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Mail notification to Vendor |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Create individual portals for your suppliers on the Odoo website |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Approve the RFQ automatically based on the configuration |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Utilize Odoo to Manage & Track Your Vendors |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Community & Enterprise Support |
||||
|
</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="tab3" class="tab-pane fade"> |
||||
|
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> |
||||
|
<div class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="d-flex mb-3" |
||||
|
style="font-size: 0.8rem; font-weight: 500;"><span>Version |
||||
|
17.0.1.0.0</span><span |
||||
|
class="px-2">|</span><span |
||||
|
style="color: #714B67;font-weight: 600;">Released on: 1st February 2024</span> |
||||
|
</div> |
||||
|
<p class="m-0" |
||||
|
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
||||
|
Initial Commit for Odoo Vendor Portal.</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Related Products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> |
||||
|
<div class="carousel-inner"> |
||||
|
<div class="carousel-item active"> |
||||
|
<div class="row p-4"> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/purchase_product_history/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/1.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Purchase History Of Products</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/merge_rfq/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/2.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Merge RFQ</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/product_multi_attachment/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/3.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Product Multi Attachment</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="carousel-item"> |
||||
|
<div class="row p-4"> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/purchase_orderline_image/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/4.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Purchase Order Line Images</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/sale_purchase_previous_product_cost/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px;"> |
||||
|
<img src="assets/modules/5.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Previous Sale/Purchase Product Rates</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/customer_product_qrcode/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px;"> |
||||
|
<img src="assets/modules/6.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Customer Product QRcode</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<a class="carousel-control-prev" href="#myCarousel" |
||||
|
data-slide="prev" style="width: 35px; color: #000;"> |
||||
|
<span class="carousel-control-prev-icon"> |
||||
|
<i class="fa fa-chevron-left" |
||||
|
style="font-size: 24px;"></i> |
||||
|
</span> |
||||
|
</a> |
||||
|
<a class="carousel-control-next" href="#myCarousel" |
||||
|
data-slide="next" style="width: 35px; color: #000;"> |
||||
|
<span class="carousel-control-next-icon"> |
||||
|
<i class="fa fa-chevron-right" |
||||
|
style="font-size: 24px;"></i> |
||||
|
</span> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Our Services</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container my-5"> |
||||
|
<div class="row py-3"> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/cogs.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Customization</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/wrench.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Implementation</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/lifebuoy.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Support</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/user.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Hire |
||||
|
Odoo Developer</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
|
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/puzzle.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Integration</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/update.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Migration</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/consultation.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Consultancy</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/training.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Implementation</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/license.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Licensing Consultancy</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Our Industries</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container"> |
||||
|
<div class="row my-5 py-4"> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100 " |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/trading-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
||||
|
<p>Easily procure and sell your products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> |
||||
|
<img src="assets/icons/pos-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
||||
|
<p>Easy configuration and convivial experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> |
||||
|
<img src="assets/icons/education-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Education</p> |
||||
|
<p>A platform for educational management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> |
||||
|
<img src="assets/icons/manufacturing-black.png" |
||||
|
width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Manufacturing</p> |
||||
|
<p>Plan, track and schedule your operations</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> |
||||
|
<img src="assets/icons/ecom-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & |
||||
|
Website</p> |
||||
|
<p>Mobile friendly, awe-inspiring product pages</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/service-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Service |
||||
|
Management</p> |
||||
|
<p>Keep track of services and invoice</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> |
||||
|
<img src="assets/icons/restaurant-black.png" |
||||
|
width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Restaurant</p> |
||||
|
<p>Run your bar or restaurant methodically</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/hotel-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Hotel |
||||
|
Management</p> |
||||
|
<p>An all-inclusive hotel management application</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Support</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container my-5"> |
||||
|
<div class="row" style="background-color: #FFFAFE;"> |
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
||||
|
style="border-right: 1px solid #D9D9D9;"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="assets/misc/support (1) 1.svg" alt="" |
||||
|
width="60px" style="margin-right: 12px;"> |
||||
|
<div style="padding: 0px 8px;"> |
||||
|
<span |
||||
|
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need |
||||
|
Help?</span> |
||||
|
<p class="m-0" style="color:#718096;">Got |
||||
|
questions or need help? Get in touch.</p> |
||||
|
<div style="font-weight: 400;"><span><img |
||||
|
src="assets/misc/support-email.svg" |
||||
|
alt="" |
||||
|
width="18px" |
||||
|
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="assets/misc/whatsapp 1.svg" alt="" |
||||
|
width="60px" style="margin-right: 12px;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
||||
|
<p class="m-0" style="color:#718096;">Say hi to |
||||
|
us on WhatsApp!</p> |
||||
|
<div style="font-weight: 400; font-size: 16px;"><span><img |
||||
|
src="assets/misc/phone.svg" |
||||
|
alt="" width="14px" |
||||
|
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 |
||||
|
99456767686 |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<!-- Optional JavaScript --> |
||||
|
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
||||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,320 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Templates for vendor portal--> |
||||
|
<template id="portal_my_home_menu_vendor_rfq" |
||||
|
name="Portal layout My RFQs" |
||||
|
inherit_id="portal.portal_breadcrumbs" priority="25"> |
||||
|
<xpath expr="//ol[hasclass('o_portal_submenu')]" position="inside"> |
||||
|
<li t-if="page_name == 'vendor_rfq'" |
||||
|
t-attf-class="breadcrumb-item #{'active ' if not vendor_rfq else ''}"> |
||||
|
<a t-if="vendor_my_rfq" |
||||
|
t-attf-href="/my/vendor_rfqs?{{ keep_query() }}">RFQs |
||||
|
</a> |
||||
|
<t t-else=""> |
||||
|
<a href="/my/vendor_rfqs">RFQs</a> |
||||
|
</t> |
||||
|
</li> |
||||
|
<li t-if="vendor_rfq" class="breadcrumb-item active"> |
||||
|
<t t-esc="vendor_rfq.name"/> |
||||
|
</li> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
<template id="portal_my_home_vendor_rfq" name="Show Vendor RFQs" |
||||
|
customize_show="True" inherit_id="portal.portal_my_home" |
||||
|
priority="25"> |
||||
|
<xpath expr="//div[hasclass('o_portal_docs')]" position="inside"> |
||||
|
<t t-call="portal.portal_docs_entry"> |
||||
|
<t t-set="title">RFQ's</t> |
||||
|
<t t-set="url" t-value="'/my/vendor_rfqs'"/> |
||||
|
<t t-set="placeholder_count" t-value="'my_rfq_count'"/> |
||||
|
</t> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
<!-- Portal table views--> |
||||
|
<template id="portal_my_rfq" name="Portal my RFQ"> |
||||
|
<t t-call="portal.portal_layout"> |
||||
|
<t t-set="breadcrumbs_searchbar" t-value="True"/> |
||||
|
<t t-call="portal.portal_searchbar"/> |
||||
|
<t t-if="rfqs" t-call="portal.portal_table"> |
||||
|
<thead> |
||||
|
<tr class="active"> |
||||
|
<th>Reference#</th> |
||||
|
<th></th> |
||||
|
<th>Product</th> |
||||
|
<th>Quantity</th> |
||||
|
<th>Status</th> |
||||
|
<th>Quotation Date</th> |
||||
|
<th>Closing Date</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="rfqs" t-as="rfq"> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<a t-attf-href="/my/vendor_rfq/#{rfq.id}"> |
||||
|
<span t-field="rfq.name"/> |
||||
|
</a> |
||||
|
</td> |
||||
|
<td/> |
||||
|
<td> |
||||
|
<span t-field="rfq.sudo().product_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<span t-field="rfq.quantity"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<span t-field="rfq.state"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<span t-field="rfq.quote_date"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<span t-field="rfq.closing_date"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
<!-- Alert View In Portal--> |
||||
|
<template id="portal_my_vendor_rfq" name="Vendor RFQ"> |
||||
|
<t t-call="portal.portal_layout"> |
||||
|
<t t-set="o_portal_fullwidth_alert" |
||||
|
groups="purchase.group_purchase_manager"> |
||||
|
<t t-call="portal.portal_back_in_edit_mode"> |
||||
|
<t t-set="backend_url" |
||||
|
t-value="'/web#return_label=Website&model=%s&id=%s&' % (vendor_rfq._name, vendor_rfq.id)"/> |
||||
|
</t> |
||||
|
</t> |
||||
|
<br/> |
||||
|
<div class="col-12 alert alert-info" |
||||
|
t-if="vendor_rfq.state == 'in_progress' and quoted_price != 0.0"> |
||||
|
<span> |
||||
|
<t t-esc="request.env['ir.config_parameter'].sudo().get_param('vendor_portal_odoo.quote_submission_msg')"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<div class="col-12 alert alert-success" |
||||
|
t-if="vendor_rfq.state == 'done' and vendor_rfq.approved_vendor_id.id == request.env.user.partner_id.id"> |
||||
|
<span> |
||||
|
<t t-esc="request.env['ir.config_parameter'].sudo().get_param('vendor_portal_odoo.quote_accept_msg')"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<div class="col-12 alert alert-danger" |
||||
|
t-if="vendor_rfq.state in ['done', 'order'] and vendor_rfq.approved_vendor_id.id != request.env.user.partner_id.id"> |
||||
|
<span> |
||||
|
<t t-esc="request.env['ir.config_parameter'].sudo().get_param('vendor_portal_odoo.quote_not_accept_msg')"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<div class="col-12 alert alert-success" |
||||
|
t-if="vendor_rfq.state == 'order' and vendor_rfq.approved_vendor_id.id == request.env.user.partner_id.id"> |
||||
|
<span> |
||||
|
<t t-esc="request.env['ir.config_parameter'].sudo().get_param('vendor_portal_odoo.quote_to_po_msg')"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<div class="col-12 alert alert-danger" |
||||
|
t-if="vendor_rfq.state == 'cancel'"> |
||||
|
<span> |
||||
|
<t t-esc="request.env['ir.config_parameter'].sudo().get_param('vendor_portal_odoo.quote_cancel_msg')"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<br/> |
||||
|
<t t-call="portal.portal_record_layout"> |
||||
|
<t t-set="card_header"> |
||||
|
<div class="row no-gutters"> |
||||
|
<div class="col-12"> |
||||
|
<h5 class="d-flex mb-1 mb-md-0 row"> |
||||
|
<div class="col-6"> |
||||
|
<span t-field="vendor_rfq.name" |
||||
|
class="text-truncate"/> |
||||
|
<small class="text-muted d-none d-md-inline"/> |
||||
|
</div> |
||||
|
<div class="col-4"> |
||||
|
<button t-if="vendor_rfq.state == 'in_progress' and quoted_price == 0.0" |
||||
|
type="button" |
||||
|
class="btn btn-primary float-right" |
||||
|
data-toggle="modal" |
||||
|
data-target="#addQuoteModal">Quote |
||||
|
Your Details |
||||
|
</button> |
||||
|
</div> |
||||
|
<div class="col-2 text-right"> |
||||
|
<span t-if="vendor_rfq.state == 'in_progress'" |
||||
|
t-field="vendor_rfq.state" |
||||
|
class=" badge badge-pill badge-info" |
||||
|
title="Current stage of this task"/> |
||||
|
<span t-if="vendor_rfq.state == 'done'" |
||||
|
t-field="vendor_rfq.state" |
||||
|
class=" badge badge-pill badge-info" |
||||
|
title="Current stage of this task"/> |
||||
|
<span t-if="vendor_rfq.state == 'order'" |
||||
|
t-field="vendor_rfq.state" |
||||
|
class=" badge badge-pill badge-info" |
||||
|
title="Current stage of this task"/> |
||||
|
<span t-if="vendor_rfq.state == 'cancel'" |
||||
|
t-field="vendor_rfq.state" |
||||
|
class=" badge badge-pill badge-info" |
||||
|
title="Current stage of this task"/> |
||||
|
</div> |
||||
|
</h5> |
||||
|
</div> |
||||
|
</div> |
||||
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" |
||||
|
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" |
||||
|
crossorigin="anonymous"/> |
||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" |
||||
|
integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" |
||||
|
crossorigin="anonymous"/> |
||||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" |
||||
|
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" |
||||
|
crossorigin="anonymous"/> |
||||
|
<div class="modal se-modal" id="addQuoteModal" |
||||
|
tabindex="-1" role="dialog" |
||||
|
aria-labelledby="addTagLabel" aria-hidden="true"> |
||||
|
<div class="modal-dialog se-modal__dialog" |
||||
|
role="document"> |
||||
|
<div class="modal-content se-modal__content"> |
||||
|
<div class="modal-header"> |
||||
|
<h5 class="modal-title se-modal__title" |
||||
|
id="addTagModalLabel">Quote Your Details |
||||
|
</h5> |
||||
|
<button type="button" class="close" |
||||
|
data-dismiss="modal" |
||||
|
aria-label="Close"> |
||||
|
<span aria-hidden="false">X</span> |
||||
|
</button> |
||||
|
</div> |
||||
|
<form action="/quote/details" method="post" |
||||
|
enctype="multipart/form-data"> |
||||
|
<input type="hidden" name="csrf_token" |
||||
|
t-att-value="request.csrf_token()"/> |
||||
|
<input type="hidden" name="rfq_id" |
||||
|
t-att-value="vendor_rfq.id"/> |
||||
|
<div class="modal-body"> |
||||
|
<div class="row px-4"> |
||||
|
<div class="col-12 col-sm-12 col-md-6 col-lg-6 py-3"> |
||||
|
<label class="se-form-label" |
||||
|
for="price">Price |
||||
|
</label> |
||||
|
<input type="text" |
||||
|
class="form-control se-form-control" |
||||
|
id="price" |
||||
|
name="price" |
||||
|
required="true"/> |
||||
|
</div> |
||||
|
<div class="col-12 col-sm-12 col-md-6 col-lg-6 py-3"> |
||||
|
<label class="se-form-label" |
||||
|
for="delivery_date"> |
||||
|
Delivery Date |
||||
|
</label> |
||||
|
<input type="date" |
||||
|
class="form-control se-form-control" |
||||
|
id="delivery_date" |
||||
|
name="delivery_date" |
||||
|
required="true"/> |
||||
|
</div> |
||||
|
<div class="col-12 col-sm-12 col-md-12 col-lg-12 py-3"> |
||||
|
<label class="se-form-label" |
||||
|
for="tag_name">Additional |
||||
|
Note |
||||
|
</label> |
||||
|
<textarea |
||||
|
class="form-control se-form-control" |
||||
|
id="additional_note" |
||||
|
name="additional_note"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="modal-footer d-flex justify-content-between align-items-center"> |
||||
|
<input type="submit" |
||||
|
class="btn btn-primary px-5" |
||||
|
value="Quote" |
||||
|
style="border-radius: 5px !important; margin-right: 0 !important; |
||||
|
margin-left: auto;" |
||||
|
/> |
||||
|
</div> |
||||
|
</form> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
<t t-set="card_body"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-6"> |
||||
|
<div> |
||||
|
<b>Product:</b> |
||||
|
<br/> |
||||
|
<img class="mt-1 img-rounded" |
||||
|
t-att-src="image_data_uri(vendor_rfq.product_id.sudo().product_tmpl_id.image_128)" |
||||
|
alt="Product" width="50px" height="50px"/> |
||||
|
<span t-field="vendor_rfq.product_id.sudo().name"/> |
||||
|
</div> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<b>Quote Date:</b> |
||||
|
<span t-field="vendor_rfq.quote_date" |
||||
|
t-options="{'widget': 'date'}"/> |
||||
|
</div> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<b>Estimated Quote:</b> |
||||
|
<span t-field="vendor_rfq.estimated_quote"/> |
||||
|
<strong>/</strong> |
||||
|
<span t-field="vendor_rfq.product_id.sudo().uom_id.name"/> |
||||
|
</div> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<b>Estimated Delivery Date:</b> |
||||
|
<span t-field="vendor_rfq.estimated_delivery_date"/> |
||||
|
</div> |
||||
|
<br/> |
||||
|
<div t-if="vendor_rfq.notes"> |
||||
|
<strong>Note :</strong> |
||||
|
<br/> |
||||
|
<span t-field="rfqObj.notes"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-6"> |
||||
|
<div> |
||||
|
<b>Quantity:</b> |
||||
|
<span t-field="vendor_rfq.quantity"/> |
||||
|
</div> |
||||
|
|
||||
|
<br/> |
||||
|
<div> |
||||
|
<strong>Closing Date:</strong> |
||||
|
<span t-esc="vendor_rfq.closing_date"/> |
||||
|
</div> |
||||
|
<t t-if="quoted_price"> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<b>My Quoted Price :</b> |
||||
|
<t t-esc="quoted_price" |
||||
|
t-options="{"widget": "monetary", |
||||
|
"display_currency": vendor_rfq.currency_id}"/> |
||||
|
<strong>/</strong> |
||||
|
<span t-field="vendor_rfq.product_id.sudo().uom_id.name"/> |
||||
|
</div> |
||||
|
</t> |
||||
|
<t t-if="vendor_quote.estimate_date"> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<b>My Estimate Delivery Date :</b> |
||||
|
<t t-esc="vendor_quote.estimate_date"/> |
||||
|
</div> |
||||
|
</t> |
||||
|
<t t-if="vendor_quote.note"> |
||||
|
<br/> |
||||
|
<div> |
||||
|
<strong>My Note:</strong> |
||||
|
<br/> |
||||
|
<span t-field="vendor_quote.note"/> |
||||
|
</div> |
||||
|
</t> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
</odoo> |
@ -0,0 +1,133 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Configuration settings form view inherited--> |
||||
|
<record id="res_config_settings_view_form" model="ir.ui.view"> |
||||
|
<field name="name"> |
||||
|
res.config.settings.view.form.inherit.vendor.portal.odoo |
||||
|
</field> |
||||
|
<field name="model">res.config.settings</field> |
||||
|
<field name="priority" eval="15"/> |
||||
|
<field name="inherit_id" ref="base.res_config_settings_view_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//form[hasclass('oe_form_configuration')]" |
||||
|
position="inside"> |
||||
|
<div class="app_settings_block" data-string="Vendor RFQ" |
||||
|
string="Vendor RFQ" data-key="vendor_portal_odoo"> |
||||
|
<h2>Vendor RFQ</h2> |
||||
|
<div class="row mt16 o_settings_container"> |
||||
|
<div class="col-xs-12 col-md-6 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="text-muted"> |
||||
|
Set RFQs as done based on: |
||||
|
</div> |
||||
|
<div class="content-group"> |
||||
|
<div class="mt16"> |
||||
|
<field name="rfq_done_based_on" |
||||
|
class="o_light_label" |
||||
|
widget="radio" |
||||
|
options="{'horizontal': true}"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<h2>Vendor RFQs Status Message</h2> |
||||
|
<p class="text-muted" |
||||
|
style="margin-left:5%; margin-top:2%;"> |
||||
|
Message to be displayed based on the status of Vendor |
||||
|
RFQ |
||||
|
</p> |
||||
|
<div class="row mt16 o_settings_container" id="vendor_msg"> |
||||
|
<div class="col-xs-12 col-md-12 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="content-group"> |
||||
|
<p> |
||||
|
<b>Quote Submission</b> |
||||
|
</p> |
||||
|
<div class="mt16"> |
||||
|
<field name="quote_submission_msg" |
||||
|
class="o_light_label" |
||||
|
placeholder="Thanks! Received your quote. We will come back to you if your quote accepted "/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-md-12 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="content-group"> |
||||
|
<p> |
||||
|
<b>Quote Acceptance</b> |
||||
|
</p> |
||||
|
<div class="mt16"> |
||||
|
<field name="quote_accept_msg" |
||||
|
class="o_light_label" |
||||
|
placeholder="Congratulations! Your quote has been |
||||
|
accepted, and we'll soon prepare a purchase order for you. "/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-md-12 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="content-group"> |
||||
|
<p> |
||||
|
<b>Quote not Accepted Template</b> |
||||
|
</p> |
||||
|
<div class="mt16"> |
||||
|
<field name="quote_not_accept_msg" |
||||
|
class="o_light_label" |
||||
|
placeholder="We apologise that your quote was rejected. |
||||
|
We'll be happy to give you another chance shortly. "/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-md-12 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="content-group"> |
||||
|
<p> |
||||
|
<b>PO Created for the RFQ</b> |
||||
|
</p> |
||||
|
<div class="mt16"> |
||||
|
<field name="quote_to_po_msg" |
||||
|
class="o_light_label" |
||||
|
placeholder="Congratulations! For this RFQ, a Purchase Order has been made."/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-md-12 o_setting_box"> |
||||
|
<div class="o_setting_left_pane"/> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<div class="content-group"> |
||||
|
<p> |
||||
|
<b>RFQ Cancelled Template</b> |
||||
|
</p> |
||||
|
<div class="mt16"> |
||||
|
<field name="quote_cancel_msg" |
||||
|
class="o_light_label" |
||||
|
placeholder="Sorry! This RFQ has been cancelled."/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
<record id="res_config_settings_action_vendor_portal" |
||||
|
model="ir.actions.act_window"> |
||||
|
<field name="name">Settings</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">res.config.settings</field> |
||||
|
<field name="view_mode">form</field> |
||||
|
<field name="target">inline</field> |
||||
|
<field name="context">{'module' : 'vendor_portal_odoo'}</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,50 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- res.partner inherited views--> |
||||
|
<record id="view_res_partner_filter" model="ir.ui.view"> |
||||
|
<field name="name">res.partner.view.filter.inherit.vendor.portal.odoo</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_res_partner_filter"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//filter[@name='type_company']" position="after"> |
||||
|
<filter string="Registered Vendors" name="is_registered" |
||||
|
domain="[('is_registered','=', True)]"/> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Action Registered Vendors--> |
||||
|
<record id="res_partner_action_supplier_registered" model="ir.actions.act_window"> |
||||
|
<field name="name">Registered Vendors</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">res.partner</field> |
||||
|
<field name="view_mode">kanban,tree,form</field> |
||||
|
<field name="context">{'search_default_is_registered': True,'default_is_registered':True}</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create a new vendor |
||||
|
</p> |
||||
|
<p> |
||||
|
Odoo helps you easily track all activities related to a registered vendor. |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Res Partner View Form--> |
||||
|
<record id="view_partner_form" model="ir.ui.view"> |
||||
|
<field name="name">res.partner.view.form.inherit.vendor.portal.odoo</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_form"/> |
||||
|
<field name="priority" eval="9"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<div name="button_box" position="inside"> |
||||
|
<field name="is_registered" invisible="1"/> |
||||
|
<button class="oe_stat_button" name="%(vendor_portal_odoo.register_vendor_action)d" type="action" |
||||
|
icon="fa-user-plus" invisible="supplier_rank == 0"> |
||||
|
<field name="supplier_rank" invisible="1"/> |
||||
|
<span class="o_stat_text" invisible="is_registered == True">Make Portal User |
||||
|
</span> |
||||
|
<span class="o_stat_text" invisible="is_registered == False">Registered</span> |
||||
|
</button> |
||||
|
</div> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,91 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Vendor portal Menus--> |
||||
|
<menuitem |
||||
|
id="vendor_portal_menu_root" |
||||
|
name="Vendor Portal" |
||||
|
groups="base.group_user" |
||||
|
web_icon="vendor_portal_odoo,static/description/icon.png" |
||||
|
sequence="185"/> |
||||
|
<!-- Vendor Quotations Menu--> |
||||
|
<menuitem |
||||
|
id="menu_vendor_quotations" |
||||
|
name="Vendor Quotations" |
||||
|
parent="vendor_portal_menu_root" |
||||
|
sequence="1"/> |
||||
|
<!-- Vendor Quotations Menu--> |
||||
|
<menuitem |
||||
|
id="rfq_vendor_menu" |
||||
|
name="Vendor Quotations" |
||||
|
parent="menu_vendor_quotations" |
||||
|
action="vendor_rfq_action" |
||||
|
sequence="1"/> |
||||
|
<!-- In Progress Menu--> |
||||
|
<menuitem |
||||
|
id="rfq_vendor_progress_menu" |
||||
|
name="In Progress" |
||||
|
parent="menu_vendor_quotations" |
||||
|
action="vendor_rfq__action_progress" |
||||
|
sequence="1"/> |
||||
|
<!-- Done Menu--> |
||||
|
<menuitem |
||||
|
id="rfq_vendor_done_menu" |
||||
|
name="Done" |
||||
|
parent="menu_vendor_quotations" |
||||
|
action="vendor_rfq_action_done" |
||||
|
sequence="1"/> |
||||
|
<!-- Vendors Main Menu--> |
||||
|
<menuitem |
||||
|
id="menu_vendors_root" |
||||
|
name="Vendors" |
||||
|
parent="vendor_portal_menu_root" |
||||
|
sequence="3"/> |
||||
|
<!-- Vendors Menu--> |
||||
|
<menuitem |
||||
|
id="vendors_menu" |
||||
|
name="Vendors" |
||||
|
parent="menu_vendors_root" |
||||
|
action="account.res_partner_action_supplier" |
||||
|
sequence="1"/> |
||||
|
<!-- Registered Vendors Menu--> |
||||
|
<menuitem |
||||
|
id="res_partner_registered_vendors_menu" |
||||
|
name="Registered Vendors" |
||||
|
parent="menu_vendors_root" |
||||
|
action="res_partner_action_supplier_registered" |
||||
|
sequence="1"/> |
||||
|
<!-- Orders Menu--> |
||||
|
<menuitem |
||||
|
id="menu_orders_root" |
||||
|
name="Orders" |
||||
|
parent="vendor_portal_menu_root" |
||||
|
sequence="4"/> |
||||
|
<!-- Request for Quotation Menu--> |
||||
|
<menuitem |
||||
|
id="purchase_order_vendor_quotation_menu" |
||||
|
name="Request for Quotation" |
||||
|
parent="menu_orders_root" |
||||
|
action="action_vendor_request_for_quotation" |
||||
|
sequence="4"/> |
||||
|
<!-- Purchase Orders Menu--> |
||||
|
<menuitem |
||||
|
id="purchase_order_vendor_menu" |
||||
|
name="Purchase Orders" |
||||
|
parent="menu_orders_root" |
||||
|
action="action_vendor_purchase_orders" |
||||
|
sequence="4"/> |
||||
|
<!-- Configuration Menu--> |
||||
|
<menuitem |
||||
|
id="configuration_vendor_portal_menu" |
||||
|
name="Configuration" |
||||
|
parent="vendor_portal_menu_root" |
||||
|
sequence="5"/> |
||||
|
<!-- Settings Menu--> |
||||
|
<menuitem |
||||
|
id="settings_vendor_portal_menu" |
||||
|
name="Settings" |
||||
|
parent="configuration_vendor_portal_menu" |
||||
|
action="res_config_settings_action_vendor_portal" |
||||
|
groups="base.group_system" |
||||
|
sequence="1"/> |
||||
|
</odoo> |
@ -0,0 +1,167 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Vendor RFQ Form view--> |
||||
|
<record id="vendor_rfq_view_form" model="ir.ui.view"> |
||||
|
<field name="name">vendor.rfq.view.form</field> |
||||
|
<field name="model">vendor.rfq</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Vendor RFQ"> |
||||
|
<header> |
||||
|
<button name="action_send_by_mail" type="object" data-hotkey="shift+g" |
||||
|
string="Send Invitation Mail" class="oe_highlight" |
||||
|
invisible="state in ['in_progress', 'pending', 'done', 'cancel', 'order']"/> |
||||
|
<button name="action_pending" type="object" |
||||
|
string="Set to Pending" data-hotkey="shift+v" |
||||
|
invisible="state in ['pending', 'in_progress', 'done', 'cancel', 'order']"/> |
||||
|
<button name="action_done" type="object" class="oe_highlight" |
||||
|
string="Mark as Done" data-hotkey="shift+j" |
||||
|
invisible="state in ['draft', 'done', 'cancel', 'order']"/> |
||||
|
<button name="action_cancel" type="object" |
||||
|
string="Cancel" data-hotkey="shift+j" |
||||
|
invisible="state in ['done', 'cancel', 'order']"/> |
||||
|
<button name="action_create_quotation" type="object" class="oe_highlight" |
||||
|
string="Create RFQ" data-hotkey="shift+j" |
||||
|
invisible="state not in ['done']"/> |
||||
|
<field name="state" widget="statusbar" statusbar_visible="draft,in_progress,done"/> |
||||
|
</header> |
||||
|
<sheet> |
||||
|
<div class="oe_button_box" name="button_box"> |
||||
|
<button name="get_purchase_order" |
||||
|
string="Purchase Order" |
||||
|
type="object" |
||||
|
class="oe_stat_button" |
||||
|
icon="fa-credit-card" |
||||
|
invisible="order_id == False"> |
||||
|
</button> |
||||
|
<field name="order_id" invisible="1"/> |
||||
|
</div> |
||||
|
<div class="oe_title"> |
||||
|
<h1> |
||||
|
<field name="name" readonly="1"/> |
||||
|
</h1> |
||||
|
</div> |
||||
|
<group name="rfq_header"> |
||||
|
<group name="order_details"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="quantity"/> |
||||
|
<field name="estimated_quote"/> |
||||
|
<field name="currency_id" invisible="1"/> |
||||
|
<field name="company_id" invisible="1"/> |
||||
|
<field name="vendor_ids" widget="many2many_tags"/> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="quote_date"/> |
||||
|
<field name="closing_date"/> |
||||
|
<field name="estimated_delivery_date"/> |
||||
|
<field name="approved_vendor_id" |
||||
|
invisible="state not in ['done', 'order']" readonly="1"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<notebook> |
||||
|
<page string="Vendor Quote Details"> |
||||
|
<field name="vendor_quote_history_ids"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="vendor_id"/> |
||||
|
<field name="quoted_price"/> |
||||
|
<field name="currency_id" invisible="1"/> |
||||
|
<field name="estimate_date"/> |
||||
|
<field name="note"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
</sheet> |
||||
|
<div class="oe_chatter"> |
||||
|
<field name="message_follower_ids"/> |
||||
|
<field name="activity_ids"/> |
||||
|
<field name="message_ids"/> |
||||
|
</div> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Vendor RFQ Tree view --> |
||||
|
<record id="vendor_rfq_view_tree" model="ir.ui.view"> |
||||
|
<field name="name">vendor.rfq.view.tree</field> |
||||
|
<field name="model">vendor.rfq</field> |
||||
|
<field name="priority">4</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree string="Vendor RFQ" sample="1" decoration-success="state == 'done'" |
||||
|
decoration-info="state == 'in_progress'" decoration-muted="state == 'cancel'" |
||||
|
decoration-warning="state == 'pending'"> |
||||
|
<field name="name" string="RFQ Reference"/> |
||||
|
<field name="product_id"/> |
||||
|
<field name="quantity"/> |
||||
|
<field name="estimated_quote" widget="monetary" options="{'currency_field': 'currency_id'}"/> |
||||
|
<field name="currency_id" invisible="1"/> |
||||
|
<field name="estimated_delivery_date"/> |
||||
|
<field name="closing_date"/> |
||||
|
<field name="vendor_ids" widget="many2many_tags"/> |
||||
|
<field name="state"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Vendor Rfq Action--> |
||||
|
<record id="vendor_rfq_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Vendor Quotations</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">vendor.rfq</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create new vendor quotations |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Vendor RFQ Progress Action--> |
||||
|
<record id="vendor_rfq__action_progress" model="ir.actions.act_window"> |
||||
|
<field name="name">In Progress</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">vendor.rfq</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="domain">[('state','=','in_progress')]</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create new vendor quotations |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Vendor RFQ Done Action--> |
||||
|
<record id="vendor_rfq_action_done" model="ir.actions.act_window"> |
||||
|
<field name="name">Done</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">vendor.rfq</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="domain">[('state','=','done')]</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create new vendor quotations |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Request for Quotation Action--> |
||||
|
<record id="action_vendor_request_for_quotation" model="ir.actions.act_window"> |
||||
|
<field name="name">Request for Quotation</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">purchase.order</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="domain">[('state','in', ['draft', 'sent'])]</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create a new Request for quotation |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Purchase Order Action--> |
||||
|
<record id="action_vendor_purchase_orders" model="ir.actions.act_window"> |
||||
|
<field name="name">Purchase Order</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">purchase.order</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="domain">[('state','in', ['purchase', 'done'])]</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create a new Purchase order |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,23 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from . import register_vendor |
||||
|
from . import rfq_done |
@ -0,0 +1,76 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import fields, models, _ |
||||
|
from odoo.exceptions import ValidationError |
||||
|
from odoo.tools import email_normalize |
||||
|
|
||||
|
|
||||
|
class RegisterVendor(models.TransientModel): |
||||
|
"""Vendor Registration""" |
||||
|
_name = 'register.vendor' |
||||
|
_description = 'Register Vendors' |
||||
|
|
||||
|
def default_is_registered(self): |
||||
|
"""default value for is registered""" |
||||
|
if self.env.context.get('active_model') == 'res.partner': |
||||
|
users = self.env['res.users'].search([( |
||||
|
'partner_id', '=', self.env.context.get('active_id'))]) |
||||
|
if users: |
||||
|
return True |
||||
|
return False |
||||
|
|
||||
|
is_registered = fields.Boolean(default=default_is_registered) |
||||
|
|
||||
|
def action_create_user_portal(self): |
||||
|
"""creating the portal user""" |
||||
|
if self.env.context.get('active_model') == 'res.partner': |
||||
|
partner = self.env['res.partner'].browse( |
||||
|
self.env.context.get('active_id')) |
||||
|
if not partner.email: |
||||
|
raise ValidationError(_("Provide Email For Vendor")) |
||||
|
user = self.env['res.users'].with_context(no_reset_password=True).sudo()._create_user_from_template({ |
||||
|
'email': email_normalize(partner.email), |
||||
|
'login': email_normalize(partner.email), |
||||
|
'partner_id': partner.id, |
||||
|
'company_id': self.env.company.id, |
||||
|
'company_ids': [(6, 0, self.env.company.ids)], |
||||
|
'active': True |
||||
|
}) |
||||
|
self._send_email(user) |
||||
|
partner.sudo().write({ |
||||
|
'is_registered': True, |
||||
|
}) |
||||
|
|
||||
|
def _send_email(self, user): |
||||
|
""" send notification email to a new portal user """ |
||||
|
self.ensure_one() |
||||
|
self.env['portal.wizard'].action_open_wizard() |
||||
|
return True |
||||
|
|
||||
|
def send_password_reset_portal(self): |
||||
|
"""Send password reset email""" |
||||
|
if self.env.context.get('active_model') == 'res.partner': |
||||
|
partner = self.env['res.partner'].browse( |
||||
|
self.env.context.get('active_id')) |
||||
|
user = self.env['res.users'].search([ |
||||
|
('partner_id', '=', partner.id)]) |
||||
|
user.action_reset_password() |
@ -0,0 +1,40 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Register vendor views --> |
||||
|
<record id="register_vendor_view_form" model="ir.ui.view"> |
||||
|
<field name="name">register.vendor.wizard.view.form</field> |
||||
|
<field name="model">register.vendor</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Vendor Portal Account"> |
||||
|
<field name="is_registered" invisible="1"/> |
||||
|
<div class="text-muted" |
||||
|
invisible="is_registered == False"> |
||||
|
An account is already registered for this vendor, |
||||
|
vendor will receive a Password reset instruction. |
||||
|
</div> |
||||
|
<div class="text-muted" |
||||
|
invisible="is_registered == True"> |
||||
|
A portal user is created for this vendor, |
||||
|
vendor will receive a Signup Invitation. |
||||
|
</div> |
||||
|
<footer> |
||||
|
<button name="action_create_user_portal" type="object" |
||||
|
string="Send Vendor Login/Signup Invitation " class="oe_highlight" data-hotkey="q" |
||||
|
invisible="is_registered == True"/> |
||||
|
<button name="send_password_reset_portal" type="object" |
||||
|
string="Send Reset Password Instruction" class="oe_highlight" data-hotkey="w" |
||||
|
invisible="is_registered == False"/> |
||||
|
<button special="cancel" data-hotkey="z" string="Cancel"/> |
||||
|
</footer> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Register Vendor Action--> |
||||
|
<record id="register_vendor_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Vendor Portal Account</field> |
||||
|
<field name="res_model">register.vendor</field> |
||||
|
<field name="view_mode">form</field> |
||||
|
<field name="target">new</field> |
||||
|
<field name="view_id" ref="register_vendor_view_form"/> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,73 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class RfqDone(models.TransientModel): |
||||
|
"""Done the Quotation""" |
||||
|
_name = 'rfq.done' |
||||
|
_description = 'Done RFQs' |
||||
|
|
||||
|
vendor_id = fields.Many2one('vendor.quote.history', string='Vendor', |
||||
|
required=True, |
||||
|
domain='[("id", "in", quote_ids)]', |
||||
|
help="Vendors Who Accepted the Quotes") |
||||
|
quote_ids = fields.Many2many('vendor.quote.history', |
||||
|
string="Quotes", help="Quotes for the Order") |
||||
|
quoted_price = fields.Monetary(currency_field='currency_id', |
||||
|
related='vendor_id.quoted_price', |
||||
|
string='Quoted Price', |
||||
|
help="Quoted Price") |
||||
|
currency_id = fields.Many2one('res.currency', string='Currency', |
||||
|
help="Currency", |
||||
|
required=True, |
||||
|
default=lambda |
||||
|
self: self.env.user.company_id.currency_id, |
||||
|
related='vendor_id.currency_id') |
||||
|
estimate_date = fields.Date(related='vendor_id.estimate_date', |
||||
|
string='Estimate Date', |
||||
|
help="Estimated Date") |
||||
|
|
||||
|
def action_done(self): |
||||
|
"""Marking the RFQ as done""" |
||||
|
rfq = self.env['vendor.rfq'].browse(self._context.get('active_id')) |
||||
|
template_id = self.env.ref( |
||||
|
'vendor_portal_odoo.email_template_vendor_rfq_mark_done').id |
||||
|
context = { |
||||
|
'name': self.vendor_id.vendor_id.name, |
||||
|
'lang': self.vendor_id.vendor_id.lang, |
||||
|
'price': self.vendor_id.quoted_price, |
||||
|
'delivery_date': self.vendor_id.estimate_date, |
||||
|
'currency_id': self.vendor_id.currency_id |
||||
|
} |
||||
|
email_values = { |
||||
|
'email_to': self.vendor_id.vendor_id.email, |
||||
|
'email_from': self.env.user.partner_id.email, |
||||
|
} |
||||
|
self.env['mail.template'].browse(template_id).with_context( |
||||
|
context).send_mail(self.vendor_id.quote_id.id, |
||||
|
email_values=email_values, |
||||
|
force_send=True) |
||||
|
rfq.write({ |
||||
|
'approved_vendor_id': self.vendor_id.vendor_id.id, |
||||
|
'state': 'done' |
||||
|
}) |
@ -0,0 +1,35 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<odoo> |
||||
|
<!-- RFQ Done views--> |
||||
|
<record id="rfq_done_view_form" model="ir.ui.view"> |
||||
|
<field name="name">mark.done.wizard.view.form</field> |
||||
|
<field name="model">rfq.done</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Mark as Done"> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="vendor_id"/> |
||||
|
<field name="quote_ids" invisible="1"/> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="quoted_price"/> |
||||
|
<field name="estimate_date"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<footer> |
||||
|
<button name="action_done" type="object" |
||||
|
string="Mark as Done" class="oe_highlight" data-hotkey="q"/> |
||||
|
<button special="cancel" data-hotkey="z" string="Cancel"/> |
||||
|
</footer> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- RFQ Done Action--> |
||||
|
<record id="rfq_done_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Mark as Done</field> |
||||
|
<field name="res_model">rfq.done</field> |
||||
|
<field name="view_mode">form</field> |
||||
|
<field name="target">new</field> |
||||
|
<field name="view_id" ref="rfq_done_view_form"/> |
||||
|
</record> |
||||
|
</odoo> |