@ -0,0 +1,43 @@ |
|||
.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg |
|||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html |
|||
:alt: License: LGPL-3 |
|||
|
|||
Odoo Vendor Portal |
|||
================== |
|||
Vendor Portal in Odoo |
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
* Developers: Noorjahan @cybrosys |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
|||
|
|||
|
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models |
|||
from . import wizard |
|||
from . import controllers |
@ -0,0 +1,52 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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': '15.0.1.0.0', |
|||
'category': 'Purchase', |
|||
'summary': """Vendor Portal Management in Odoo""", |
|||
'description': """Vendor Portal Management in Odoo""", |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'website': "https://www.cybrosys.com", |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'depends': ['website', 'purchase', 'portal'], |
|||
'data': [ |
|||
'security/ir.model.access.csv', |
|||
'wizard/wizard.xml', |
|||
'wizard/mark_done.xml', |
|||
'data/rfq_sequence.xml', |
|||
'data/rfq_mail_template.xml', |
|||
'data/rfq_cron.xml', |
|||
'views/vendor.xml', |
|||
'views/vendor_rfq.xml', |
|||
'views/res_config_settings.xml', |
|||
'views/portal_rfq.xml', |
|||
'views/menu.xml', |
|||
], |
|||
'images': ['static/description/banner.png'], |
|||
'license': 'LGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': True, |
|||
} |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 main |
|||
|
@ -0,0 +1,141 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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, counters): |
|||
"""RFQ's in home portal""" |
|||
user = request.env.user.partner_id |
|||
values = super()._prepare_home_portal_values(counters) |
|||
if 'my_rfq_count' in counters: |
|||
values['my_rfq_count'] = request.env[ |
|||
'rfq.vendor'].search_count( |
|||
[('vendor_ids', 'in', user.ids)]) if request.env[ |
|||
'rfq.vendor'].check_access_rights( |
|||
'read', raise_exception=False) else 0 |
|||
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 RFQ's""" |
|||
values = self._prepare_portal_layout_values() |
|||
user = request.env.user.partner_id |
|||
VendorRFQ = request.env['rfq.vendor'].search([]) |
|||
domain = [ |
|||
('vendor_ids', 'in', user.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 = VendorRFQ.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 = VendorRFQ.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['rfq.vendor'].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['rfq.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,13 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<record id="ir_cron_quote_rfq" model="ir.cron"> |
|||
<field name="name">Set RFQ's as Done</field> |
|||
<field name="model_id" ref="model_rfq_vendor"/> |
|||
<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,63 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<data> |
|||
<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_rfq_vendor"/> |
|||
<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 |
|||
<t t-out="object.quantity"/><t t-out="object.unit_id.name"/> |
|||
from you. |
|||
<br/><br/> |
|||
If you are interested, please check below link and let us know the quote |
|||
<br/><br/> |
|||
Best regards, |
|||
<br/> |
|||
<t t-out="object.user_id.name"/> |
|||
</p> |
|||
</div> |
|||
</field> |
|||
<!-- <field name="report_template" ref="report_purchase_quotation"/>--> |
|||
<!-- <field name="report_name">RFQ_{{ (object.name or '').replace('/','_') }}</field>--> |
|||
<field name="lang">{{ ctx.get('lang') }}</field> |
|||
<field name="auto_delete" eval="True"/> |
|||
</record> |
|||
<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_rfq_vendor"/> |
|||
<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="report_template" ref="report_purchase_quotation"/>--> |
|||
<!-- <field name="report_name">RFQ_{{ (object.name or '').replace('/','_') }}</field>--> |
|||
<field name="lang">{{ ctx.get('lang') }}</field> |
|||
<field name="auto_delete" eval="True"/> |
|||
</record> |
|||
|
|||
</data> |
|||
</odoo> |
@ -0,0 +1,12 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<data> |
|||
<record id="seq_vendor_rfq" model="ir.sequence"> |
|||
<field name="name">RFQ Sequence</field> |
|||
<field name="code">rfq.vendor</field> |
|||
<field name="prefix">RFQ</field> |
|||
<field name="padding">5</field> |
|||
<field name="company_id" eval="False"/> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,7 @@ |
|||
## Module <vendor_portal_odoo> |
|||
|
|||
#### 12.01.2023 |
|||
#### Version 15.0.1.0.0 |
|||
##### ADD |
|||
- Initial commit for Vendor Portal Odoo |
|||
|
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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_partner |
|||
from . import res_config_settings |
|||
from . import vendor_rfq |
@ -0,0 +1,84 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models, fields |
|||
|
|||
|
|||
class ResConfigSettings(models.TransientModel): |
|||
_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') |
|||
quote_submission_msg = fields.Text( |
|||
help="Status message to display if a quote was submitted") |
|||
quote_accept_msg = fields.Text( |
|||
help="Status message to display if a quote was accepted") |
|||
quote_not_accept_msg = fields.Text( |
|||
help="Status message to display if a quote was not accepted" |
|||
) |
|||
quote_cancel_msg = fields.Text( |
|||
help="Status message to display if a quote was cancelled") |
|||
quote_to_po_msg = fields.Text( |
|||
help="Status message to display if a quote was converted to PO") |
|||
|
|||
def set_values(self): |
|||
"""vendor rfq's setting field values""" |
|||
res = super(ResConfigSettings, self).set_values() |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.rfq_done_based_on', self.rfq_done_based_on) |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.quote_submission_msg', |
|||
self.quote_submission_msg) |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.quote_accept_msg', self.quote_accept_msg) |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.quote_not_accept_msg', |
|||
self.quote_not_accept_msg) |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.quote_cancel_msg', self.quote_cancel_msg) |
|||
self.env['ir.config_parameter'].set_param( |
|||
'vendor_portal_odoo.quote_to_po_msg', self.quote_to_po_msg) |
|||
return res |
|||
|
|||
def get_values(self): |
|||
"""vendor rfq's getting field values""" |
|||
res = super(ResConfigSettings, self).get_values() |
|||
res['rfq_done_based_on'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.rfq_done_based_on') |
|||
res['quote_submission_msg'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.quote_submission_msg') |
|||
res['quote_accept_msg'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.quote_accept_msg') |
|||
res['quote_not_accept_msg'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.quote_not_accept_msg') |
|||
res['quote_cancel_msg'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.quote_cancel_msg') |
|||
res['quote_to_po_msg'] = self.env[ |
|||
'ir.config_parameter'].sudo().get_param( |
|||
'vendor_portal_odoo.quote_to_po_msg') |
|||
return res |
@ -0,0 +1,30 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models, fields |
|||
|
|||
|
|||
class ResPartner(models.Model): |
|||
_inherit = 'res.partner' |
|||
|
|||
is_registered = fields.Boolean(default=False, |
|||
help="To denote the is the partner is " |
|||
"registered as vendor") |
@ -0,0 +1,186 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models, api, fields |
|||
|
|||
|
|||
class VendorRFQ(models.Model): |
|||
_name = 'rfq.vendor' |
|||
_inherit = ['mail.thread', 'mail.activity.mixin'] |
|||
_description = 'Vendor RFQ' |
|||
|
|||
name = fields.Char('RFQ Reference', required=True, index=True, |
|||
copy=False, default='New') |
|||
product_id = fields.Many2one('product.product') |
|||
quantity = fields.Float() |
|||
unit_id = fields.Many2one('uom.uom') |
|||
currency_id = fields.Many2one('res.currency') |
|||
estimated_quote = fields.Monetary(currency_field='currency_id', |
|||
help="Estimated Quote Price") |
|||
currency_id = fields.Many2one('res.currency', string='Currency', |
|||
required=True, |
|||
default=lambda |
|||
self: self.env.user.company_id.currency_id) |
|||
notes = fields.Html('Notes') |
|||
estimated_delivery_date = fields.Date() |
|||
quote_date = fields.Datetime(default=fields.Datetime.now(), readonly=1) |
|||
closing_date = fields.Date() |
|||
pricelist_id = fields.Many2one('product.pricelist') |
|||
sales_price = fields.Monetary() |
|||
cost_price = fields.Monetary() |
|||
vendor_ids = fields.Many2many('res.partner', |
|||
domain="[('is_registered', '=', True)]") |
|||
vendor_quote_history_ids = fields.One2many('rfq.vendor.quote_history', |
|||
'quote_id') |
|||
user_id = fields.Many2one('res.users', default=lambda self: self.env.user, |
|||
string="Responsible") |
|||
approved_vendor_id = fields.Many2one('res.partner') |
|||
order_id = fields.Many2one('purchase.order') |
|||
state = fields.Selection([ |
|||
('draft', 'Draft'), |
|||
('pending', 'Pending'), |
|||
('in_progress', 'In Progress'), |
|||
('done', 'Done'), |
|||
('cancel', 'Cancelled'), ('order', 'Purchase Order'), |
|||
], string="Status", default='draft') |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
"""Create function""" |
|||
if vals.get('name', 'New') == 'New': |
|||
vals['name'] = self.env['ir.sequence'].next_by_code( |
|||
'rfq.vendor') or '/' |
|||
res = super(VendorRFQ, self).create(vals) |
|||
return res |
|||
|
|||
def send_by_mail(self): |
|||
"""Send By email""" |
|||
template_id = 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_id).with_context( |
|||
context).send_mail(self.id, email_values=email_values, |
|||
force_send=True) |
|||
self.state = 'in_progress' |
|||
|
|||
def action_pending(self): |
|||
"""Action pending""" |
|||
self.state = 'pending' |
|||
|
|||
def action_cancel(self): |
|||
"""Action cancel""" |
|||
self.state = 'cancel' |
|||
|
|||
def mark_as_done(self): |
|||
"""Mark as done""" |
|||
return { |
|||
'type': 'ir.actions.act_window', |
|||
'view_mode': 'form', |
|||
'res_model': 'rfq.done', |
|||
'target': 'new', |
|||
'views': [[False, 'form']], |
|||
} |
|||
|
|||
def action_create_quotation(self): |
|||
"""Create quotation""" |
|||
rfq_quote = self.env['rfq.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's as done""" |
|||
quotes = self.env['rfq.vendor'].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')], |
|||
} |
|||
|
|||
|
|||
class VendorQuoteHistory(models.Model): |
|||
_name = 'rfq.vendor.quote_history' |
|||
_rec_name = 'vendor_id' |
|||
|
|||
vendor_id = fields.Many2one('res.partner', |
|||
domain="[('is_registered', '=', True)]") |
|||
quoted_price = fields.Monetary(currency_field='currency_id') |
|||
currency_id = fields.Many2one('res.currency', string='Currency', |
|||
required=True, |
|||
default=lambda |
|||
self: self.env.user.company_id.currency_id) |
|||
estimate_date = fields.Date() |
|||
note = fields.Text() |
|||
quote_id = fields.Many2one('rfq.vendor') |
|||
|
|
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.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 673 B |
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: 51 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 152 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 236 KiB |
After Width: | Height: | Size: 163 KiB |
After Width: | Height: | Size: 178 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 215 KiB |
After Width: | Height: | Size: 204 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 143 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 165 KiB |
After Width: | Height: | Size: 167 KiB |
After Width: | Height: | Size: 170 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,711 @@ |
|||
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" |
|||
style="border-bottom: 1px solid #d5d5d5;"> |
|||
<div class="my-3"> |
|||
<img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div |
|||
style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
<div |
|||
style="background-color: #875A7B !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
|||
<i class="fa fa-check mr-1"></i>Enterprise |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="container" style="padding: 0rem 1.5rem 4rem !important"> |
|||
<div class="row" style="height: 900px !important;"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12" |
|||
style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;"> |
|||
<h1 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important; font-size: 3.5rem !important; text-align: center !important;"> |
|||
Odoo Vendor Portal</h1> |
|||
<p |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important; font-size: 1.4rem !important; text-align: center !important;"> |
|||
Vendor Portal Management in Odoo15 |
|||
</p> |
|||
<img src="./assets/screenshots/hero.png" class="img-responsive" width="100%" height="auto" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-compass mr-2"></i>Explore this module |
|||
</h2> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#overview" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Overview</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
Learn more about this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#features" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Features</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
View features of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#screenshots" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Screenshots</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
See key screenshots of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
<div class="row" id="overview"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-pie-chart mr-2"></i>Overview |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-mg-12 pl-3"> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> |
|||
This module helps to simplify the purchase and vendor management in Odoo.</p> |
|||
|
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
<div class="row" id="features"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-star mr-2"></i>Features |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Community & Enterprise Support</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Available in Odoo 15.0 Community and Enterprise.</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Simplified Odoo Vendor Management</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Create individual portals for your suppliers on the Odoo website.</h4> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Utilize Odoo to Manage & Track Your Vendors </h4> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Mail notification to Vendor</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Approve the RFQ automatically based on the configuration</h4> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<div class="row" id="screenshots"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-image mr-2"></i>Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="col-lg-12 my-2"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Register Vendors to access the portal</h4> |
|||
<img src="assets/screenshots/vendor_2.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; 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> |
|||
|
|||
<img src="assets/screenshots/vendor_3.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
List of registered vendors</h4> |
|||
|
|||
<img src="assets/screenshots/vendor_4.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Configuration for Vendor Portal </h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Set the Conditions to automatically set the Rfqs as completed. </p> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Set the status messages that customers see in the vendor portal. . </p> |
|||
|
|||
|
|||
<img src="assets/screenshots/vendor_1.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Create RFQ with necessary details</h4> |
|||
|
|||
<img src="assets/screenshots/vendor_5.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Send RFQ's to the Selected Vendors</h4> |
|||
|
|||
<img src="assets/screenshots/vendor_6.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; 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> |
|||
|
|||
<img src="assets/screenshots/vendor_7.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; 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> |
|||
|
|||
<img src="assets/screenshots/vendor_8.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Admins are able to see the submitted Quotes </h4> |
|||
|
|||
<img src="assets/screenshots/vendor_9.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Admins are able to mark the RFQ as done </h4> |
|||
|
|||
<img src="assets/screenshots/vendor_10.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Vendor will receive an email when his quote has been accepted </h4> |
|||
|
|||
<img src="assets/screenshots/vendor_11.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Portal RFQ Status of accepted quotes </h4> |
|||
|
|||
<img src="assets/screenshots/vendor_12.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Portal RFQ Status of rejected quotes </h4> |
|||
|
|||
<img src="assets/screenshots/vendor_13.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
|
|||
<!-- SUGGESTED PRODUCTS --> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center" |
|||
style="text-align: center; padding: 2.5rem 1rem !important;"> |
|||
<h2 style="color: #212529 !important;">Suggested Products</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
|
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/export_stockinfo_xls/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/export_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/dashboard_pos/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/pos_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/product_approval_management/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/approval_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/base_account_budget/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/budget_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/shopify_odoo_connector/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/shopify_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/odoo11_magento2/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/magento_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
|||
style="left:-25px;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="#demo1" data-slide="next" |
|||
style="right:-25px;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> |
|||
</div> |
|||
<!-- END OF SUGGESTED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Services</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Customization</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Support</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire |
|||
Odoo |
|||
Developer</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Integration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Migration</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Consultancy</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Industries</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/trading-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure |
|||
and |
|||
sell your products</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/pos-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy |
|||
configuration |
|||
and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/education-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for |
|||
educational management</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/manufacturing-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and |
|||
schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/ecom-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile |
|||
friendly, |
|||
awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/service-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of |
|||
services and invoice</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/restaurant-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or |
|||
restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/hotel-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An |
|||
all-inclusive |
|||
hotel management application</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</section> |
|||
|
|||
<!-- END OF END OF OUR INDUSTRIES --> |
|||
|
|||
<!-- FOOTER --> |
|||
<!-- Footer Section --> |
|||
<section class="container" style="margin: 5rem auto 2rem;"> |
|||
<div class="row" style="max-width:1540px;"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Need Help?</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- Contact Cards --> |
|||
<div class="row d-flex justify-content-center align-items-center" |
|||
style="max-width:1540px; margin: 0 auto 2rem auto;"> |
|||
|
|||
<div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; "> |
|||
|
|||
<div class="row mt-4"> |
|||
<div class="col-lg-6"> |
|||
<a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a> |
|||
</div> |
|||
<div class="col-lg-6"> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" |
|||
class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #25D366; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-whatsapp mr-2"></i>WhatsApp</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
<!-- End of Contact Cards --> |
|||
</section> |
|||
<!-- Footer --> |
|||
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
|||
<div class="row" style="max-width:1540px; margin: 0 auto; margin-right: 3rem; "> |
|||
<!-- Logo --> |
|||
<div class="col-lg-12 d-flex justify-content-center align-items-center" style="margin-top: 3rem;"> |
|||
<img src="https://www.cybrosys.com/images/logo.png" width="200px" height="auto" /> |
|||
</div> |
|||
<!-- End of Logo --> |
|||
<div class="col-lg-12"> |
|||
<hr |
|||
style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;"> |
|||
<!-- End of Footer Section --> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF FOOTER --> |
|||
|
|||
</div> |
@ -0,0 +1,79 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<menuitem |
|||
id="menu_vendor_portal_root" |
|||
name="Vendor Portal" |
|||
groups="base.group_user" |
|||
web_icon="vendor_portal_odoo,static/description/icon.png" |
|||
sequence="185"/> |
|||
<menuitem |
|||
id="menu_vendor_quotations" |
|||
name="Vendor Quotations" |
|||
parent="menu_vendor_portal_root" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_vendor_quotations_main" |
|||
name="Vendor Quotations" |
|||
parent="menu_vendor_quotations" |
|||
action="action_vendor_rfq" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_vendor_quotations_progress" |
|||
name="In Progress" |
|||
parent="menu_vendor_quotations" |
|||
action="action_vendor_rfq_progress" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_vendor_quotations_done" |
|||
name="Done" |
|||
parent="menu_vendor_quotations" |
|||
action="action_vendor_rfq_done" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_vendors_root" |
|||
name="Vendors" |
|||
parent="menu_vendor_portal_root" |
|||
sequence="3"/> |
|||
<menuitem |
|||
id="menu_vendors" |
|||
name="Vendors" |
|||
parent="menu_vendors_root" |
|||
action="account.res_partner_action_supplier" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_registered_vendors" |
|||
name="Registered Vendors" |
|||
parent="menu_vendors_root" |
|||
action="registered_res_partner_action_supplier" |
|||
sequence="1"/> |
|||
<menuitem |
|||
id="menu_orders_root" |
|||
name="Orders" |
|||
parent="menu_vendor_portal_root" |
|||
sequence="4"/> |
|||
<menuitem |
|||
id="menu_request_quotation" |
|||
name="Request for Quotation" |
|||
parent="menu_orders_root" |
|||
action="action_vendor_request_for_quotation" |
|||
sequence="4"/> |
|||
<menuitem |
|||
id="menu_purchase_orders" |
|||
name="Purchase Orders" |
|||
parent="menu_orders_root" |
|||
action="action_vendor_purchase_orders" |
|||
sequence="4"/> |
|||
<menuitem |
|||
id="menu_vendor_portal_configuration" |
|||
name="Configuration" |
|||
parent="menu_vendor_portal_root" |
|||
sequence="100"/> |
|||
<menuitem |
|||
id="vendor_portal_settings_menu" |
|||
name="Settings" |
|||
parent="menu_vendor_portal_configuration" |
|||
action="action_vendor_portal_config" |
|||
groups="base.group_system" |
|||
sequence="100"/> |
|||
|
|||
</odoo> |
@ -0,0 +1,310 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<template id="portal_my_home_menu_vendor_rfq" |
|||
name="Portal layout : My RFQ's" |
|||
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() }}">RFQ's |
|||
</a> |
|||
<t t-else=""> |
|||
<a href="/my/vendor_rfqs">RFQ's</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 RFQ's" |
|||
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> |
|||
<template id="portal_my_rfq" name="Portal: My Avware Unit Orders"> |
|||
<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> |
|||
<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> |
|||
<template id="portal_my_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"></small> |
|||
</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> |
|||
<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,127 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<record id="res_config_settings_view_form" model="ir.ui.view"> |
|||
<field name="name"> |
|||
res.config.settings.view.form.inherit.vendor.portal |
|||
</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="//div[hasclass('settings')]" 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"> |
|||
<label for="rfq_done_based_on" |
|||
string="Set RFQs as done"/> |
|||
<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"> |
|||
<label for="quote_submission_msg" |
|||
string="Quote Submission"/> |
|||
<div class="content-group"> |
|||
<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"> |
|||
<label for="quote_accept_msg" |
|||
string="Quote Acceptance"/> |
|||
<div class="content-group"> |
|||
<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"> |
|||
<label for="quote_not_accept_msg" |
|||
string="Quote not Accepted Template"/> |
|||
<div class="content-group"> |
|||
<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"> |
|||
<label for="quote_to_po_msg" |
|||
string="PO created for the RFQ"/> |
|||
<div class="content-group"> |
|||
<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"> |
|||
<label for="quote_cancel_msg" |
|||
string="RFQ Cancelled Template"/> |
|||
<div class="content-group"> |
|||
<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="action_vendor_portal_config" model="ir.actions.act_window"> |
|||
<field name="name">Vendor Portal</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> |
|||
<record id="vendor_search_view_inherit" model="ir.ui.view"> |
|||
<field name="name">vendor.form.search.inherit</field> |
|||
<field name="model">res.partner</field> |
|||
<field name="inherit_id" ref="base.view_res_partner_filter"/> |
|||
<field name="groups_id" eval="[(4, ref('purchase.group_purchase_user'))]"/> |
|||
<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> |
|||
|
|||
<record id="registered_res_partner_action_supplier" 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}</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> |
|||
|
|||
<record id="vendor_view_form" model="ir.ui.view"> |
|||
<field name="name">vendor.form.inherit</field> |
|||
<field name="model">res.partner</field> |
|||
<field name="inherit_id" ref="base.view_partner_form" /> |
|||
<field name="priority" eval="9"/> |
|||
<field name="groups_id" eval="[(4, ref('purchase.group_purchase_user'))]"/> |
|||
<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" |
|||
groups="purchase.group_purchase_user" |
|||
icon="fa-user-plus" attrs="{'invisible': [('supplier_rank','=',0)]}"> |
|||
<field name="supplier_rank" invisible="1"/> |
|||
<span class="o_stat_text" attrs="{'invisible': [('is_registered', '=', True)]}">Make Portal User</span> |
|||
<span class="o_stat_text" attrs="{'invisible': [('is_registered', '=', False)]}">Registered</span> |
|||
</button> |
|||
</div> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,164 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<odoo> |
|||
<record id="view_vendor_rfq_form" model="ir.ui.view"> |
|||
<field name="name">vendor.rfq.form</field> |
|||
<field name="model">rfq.vendor</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Vendor RFQ"> |
|||
<header> |
|||
<button name="send_by_mail" type="object" data-hotkey="shift+g" |
|||
string="Send Invitation Mail" class="oe_highlight" |
|||
attrs="{'invisible': [('state', 'in', ['in_progress', 'pending', 'done', 'cancel', 'order'])]}"/> |
|||
<button name="action_pending" type="object" |
|||
string="Set to Pending" data-hotkey="shift+v" |
|||
attrs="{'invisible': [('state', 'in', ['pending', 'in_progress', 'done', 'cancel', 'order'])]}"/> |
|||
<button name="mark_as_done" type="object" class="oe_highlight" |
|||
string="Mark as Done" data-hotkey="shift+j" |
|||
attrs="{'invisible': [('state', 'in', ['draft', 'done', 'cancel', 'order'])]}"/> |
|||
<button name="action_cancel" type="object" |
|||
string="Cancel" data-hotkey="shift+j" |
|||
attrs="{'invisible': [('state', 'in', ['done', 'cancel', 'order'])]}"/> |
|||
<button name="action_create_quotation" type="object" class="oe_highlight" |
|||
string="Create RFQ" data-hotkey="shift+j" |
|||
attrs="{'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" |
|||
attrs="{'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="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" attrs="{'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> |
|||
|
|||
<record id="view_vendor_rfq_tree" model="ir.ui.view"> |
|||
<field name="name">vendor.rfq.tree</field> |
|||
<field name="model">rfq.vendor</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> |
|||
|
|||
<record id="action_vendor_rfq" model="ir.actions.act_window"> |
|||
<field name="name">Vendor Quotations</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">rfq.vendor</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> |
|||
<record id="action_vendor_rfq_progress" model="ir.actions.act_window"> |
|||
<field name="name">In Progress</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">rfq.vendor</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> |
|||
<record id="action_vendor_rfq_done" model="ir.actions.act_window"> |
|||
<field name="name">Done</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">rfq.vendor</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> |
|||
<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> |
|||
<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) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 wizard |
|||
from . import mark_done |
@ -0,0 +1,65 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models, fields |
|||
|
|||
|
|||
class MarkAsDone(models.TransientModel): |
|||
_name = 'rfq.done' |
|||
|
|||
def compute_domain(self): |
|||
return [('quote_id', '=', self.env.context.get('active_id'))] |
|||
|
|||
vendor_id = fields.Many2one('rfq.vendor.quote_history', |
|||
domain=compute_domain) |
|||
quoted_price = fields.Monetary(currency_field='currency_id', |
|||
related='vendor_id.quoted_price') |
|||
currency_id = fields.Many2one('res.currency', string='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') |
|||
|
|||
def mark_as_done(self): |
|||
"""Marking the RFQ as done""" |
|||
rfq_id = self.env['rfq.vendor'].search([ |
|||
('id', '=', 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_id.write({ |
|||
'approved_vendor_id': self.vendor_id.vendor_id.id, |
|||
'state': 'done' |
|||
}) |
@ -0,0 +1,34 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<record id="mark_done_view_form" model="ir.ui.view"> |
|||
<field name="name">mark.done.wizard.form</field> |
|||
<field name="model">rfq.done</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Mark as Done"> |
|||
<group> |
|||
<group> |
|||
<field name="vendor_id"/> |
|||
</group> |
|||
<group> |
|||
<field name="quoted_price"/> |
|||
<field name="estimate_date"/> |
|||
</group> |
|||
</group> |
|||
<footer> |
|||
<button name="mark_as_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> |
|||
|
|||
<record id="mark_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="mark_done_view_form"/> |
|||
</record> |
|||
|
|||
</odoo> |
@ -0,0 +1,71 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Noorjahan N A (<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 models, fields |
|||
from odoo.tools import email_normalize |
|||
|
|||
|
|||
class RegisterVendor(models.TransientModel): |
|||
_name = 'register.vendor' |
|||
|
|||
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, readonly=1) |
|||
portal_user = fields.Many2one('res.users') |
|||
|
|||
def 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')) |
|||
user = self.env['res.users'].with_context( |
|||
no_reset_password=False)._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)]}) |
|||
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() |
|||
portal = 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,37 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<record id="register_vendor_user_view_form" model="ir.ui.view"> |
|||
<field name="name">register.vendor.wizard.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" |
|||
attrs="{'invisible': [('is_registered', '=', False)]}"> |
|||
An account is already registered for this vendor, |
|||
vendor will receive a Password reset instruction. |
|||
</div> |
|||
<div class="text-muted" |
|||
attrs="{'invisible': [('is_registered', '=', True)]}"> |
|||
A portal user is created for this vendor, |
|||
vendor will receive a Signup Invitation. |
|||
</div> |
|||
<footer> |
|||
<button name="create_user_portal" type="object" |
|||
string="Send Vendor Login/Signup Invitation " class="oe_highlight" data-hotkey="q" attrs="{'invisible': [('is_registered', '=', True)]}"/> |
|||
<button name="send_password_reset_portal" type="object" |
|||
string="Send Reset Password Instruction" class="oe_highlight" data-hotkey="w" attrs="{'invisible': [('is_registered', '=', False)]}"/> |
|||
<button special="cancel" data-hotkey="z" string="Cancel"/> |
|||
</footer> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<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_user_view_form"/> |
|||
</record> |
|||
</odoo> |