@ -0,0 +1,41 @@ |
|||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg |
|||
:target: https://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
Sale Consignment |
|||
================ |
|||
This module helps you to Sale products as Consignment Order |
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed. |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (AGPL v3). |
|||
(https://www.gnu.org/licenses/agpl-3.0-standalone.html) |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
Developer: (V17) Vishnu Kp, Contact : odoo@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,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from . import models |
@ -0,0 +1,47 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
{ |
|||
'name': "Sale Consignment", |
|||
'version': "17.0.1.0.0", |
|||
'category': 'Sales', |
|||
'summary': """Consignment Sale Order""", |
|||
'description': """Sale Order with consignment option""", |
|||
'author': "Cybrosys Techno Solutions", |
|||
'company': "Cybrosys Techno Solutions", |
|||
'maintainer': "Cybrosys Techno Solutions", |
|||
'website': "https://www.cybrosys.com", |
|||
'depends': ['base','sale_management', 'stock', 'mail'], |
|||
'data': ['security/ir.model.access.csv', |
|||
'security/sale_consignment_groups.xml', |
|||
'data/sequence.xml', |
|||
'data/consignment_expiry_mail.xml', |
|||
'views/sale_consignment_views.xml', |
|||
'views/sale_consignment_line_views.xml', |
|||
'views/res_config_settings_views.xml', |
|||
'views/res_partner_views.xml', |
|||
'views/product_product_views.xml', |
|||
'views/sale_order_views.xml'], |
|||
'images': ['static/description/banner.jpg'], |
|||
'license': "AGPL-3", |
|||
'installable': True, |
|||
'application': False |
|||
} |
@ -0,0 +1,32 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<template id="sale_consignment_expiry"> |
|||
<p>Hi <t t-out="expiry.user_id.name"/>, |
|||
</p> |
|||
<p> |
|||
We hope this message finds you well. |
|||
We would like to kindly remind you that the consignment date for |
|||
Sale order |
|||
<t t-if="expiry.name"> |
|||
<t t-out="expiry.name"> </t> |
|||
</t> |
|||
has ended today. |
|||
If you have not yet created the sale order for this consignment, |
|||
please do so at your earliest convenience. |
|||
If you have already taken care of this, please disregard this email. |
|||
Thank you for your attention to this matter. |
|||
|
|||
Best regards, |
|||
</p> |
|||
<p t-if="expiry.company_id.name"> |
|||
<t t-out="expiry.company_id.name"/> |
|||
</p> |
|||
<p t-if="expiry.user_id"> |
|||
<br/> |
|||
<a t-att-href="'/web#id=%s&model=sale.consignment&view_type=form' % (expiry.id)" |
|||
style="background-color: #9E588B; margin-top: 10px; padding: 10px; text-decoration: none; color: #fff; border-radius: 5px; font-size: 16px;"> |
|||
View Consignment |
|||
</a> |
|||
</p> |
|||
</template> |
|||
</odoo> |
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<record id="seq_consignment_sale" model="ir.sequence"> |
|||
<field name="name">Sale Consignment</field> |
|||
<field name="code">sale.consignment</field> |
|||
<field name="prefix">SC</field> |
|||
<field name="padding">5</field> |
|||
<field name="company_id" eval="False"/> |
|||
</record> |
|||
</data> |
|||
|
|||
<record id="automated_mail_job" model="ir.cron"> |
|||
<field name="name">Reminder: Sale Consignment Expiry date</field> |
|||
<field name="model_id" ref="model_sale_consignment"/> |
|||
<field name="state">code</field> |
|||
<field name="code">model.mail_update_to_salesman()</field> |
|||
<field name='interval_number'>1</field> |
|||
<field name='interval_type'>days</field> |
|||
<field name="numbercall">-1</field> |
|||
<field name="priority">3</field> |
|||
</record> |
|||
|
|||
</odoo> |
@ -0,0 +1,5 @@ |
|||
## Module <sale_consignment> |
|||
#### 08.03.2024 |
|||
#### Version 17.0.1.0.0 |
|||
##### ADD |
|||
- Initial Commit for Sale Consignment |
@ -0,0 +1,28 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from . import product_product |
|||
from . import res_config_settings |
|||
from . import sale_consignment |
|||
from . import sale_consignment_line |
|||
from . import sale_order |
|||
from . import stock_picking |
|||
from . import res_partner |
@ -0,0 +1,31 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from odoo import models, fields |
|||
|
|||
|
|||
class ProductProduct(models.Model): |
|||
_inherit = 'product.product' |
|||
"""Class inherited to add the custom fields to the model""" |
|||
|
|||
is_consignment = fields.Boolean( |
|||
string='Is Consignment', help="Enable it will consider as a " |
|||
"Consignment product") |
@ -0,0 +1,53 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL 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' |
|||
"""This transient model is used to add the custom fields to the |
|||
settings page""" |
|||
|
|||
location_dest_id = fields.Many2one( |
|||
'stock.location', 'Destination Location', |
|||
help="Location where you want to send the components resulting " |
|||
"from the un-build order.", |
|||
required=True, |
|||
config_parameter='sale_consignment.location_dest_id', |
|||
readonly=False) |
|||
group_consignment_order = fields.Boolean(string='Consignment', |
|||
readonly=False, |
|||
default=True, |
|||
config_parameter='sale_consignment.group_consignment_order', |
|||
implied_group='sale_consignment.group_consignment_order') |
|||
consignment_product_only = fields.Boolean(help='Enable Product ' |
|||
'Filtered in ' |
|||
'consignment by ' |
|||
'Consignment Prodduct', |
|||
string='Consignment Product', |
|||
config_parameter='sale_consignment.consignment_product_only', ) |
|||
consignment_customer_only = fields.Boolean(help='Enable Customer ' |
|||
'Filtered in ' |
|||
'consignment by ' |
|||
'Consignment Customer', |
|||
string='Consignment Customer', |
|||
config_parameter='sale_consignment.consignment_customer_only', ) |
@ -0,0 +1,31 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL 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' |
|||
"""Class is used to add the custom fields """ |
|||
|
|||
is_consignment = fields.Boolean(string="Consignment Customer", |
|||
help='Enable customer as consignment type' |
|||
'category') |
@ -0,0 +1,243 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from odoo import api, fields, models, _, Command |
|||
from odoo.exceptions import UserError |
|||
from datetime import date |
|||
|
|||
|
|||
class SaleConsignment(models.Model): |
|||
_name = "sale.consignment" |
|||
_description = "Sale Consignment" |
|||
_inherit = ['mail.activity.mixin', 'mail.thread'] |
|||
|
|||
"""This is the main model for the sale consignment feature""" |
|||
|
|||
@api.model |
|||
def _settings_domain(self): |
|||
"""This function return the customer domain fields |
|||
value from the settings page""" |
|||
customer_domain = self.env['ir.config_parameter'].get_param( |
|||
'sale_consignment.consignment_product_only') |
|||
return customer_domain |
|||
|
|||
@api.model |
|||
def _default_destination(self): |
|||
"""This function return the destination location fields |
|||
value from the settings page""" |
|||
location_dest_id = self.env['ir.config_parameter'].get_param( |
|||
'sale_consignment.location_dest_id') |
|||
return int(location_dest_id) |
|||
|
|||
name = fields.Char(string='Name', help="Sequence of the consignment Sale", |
|||
default='New') |
|||
company_id = fields.Many2one('res.company', |
|||
string='Company', help='default company', |
|||
default=lambda self: self.env.user.company_id) |
|||
partner_id = fields.Many2one('res.partner', string='Customer', |
|||
help="Partner Name", required=True) |
|||
end_date = fields.Date(string='Expiry Date', |
|||
help="Expiry date of the sale consignment", |
|||
required=True) |
|||
date = fields.Date(string='Date', default=date.today(), |
|||
help="Date of the sale consignment", required=True) |
|||
price_list_id = fields.Many2one('product.pricelist', string='Price List', |
|||
help="Product price list based on the " |
|||
"customer", |
|||
compute='_compute_partner_id') |
|||
state = fields.Selection( |
|||
selection=[('draft', 'Draft'), ('confirm', 'Confirm')], |
|||
help="State of the sale consignment", |
|||
default="draft") |
|||
user_id = fields.Many2one("res.users", string='Sales Person', |
|||
help="Responsible sales person for the sale " |
|||
"consignment", |
|||
default=lambda self: self.env.user, |
|||
required=True) |
|||
consignment_line_ids = fields.One2many('sale.consignment.line', |
|||
'consignment_id', |
|||
string='Order Line') |
|||
location_id = fields.Many2one( |
|||
'stock.location', 'Source Location', |
|||
help="Location where the product you want to pickup from.", |
|||
domain="[('usage','=','internal')]", |
|||
required=True) |
|||
sale_count = fields.Integer(string='Sale Order', |
|||
help="Number of sale order related to " |
|||
"the consignment", |
|||
compute='_compute_sale_count') |
|||
picking_count = fields.Integer(string='Picking Order', |
|||
help="Number of picking order " |
|||
"related to the consignment", |
|||
compute='_compute_picking_count') |
|||
sale_order_id = fields.Many2one('sale.order', help='Related sale order', |
|||
string='Sale Order') |
|||
ware_house_id = fields.Many2one('stock.warehouse', |
|||
string='Warehouse', |
|||
related='location_id.warehouse_id', |
|||
help='Choose the Warehouse') |
|||
condition_check = fields.Char(string='Condition', |
|||
compute='_compute_condition_check', |
|||
help="To check whether the consignment " |
|||
"is enable or not") |
|||
customer_domain = fields.Boolean( |
|||
default=lambda self: self._settings_domain(), |
|||
help='Customer domain', |
|||
string='Customer domain') |
|||
location_dest_id = fields.Many2one( |
|||
'stock.location', 'Destination Location', |
|||
required=True, |
|||
default=lambda self: self._default_destination(), |
|||
help="Location where you want to send the product.") |
|||
|
|||
@api.depends('customer_domain') |
|||
def _compute_condition_check(self): |
|||
"""Used to apply the condition into condition_check field if |
|||
customer_domain is true """ |
|||
for record in self: |
|||
record.condition_check = [ |
|||
('is_consignment', '=', True)] if record.customer_domain else [] |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
"""Used to add the sequence""" |
|||
if vals.get('name', _('New')) == _('New'): |
|||
vals['name'] = self.env['ir.sequence'].next_by_code( |
|||
'sale.consignment') or _('New') |
|||
res = super(SaleConsignment, self).create(vals) |
|||
return res |
|||
|
|||
@api.depends('consignment_line_ids') |
|||
def _compute_sale_count(self): |
|||
"""Used to calculate the number of sales count""" |
|||
for rec in self: |
|||
rec.sale_count = self.env['sale.order'].search_count([ |
|||
('consignment_id', '=', rec.id)]) |
|||
|
|||
@api.depends('consignment_line_ids') |
|||
def _compute_picking_count(self): |
|||
"""Used to calculate the number of picking count""" |
|||
for rec in self: |
|||
rec.picking_count = self.env['stock.picking'].search_count([ |
|||
('consignment_id', '=', rec.id)]) |
|||
|
|||
@api.depends('partner_id') |
|||
def _compute_partner_id(self): |
|||
"""Used to find the price-list based on the partner""" |
|||
self.price_list_id = self.partner_id.property_product_pricelist.id |
|||
|
|||
def action_order_confirm(self): |
|||
"""Used to confirm the consignment order""" |
|||
picking_type = self.env['stock.picking.type'].search( |
|||
[('code', '=', 'internal'), |
|||
('warehouse_id', '=', self.ware_house_id.id), |
|||
('company_id', '=', self.env.company.id), |
|||
('default_location_src_id.usage', '=', 'internal'), |
|||
('default_location_dest_id.usage', '=', 'transit'), |
|||
], limit=1) |
|||
if not picking_type: |
|||
raise UserError(_( |
|||
"There is no available Operation type like destination " |
|||
"to transit location Please create and try again")) |
|||
else: |
|||
self.env['stock.picking'].create({ |
|||
'location_id': self.location_id.id, |
|||
'location_dest_id': self.location_dest_id.id, |
|||
'partner_id': self.partner_id.id, |
|||
'picking_type_id': picking_type.id, |
|||
'consignment_id': self.id, |
|||
'move_ids': [ |
|||
Command.create({ |
|||
'name': self.name, |
|||
'product_id': line.product_id.id, |
|||
'quantity': line.demand_quantity, |
|||
'picked': True, |
|||
'location_id': self.location_id.id, |
|||
'location_dest_id': self.location_dest_id.id, |
|||
}) for line in self.consignment_line_ids] |
|||
}).action_confirm() |
|||
|
|||
self.write({'state': 'confirm'}) |
|||
|
|||
def create_sale_order(self): |
|||
"""Used to create the related sale order for the consignment""" |
|||
self.sale_order_id = self.env['sale.order'].create({ |
|||
'partner_id': self.partner_id.id, |
|||
'consignment_id': self.id, |
|||
'user_id': self.user_id.id, |
|||
'order_line': [ |
|||
Command.create({ |
|||
'product_id': line.product_id.id, |
|||
'product_uom': line.product_id.uom_id.id, |
|||
'product_uom_qty': 1.0, |
|||
}) for line in self.consignment_line_ids] |
|||
}).id |
|||
return { |
|||
'name': 'Sale Order', |
|||
'view_mode': 'form', |
|||
'res_id': self.sale_order_id.id, |
|||
'res_model': 'sale.order', |
|||
'type': 'ir.actions.act_window', |
|||
'target': 'current' |
|||
} |
|||
|
|||
def action_view_order(self): |
|||
"""Used to view the sale order of the consignment order""" |
|||
return { |
|||
'name': 'Sale Order', |
|||
'view_mode': 'tree,form', |
|||
'domain': [('consignment_id', 'in', [rec.id for rec in self])], |
|||
'context': {'create': False}, |
|||
'res_model': 'sale.order', |
|||
'type': 'ir.actions.act_window', |
|||
'target': 'current' |
|||
} |
|||
|
|||
def action_view_pickings(self): |
|||
"""Used to view the picking of the consignment order""" |
|||
return { |
|||
'name': 'Picking Order', |
|||
'view_mode': 'tree,form', |
|||
'domain': [('consignment_id', 'in', [rec.id for rec in self])], |
|||
'context': {'create': False}, |
|||
'res_model': 'stock.picking', |
|||
'type': 'ir.actions.act_window', |
|||
'target': 'current' |
|||
} |
|||
|
|||
def mail_update_to_salesman(self): |
|||
"""this function is used to send a mail notification to salesman""" |
|||
orders = self.env['sale.consignment'].search( |
|||
[('end_date', '=', date.today())]) |
|||
for rec in orders: |
|||
mail_template_id = 'sale_consignment.sale_consignment_expiry' |
|||
rendered_body = self.env['ir.qweb']._render(mail_template_id, |
|||
{'expiry': rec}) |
|||
body = self.env['mail.render.mixin']._replace_local_links( |
|||
rendered_body) |
|||
self.env['mail.mail'].sudo().create({ |
|||
'author_id': self.env.user.partner_id.id, |
|||
'auto_delete': True, |
|||
'body_html': body, |
|||
'email_from': self.env.user.partner_id.email, |
|||
'email_to': rec.user_id.partner_id.email, |
|||
'subject': 'Reminder: Sale Consignment Date Expired', |
|||
}).send() |
@ -0,0 +1,69 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from odoo import api, fields, models |
|||
|
|||
|
|||
class SaleConsignmentLine(models.Model): |
|||
"""This class is used to manage the sale consignment line""" |
|||
_name = "sale.consignment.line" |
|||
_description = "Sale Consignment Line" |
|||
|
|||
@api.model |
|||
def _settings_domain(self): |
|||
"""This function is used to get the settings domain""" |
|||
product_domain = self.env[ |
|||
'ir.config_parameter'].get_param( |
|||
'sale_consignment.consignment_product_only') |
|||
return product_domain |
|||
|
|||
product_id = fields.Many2one('product.product', string='Products', |
|||
help="Product in the consignment order line", |
|||
required=True) |
|||
demand_quantity = fields.Integer(string='Demand Quantity', |
|||
help="Demanded quantity of the product", |
|||
required=True) |
|||
done_quantity = fields.Integer(string='Done Quantity', |
|||
help="Done quantity of the product") |
|||
remaining_quantity = fields.Integer(string='Remaining Quantity', |
|||
help="Quantity of remaining product", |
|||
compute='_compute_remaining_quantity') |
|||
price = fields.Float(string='Price', help="Price of the product") |
|||
consignment_id = fields.Many2one('sale.consignment', |
|||
string='Consignment ID', |
|||
help="consignment ID for connect the" |
|||
"consignment") |
|||
condition_check_line = fields.Char(compute='_compute_condition_check') |
|||
product_domain = fields.Boolean( |
|||
default=lambda self: self._settings_domain()) |
|||
|
|||
@api.depends('product_domain') |
|||
def _compute_condition_check(self): |
|||
"""Used to apply the condition into condition_check_line field if |
|||
is_consignment is true """ |
|||
for record in self: |
|||
record.condition_check_line = [('is_consignment', '=', True)] if record.product_domain else [] |
|||
|
|||
def _compute_remaining_quantity(self): |
|||
"""This function is used to compute the remaining quantity of the |
|||
consignment order""" |
|||
for rec in self: |
|||
rec.remaining_quantity = rec.demand_quantity - rec.done_quantity |
@ -0,0 +1,30 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from odoo import models, fields |
|||
|
|||
|
|||
class SaleOrder(models.Model): |
|||
_inherit = 'sale.order' |
|||
"""This class inherited to add the custom fields""" |
|||
|
|||
consignment_id = fields.Many2one('sale.consignment', |
|||
string='Source Document') |
@ -0,0 +1,45 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
|
|||
################################################################################ |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class StockPicking(models.Model): |
|||
_inherit = 'stock.picking' |
|||
"""The class is inherited to add custom fields and also |
|||
super the validate button""" |
|||
consignment_id = fields.Many2one('sale.consignment', |
|||
string="Consignment ID", |
|||
help='Related Consignment Id') |
|||
|
|||
def button_validate(self): |
|||
"""This method is used to calculate the number of done quantity |
|||
related to the consignment order""" |
|||
res = super().button_validate() |
|||
consignment_id = self.sale_id.consignment_id |
|||
sale_order = self.env['sale.order'].search([ |
|||
('consignment_id', '=', consignment_id.id)]) |
|||
for record in consignment_id.consignment_line_ids: |
|||
quantity = sum( |
|||
rec.product_uom_qty for order in sale_order for rec in |
|||
order.order_line if rec.product_id.id == record.product_id.id) |
|||
record.done_quantity = quantity |
|||
return res |
|
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- Group is used to manage the menu--> |
|||
<record id="group_consignment_order" model="res.groups"> |
|||
<field name="name">Manage Consignment order</field> |
|||
<field name="category_id" ref="base.module_category_hidden"/> |
|||
</record> |
|||
</odoo> |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1,668 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>Odoo App 3 Index</title> |
|||
<!-- Bootstrap CSS --> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
|||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
|||
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> |
|||
</head> |
|||
<body> |
|||
<section> |
|||
<div class="container" style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" |
|||
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> |
|||
<div class="my-3"> |
|||
<img src="assets/misc/Cybrosys R.png" style="width:auto !important; height:40px !important"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div class="text-center" |
|||
style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
|||
Community |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" |
|||
style="margin: 80px 0px !important;"> |
|||
<h1 style="font-size: 2.8rem;font-weight: 700; color: |
|||
#1A202C;"> |
|||
Sale Consignment</h1> |
|||
<p class="my-3 mb-4" |
|||
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
|||
Customer Can Sell Product as a Consignment Order. |
|||
</p> |
|||
<div style="width: 80%; margin-top: 3rem;"> |
|||
<img src="assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- screenshot section--> |
|||
<div class="container mt-5 mb-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#714b67 !important">Key Highlights |
|||
</p> |
|||
</div> |
|||
<div class="row py-4"> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Sell Products as Consignment</p> |
|||
<p class="m-0" style="color:#718096">User can Sell Products as Consignment Method. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Picking and Sales direct access</p> |
|||
<p class="m-0" style="color:#718096">Direct Pickings and Sales Records access from Consignment order. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Move History</p> |
|||
<p class="m-0" style="color:#718096">User can View the Move history |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Multi Sale Order for one Consignment</p> |
|||
<p class="m-0" style="color:#718096">User can Create more than one sale order for a Consignment order |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Mail Notification</p> |
|||
<p class="m-0" style="color:#718096">After the consignment expires, the salesperson will receive a mail notification. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container rounded" > |
|||
<ul class="nav nav-tabs d-flex" style="width: fit-content;margin: 0 auto;gap: 1rem;"> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
class="active show" data-toggle="tab" href="#tab1" |
|||
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> |
|||
<i class="fa-regular fa-image pr-2" style="color: #fff;"></i> |
|||
Screenshots</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
data-toggle="tab" href="#tab2" |
|||
style="color: #fff;font-weight: 500; text-decoration: none;"><i |
|||
class="fa-solid fa-star pr-2" style="color: #fff;"></i>Features</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
data-toggle="tab" href="#tab3" |
|||
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i |
|||
class="fa-solid fa-book-open pr-2" style="color: #fff;"></i>Released Notes</a></li> |
|||
</ul> |
|||
<!-- Screenshot--> |
|||
<div class="tab-content" style="background-color: rgba(121, 113, 119, 0.04);"> |
|||
<div id="tab1" class="tab-pane fade in active show"> |
|||
|
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/settings.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Configuration Settings</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> |
|||
Enable the Feature from here.</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/ot.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Create Operation Type</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Create an Operation type as a internal transfer specify the destination location as a transit location |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/ss1.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Consignment Order</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">User can create Sale Consignment order from here. |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/sale_order.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Sale Order</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Once a Sale consignment is confirmed then user can create Sale Order related to the consignment. |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/pickings.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Picking Page</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Followed by the sale order user can created pickings. |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/pickings.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Other Info</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Other info page |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/mail_notification.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Mail Notification</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Mail Notification After the Consignment Expiry. |
|||
</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div id="tab2" class="tab-pane fade"> |
|||
<div class="col-mg-12" style="padding: 1rem 4rem;"> |
|||
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Sell Products as Consignment. |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Picking and Sales Direct Access. |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>User can View the Move History. |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Mail Notification After the Consignment Expiry. |
|||
|
|||
</ul> |
|||
</div> |
|||
</div> |
|||
<div id="tab3" class="tab-pane fade"> |
|||
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> |
|||
<div class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="d-flex mb-3" style="font-size: 0.8rem; font-weight: 500;"><span>Version |
|||
17.0.1.0.0</span><span class="px-2">|</span><span |
|||
style="color: #714B67;font-weight: 600;">Released on:08th Mar 2024</span> |
|||
</div> |
|||
<p class="m-0" |
|||
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
|||
Odoo 17 Sales Consignment.</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Related Products</p> |
|||
</div> |
|||
</div> |
|||
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/manufacturing_reports/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/1.png" alt="" width="100%" height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold">Manufacturing Reports</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/mrp_work_order_print/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/2.png" alt="" width="100%" height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold">Print Work Order Details</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/bom_total_cost/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/3.png" alt="" width="100%" height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold">Show Total Cost On BOM</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/simple_mrp_order/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/4.png" alt="" width="100%" height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold">Simple Manufacturing Orders</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/bom_multiple_product/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/5.png" alt="" width="100%" height="auto"> |
|||
|
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold">BOM Multiple Product Selection</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/cw_mrp/" style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/6.png" alt="" width="100%" height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> Catch Weight Management: Manufacturing</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<a class="carousel-control-prev" href="#myCarousel" data-slide="prev" style="width: 35px; color: #000;"> |
|||
<span class="carousel-control-prev-icon"> |
|||
<i class="fa fa-chevron-left" style="font-size: 24px;"></i> |
|||
</span> |
|||
</a> |
|||
<a class="carousel-control-next" href="#myCarousel" data-slide="next" style="width: 35px; color: #000;"> |
|||
<span class="carousel-control-next-icon"> |
|||
<i class="fa fa-chevron-right" style="font-size: 24px;"></i> |
|||
</span> |
|||
</a> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Services</p> |
|||
|
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row py-3"> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/cogs.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Customization</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/wrench.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/lifebuoy.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/user.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Hire Odoo Developer</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
|
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/puzzle.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Integration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/update.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Migration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/consultation.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Consultancy</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/training.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/license.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Licensing Consultancy</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Industries</p> |
|||
|
|||
</div> |
|||
</div> |
|||
<div class="container"> |
|||
<div class="row my-5 py-4"> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100 " |
|||
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/trading-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
|||
<p>Easily procure and sell your products</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/pos-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
|||
<p>Easy configuration and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> |
|||
<img src="assets/icons/education-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Education</p> |
|||
<p>A platform for educational management</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/manufacturing-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Manufacturing</p> |
|||
<p>Plan, track and schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/ecom-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & Website</p> |
|||
<p>Mobile friendly, awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/service-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Service Management</p> |
|||
<p>Keep track of services and invoice</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/restaurant-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Restaurant</p> |
|||
<p>Run your bar or restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/hotel-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Hotel Management</p> |
|||
<p>An all-inclusive hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row" style="background-color: #FFFAFE;"> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
|||
style="border-right: 1px solid #D9D9D9;"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/support (1) 1.svg" alt="" width="60px" style="margin-right: 12px;"> |
|||
<div style="padding: 0px 8px;"> |
|||
<span |
|||
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need |
|||
Help?</span> |
|||
<p class="m-0" style="color:#718096;">Got questions or need help? Get in touch.</p> |
|||
<div style="font-weight: 400;"><span><img src="assets/misc/support-email.svg" alt="" |
|||
width="18px" |
|||
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/whatsapp 1.svg" alt="" width="60px" style="margin-right: 12px;"> |
|||
<div> |
|||
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
|||
<p class="m-0" style="color:#718096;">Say hi to us on WhatsApp!</p> |
|||
<div style="font-weight: 400; font-size: 16px;"><span><img src="assets/misc/phone.svg" |
|||
alt="" width="14px" |
|||
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 |
|||
99456767686</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- Optional JavaScript --> |
|||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
|||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
|||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,17 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- To add custom fields to the product form page--> |
|||
<record id="product_normal_form_view" model="ir.ui.view"> |
|||
<field name="name">product.product.view.form.inherit.sale.consignment |
|||
</field> |
|||
<field name="model">product.product</field> |
|||
<field name="inherit_id" ref="product.product_normal_form_view"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//label[@for='purchase_ok']" |
|||
position="after"> |
|||
<field name="is_consignment"/> |
|||
<label for="is_consignment"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- This view is used to add the fields into the settings page --> |
|||
<record id="res_config_settings_view_form" model="ir.ui.view"> |
|||
<field name="name"> |
|||
res.config.settings.view.form.inherit.sale.consignment |
|||
</field> |
|||
<field name="model">res.config.settings</field> |
|||
<field name="inherit_id" ref="base.res_config_settings_view_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//block[@id='pricing_setting_container']" |
|||
position="after"> |
|||
<block title="Sale Consignment" id="sale_consignment"> |
|||
<setting id="sale_consignment_configuration" |
|||
help="Enable sale consignment"> |
|||
<field name="group_consignment_order"/> |
|||
<div class="content-group"> |
|||
<div class="mt16"> |
|||
<field name="location_dest_id" |
|||
class="o_light_label"/> |
|||
</div> |
|||
</div> |
|||
</setting> |
|||
<setting id="sale_consignment_product_condition" |
|||
help="Enable product filtered in consignment by |
|||
consignment product"> |
|||
<field name="consignment_product_only" |
|||
invisible="group_consignment_order == False"/> |
|||
</setting> |
|||
<setting id="sale_consignment_customer_condition" |
|||
help="Enable customer filter in consignment by |
|||
consignment product"> |
|||
<field name="consignment_customer_only" |
|||
invisible="group_consignment_order == False"/> |
|||
</setting> |
|||
</block> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,17 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- Custom fields to the partner page--> |
|||
<record id="view_partner_form" model="ir.ui.view"> |
|||
<field name="name">res.partner.view.form.inherit.sale.consignment</field> |
|||
<field name="model">res.partner</field> |
|||
<field name="priority">20</field> |
|||
<field name="inherit_id" ref="base.view_partner_form"/> |
|||
<field name="arch" type="xml"> |
|||
<data> |
|||
<xpath expr="//field[@name='category_id']" position="before"> |
|||
<field name="is_consignment"/> |
|||
</xpath> |
|||
</data> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,51 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- Tree view for the sale consignment line--> |
|||
<record model="ir.ui.view" id="sale_consignment_line_view_tree"> |
|||
<field name="name">sale.consignment.line</field> |
|||
<field name="model">sale.consignment.line</field> |
|||
<field name="arch" type="xml"> |
|||
<tree create="false"> |
|||
<field name="product_id"/> |
|||
<field name="consignment_id" string="Consignment"/> |
|||
<field name="demand_quantity"/> |
|||
<field name="done_quantity"/> |
|||
<field name="remaining_quantity"/> |
|||
<field name="price"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!--Form view for the sale consignment line--> |
|||
<record model="ir.ui.view" id="sale_consignment_line_view_form"> |
|||
<field name="name">sale.consignment.line.view.form</field> |
|||
<field name="model">sale.consignment.line</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Consignment line"> |
|||
<group> |
|||
<field name="product_id"/> |
|||
<field name="consignment_id"/> |
|||
<field name="demand_quantity"/> |
|||
<field name="done_quantity"/> |
|||
<field name="remaining_quantity"/> |
|||
<field name="condition_check_line" invisible="1"/> |
|||
<field name="product_domain" invisible="1"/> |
|||
<field name="price"/> |
|||
</group> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!--Action defined for the sale consignment menu--> |
|||
<record id="sale_consignment_line_action" model="ir.actions.act_window"> |
|||
<field name="name">Consignment line</field> |
|||
<field name="res_model">sale.consignment.line</field> |
|||
<field name="view_mode">tree,form</field> |
|||
</record> |
|||
<!--Menu for the sale consignment menu--> |
|||
<menuitem |
|||
name="Consignment moves" |
|||
id="sale_consignment_line_menu" |
|||
parent="sale.sale_menu_root" |
|||
action="sale_consignment_line_action" |
|||
groups="sale_consignment.group_consignment_order" |
|||
sequence="22"/> |
|||
</odoo> |
@ -0,0 +1,124 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- Action definition for the sale consignment menu--> |
|||
<record id="sale_consignment_action" model="ir.actions.act_window"> |
|||
<field name="name">Consignment</field> |
|||
<field name="res_model">sale.consignment</field> |
|||
<field name="view_mode">tree,form</field> |
|||
</record> |
|||
|
|||
<!--Form view for the sale consignment--> |
|||
<record model="ir.ui.view" id="sale_consignment_view_form"> |
|||
<field name="name">sale.consignment.view.form</field> |
|||
<field name="model">sale.consignment</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Consignment"> |
|||
<header> |
|||
<field name="state" widget="statusbar"/> |
|||
<button name="action_order_confirm" string="Confirm" |
|||
type="object" class="btn-primary" |
|||
invisible=" state != 'draft'"/> |
|||
<button name="create_sale_order" string="Create Sale Order" |
|||
type="object" class="btn-primary" |
|||
invisible=" state != 'confirm'"/> |
|||
</header> |
|||
<sheet> |
|||
<div class="oe_button_box" name="button_box"> |
|||
<button name="action_view_order" |
|||
invisible="sale_count == 0" |
|||
string="Sale order" |
|||
type="object" |
|||
class="oe_stat_button" |
|||
icon="fa-pencil-square-o"> |
|||
<field name="sale_count" widget="statinfo" |
|||
invisible="sale_count == 0" |
|||
string=" Sale order"> </field> |
|||
</button> |
|||
<button name="action_view_pickings" |
|||
invisible="picking_count == 0" |
|||
string="Pickings" |
|||
type="object" |
|||
class="oe_stat_button" |
|||
icon="fa-pencil-square-o"> |
|||
<field name="picking_count" widget="statinfo" |
|||
invisible="picking_count == 0" |
|||
string=" Pickings"> </field> |
|||
</button> |
|||
</div> |
|||
<div class="oe_title"> |
|||
<h1> |
|||
<field name="name" readonly="1"/> |
|||
</h1> |
|||
</div> |
|||
<group> |
|||
<group col="4"> |
|||
<field name="partner_id" domain="condition_check"/> |
|||
<field name="user_id"/> |
|||
<field name="company_id"/> |
|||
<field name="location_id"/> |
|||
<field name="customer_domain" invisible="1"/> |
|||
<field name="condition_check" invisible="1"/> |
|||
</group> |
|||
<group col="4"> |
|||
<field name="date"/> |
|||
<field name="price_list_id"/> |
|||
<field name="end_date"/> |
|||
</group> |
|||
</group> |
|||
<notebook> |
|||
<page string="Order line" name="Order line"> |
|||
<field name="consignment_line_ids" readonly="state == 'confirm'"> |
|||
<tree string="Order lines" editable="bottom"> |
|||
<field name="product_id" |
|||
domain="condition_check_line"/> |
|||
<field name="demand_quantity"/> |
|||
<field name="done_quantity"/> |
|||
<field name="remaining_quantity"/> |
|||
<field name="condition_check_line" |
|||
column_invisible="1"/> |
|||
<field name="product_domain" |
|||
column_invisible="1"/> |
|||
<field name="price"/> |
|||
</tree> |
|||
</field> |
|||
</page> |
|||
<page string="Other Info" name="Other Info"> |
|||
<group> |
|||
<field name="location_dest_id"/> |
|||
<field name="ware_house_id"/> |
|||
</group> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" groups="base.group_user" |
|||
options="{'post_refresh': 'recipients'}"/> |
|||
<field name="activity_ids"/> |
|||
<field name="message_ids"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!--Tree view for sale consignment model--> |
|||
<record model="ir.ui.view" id="sale_consignment_view_tree"> |
|||
<field name="name">sale.consignment.view.tree</field> |
|||
<field name="model">sale.consignment</field> |
|||
<field name="arch" type="xml"> |
|||
<tree> |
|||
<field name="name"/> |
|||
<field name="user_id"/> |
|||
<field name="partner_id"/> |
|||
<field name="date"/> |
|||
<field name="end_date"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!--Menu for consignment model--> |
|||
<menuitem |
|||
name="Consignment" |
|||
id="sale_consignment_menu" |
|||
parent="sale.sale_menu_root" |
|||
action="sale_consignment_action" |
|||
groups="sale_consignment.group_consignment_order" |
|||
sequence="20"/> |
|||
</odoo> |
@ -0,0 +1,14 @@ |
|||
<?xml version="1.0"?> |
|||
<odoo> |
|||
<!-- Sale order inherited to add the custom field--> |
|||
<record id="view_order_form" model="ir.ui.view"> |
|||
<field name="name">sale.order.view.form.inherit.sale.consignment</field> |
|||
<field name="model">sale.order</field> |
|||
<field name="inherit_id" ref="sale.view_order_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='sale_order_template_id']" position="after"> |
|||
<field name="consignment_id"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |